From 40f974bfc181fd814e656a75866bbeb36f861f76 Mon Sep 17 00:00:00 2001 From: "Chandni Gandhi (OpenERP)" Date: Wed, 24 Apr 2013 15:41:19 +0530 Subject: [PATCH 01/28] [FIX]:Add noupdate in project data bzr revid: cga@tinyerp.com-20130424101119-pzug9rqt8k7vhc6u --- addons/project/project_data.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/project/project_data.xml b/addons/project/project_data.xml index 7bf1a623a2c..fba310123f1 100644 --- a/addons/project/project_data.xml +++ b/addons/project/project_data.xml @@ -1,6 +1,6 @@ - + From 3f67bae05340a84132a896c5d36b4a6106542a57 Mon Sep 17 00:00:00 2001 From: "Foram Katharotiya (OpenERP)" Date: Thu, 29 Aug 2013 18:58:02 +0530 Subject: [PATCH 02/28] [IMP] when selecting filter 'To Pay', also display the expense which is in Waiting Payment' state bzr revid: fka@tinyerp.com-20130829132802-7opn4slq5fqd9fh1 --- addons/hr_expense/hr_expense_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/hr_expense/hr_expense_view.xml b/addons/hr_expense/hr_expense_view.xml index df48aa9bf7b..0d667849060 100644 --- a/addons/hr_expense/hr_expense_view.xml +++ b/addons/hr_expense/hr_expense_view.xml @@ -158,7 +158,7 @@ - + From 66c51c0a63112b5a6bada8b0ff955fc6b86cadd5 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Mon, 30 Sep 2013 09:28:32 +0200 Subject: [PATCH 03/28] [FIX] Restore the appropriate accounts on tax ACH-19.6 bzr revid: alexis@via.ecp.fr-20130930072832-2r5t9ajaqutmb1tv --- addons/l10n_fr/fr_tax.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/l10n_fr/fr_tax.xml b/addons/l10n_fr/fr_tax.xml index 7cd3a36f54a..c762dbc9e48 100644 --- a/addons/l10n_fr/fr_tax.xml +++ b/addons/l10n_fr/fr_tax.xml @@ -131,8 +131,8 @@ - - + + From a044bdbf8aa9bc14f880b867d209742aedb616de Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 29 Oct 2013 15:19:39 +0100 Subject: [PATCH 04/28] [FIX] mute logger in some tests bzr revid: chs@openerp.com-20131029141939-xt9093hfv8cfjkdo --- openerp/tests/test_acl.py | 5 +++-- openerp/tests/test_mail.py | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/openerp/tests/test_acl.py b/openerp/tests/test_acl.py index e80390cd5a2..44ec677ff6f 100644 --- a/openerp/tests/test_acl.py +++ b/openerp/tests/test_acl.py @@ -95,9 +95,10 @@ class TestACL(common.TransactionCase): part = P.browse(self.cr, self.demo_uid, pid) # accessing fields must no raise exceptions... part.name - # ... except they are restricted + # ... except if they are restricted with self.assertRaises(openerp.osv.orm.except_orm) as cm: - part.email + with mute_logger('openerp.osv.orm'): + part.email self.assertEqual(cm.exception.args[0], 'Access Denied') finally: diff --git a/openerp/tests/test_mail.py b/openerp/tests/test_mail.py index ddb8fc4a195..6450c5ba780 100755 --- a/openerp/tests/test_mail.py +++ b/openerp/tests/test_mail.py @@ -23,7 +23,7 @@ ############################################################################## import unittest2 -from openerp.tools import html_sanitize, html_email_clean, append_content_to_html, plaintext2html +from openerp.tools import html_sanitize, html_email_clean, append_content_to_html, plaintext2html, mute_logger HTML_SOURCE = """ test1 @@ -178,6 +178,7 @@ class TestSanitizer(unittest2.TestCase): html = html_sanitize(content) self.assertEqual(html, expected, 'html_sanitize is broken') + @mute_logger('openerp.tools.mail') def test_evil_malicious_code(self): # taken from https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#Tests cases = [ From c1e6ff9445ad9e1595d93ee60bdd10effa7b161c Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Thu, 31 Oct 2013 19:10:18 +0100 Subject: [PATCH 05/28] [FIX] */report: font names are case sensitive bzr revid: chs@openerp.com-20131031181018-pkbtgd3ix5ke4veg --- addons/account/report/account_balance.rml | 1 + .../report/analytic_account_budget_report.rml | 10 ++++---- .../account_budget/report/budget_report.rml | 10 ++++---- .../report/crossovered_budget_report.rml | 10 ++++---- .../survey/report/survey_analysis_report.py | 21 ++++++++-------- .../survey/report/survey_browse_response.py | 24 +++++++++---------- addons/survey/report/survey_form.py | 14 +++++------ 7 files changed, 46 insertions(+), 44 deletions(-) diff --git a/addons/account/report/account_balance.rml b/addons/account/report/account_balance.rml index 6ddfc238bff..08c05c65fa8 100644 --- a/addons/account/report/account_balance.rml +++ b/addons/account/report/account_balance.rml @@ -170,6 +170,7 @@ + diff --git a/addons/account_budget/report/analytic_account_budget_report.rml b/addons/account_budget/report/analytic_account_budget_report.rml index 837825aa4e3..15fddebd02d 100644 --- a/addons/account_budget/report/analytic_account_budget_report.rml +++ b/addons/account_budget/report/analytic_account_budget_report.rml @@ -182,19 +182,19 @@ - [['.....' *(a['status']-1) ]] [[ (a['status']==1 and (setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ a['name'] ]] + [['.....' *(a['status']-1) ]] [[ (a['status']==1 and (setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ a['name'] ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['theo'], currency_obj=company.currency_id) ]] + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['theo'], currency_obj=company.currency_id) ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['pln'], currency_obj=company.currency_id) ]] + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['pln'], currency_obj=company.currency_id) ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['prac'], currency_obj=company.currency_id) ]] + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['prac'], currency_obj=company.currency_id) ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['perc']) ]]% + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['perc']) ]]% diff --git a/addons/account_budget/report/budget_report.rml b/addons/account_budget/report/budget_report.rml index 8b9835b6615..789c3ed1ffb 100644 --- a/addons/account_budget/report/budget_report.rml +++ b/addons/account_budget/report/budget_report.rml @@ -145,19 +145,19 @@ - [['.....' *(a['status']-1) ]][[ (a['status']==1 and (setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ a['name'] ]] + [['.....' *(a['status']-1) ]][[ (a['status']==1 and (setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ a['name'] ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['theo'], digits=get_digits(dp='Account'), currency_obj=company.currency_id) ]] + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['theo'], digits=get_digits(dp='Account'), currency_obj=company.currency_id) ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['pln'], digits=get_digits(dp='Account'), currency_obj=company.currency_id) ]] + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['pln'], digits=get_digits(dp='Account'), currency_obj=company.currency_id) ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['prac'], digits=get_digits(dp='Account'), currency_obj=company.currency_id) ]] + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['prac'], digits=get_digits(dp='Account'), currency_obj=company.currency_id) ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['perc'], digits=2) ]]% + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['perc'], digits=2) ]]% diff --git a/addons/account_budget/report/crossovered_budget_report.rml b/addons/account_budget/report/crossovered_budget_report.rml index 50b7d267125..a63920a4c9f 100644 --- a/addons/account_budget/report/crossovered_budget_report.rml +++ b/addons/account_budget/report/crossovered_budget_report.rml @@ -160,19 +160,19 @@ - [['.....' *(a['status']-1) ]][[ (a['status']==1 and (setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ a['name'] ]] + [['.....' *(a['status']-1) ]][[ (a['status']==1 and (setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ a['name'] ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['theo'], dp='Account', currency_obj=company.currency_id) ]] + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['theo'], dp='Account', currency_obj=company.currency_id) ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['pln'], dp='Account', currency_obj=company.currency_id) ]] + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['pln'], dp='Account', currency_obj=company.currency_id) ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['prac'], dp='Account', currency_obj=company.currency_id) ]] + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['prac'], dp='Account', currency_obj=company.currency_id) ]] - [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-bold'}))) or removeParentNode('font') ]] [[ formatLang(a['perc'],digits=2) ]]% + [[ (a['status']==1 and ( setTag('para','para',{'fontName':'Helvetica-Bold'}))) or removeParentNode('font') ]] [[ formatLang(a['perc'],digits=2) ]]% diff --git a/addons/survey/report/survey_analysis_report.py b/addons/survey/report/survey_analysis_report.py index b4e7765346c..cc61d65169a 100644 --- a/addons/survey/report/survey_analysis_report.py +++ b/addons/survey/report/survey_analysis_report.py @@ -94,20 +94,21 @@ class survey_analysis(report_rml): - - + + - - - - - - - + + + + + + + + - + diff --git a/addons/survey/report/survey_browse_response.py b/addons/survey/report/survey_browse_response.py index 54abe6e34bb..91e534877e7 100644 --- a/addons/survey/report/survey_browse_response.py +++ b/addons/survey/report/survey_browse_response.py @@ -161,18 +161,18 @@ class survey_browse_response(report_rml): - - - + + + - - - - - - - + + + + + + + @@ -183,8 +183,8 @@ class survey_browse_response(report_rml): - - + + """ diff --git a/addons/survey/report/survey_form.py b/addons/survey/report/survey_form.py index 8375df6acaf..e036e2dfcad 100644 --- a/addons/survey/report/survey_form.py +++ b/addons/survey/report/survey_form.py @@ -132,13 +132,13 @@ class survey_form(report_rml): - - - - - - - + + + + + + + From a8eebfe6b4072692aca8c9aa85636b08a0cd7b9e Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Thu, 31 Oct 2013 19:43:21 +0100 Subject: [PATCH 06/28] [FIX] account,account_followup,l10n_{ch,es,pt,us,ve}: correct or remove wrong fields in creation bzr revid: chs@openerp.com-20131031184321-2nqqpxowhg03wt4t --- addons/account/data/account_data.xml | 1 - .../account_followup_data.xml | 2 +- addons/l10n_ch/sterchi_chart/account.xml | 3 -- addons/l10n_es/taxes_data_assoc.xml | 2 -- addons/l10n_pt/account_chart_template.xml | 1 - addons/l10n_us/account_chart_template.xml | 9 ------ addons/l10n_ve/data/account_tax.xml | 28 +++++++++---------- 7 files changed, 15 insertions(+), 31 deletions(-) diff --git a/addons/account/data/account_data.xml b/addons/account/data/account_data.xml index 9d2e65a3a4c..8119e9f1002 100644 --- a/addons/account/data/account_data.xml +++ b/addons/account/data/account_data.xml @@ -16,7 +16,6 @@ - Immediate Payment balance diff --git a/addons/account_followup/account_followup_data.xml b/addons/account_followup/account_followup_data.xml index ec18e0d2b0c..1a11db5e5f7 100644 --- a/addons/account_followup/account_followup_data.xml +++ b/addons/account_followup/account_followup_data.xml @@ -162,7 +162,7 @@ ${object.get_followup_table_html() | safe} 0 15 - True + True Dear %(partner_name)s, diff --git a/addons/l10n_ch/sterchi_chart/account.xml b/addons/l10n_ch/sterchi_chart/account.xml index f5f5c09bf55..ef2d73d59e2 100644 --- a/addons/l10n_ch/sterchi_chart/account.xml +++ b/addons/l10n_ch/sterchi_chart/account.xml @@ -177,14 +177,12 @@ Bilan : Debiteurs receivable - unreconciled none Bilan : Fournisseurs payable - unreconciled none @@ -11809,7 +11807,6 @@ - diff --git a/addons/l10n_es/taxes_data_assoc.xml b/addons/l10n_es/taxes_data_assoc.xml index e2ebb47fb59..152b27363af 100644 --- a/addons/l10n_es/taxes_data_assoc.xml +++ b/addons/l10n_es/taxes_data_assoc.xml @@ -44,7 +44,6 @@ Base adquisiciones exentas - -- 1.0 @@ -53,7 +52,6 @@ Base ventas exentas -- - 1.0 diff --git a/addons/l10n_pt/account_chart_template.xml b/addons/l10n_pt/account_chart_template.xml index 3b4a63a4a43..a19eda86b29 100644 --- a/addons/l10n_pt/account_chart_template.xml +++ b/addons/l10n_pt/account_chart_template.xml @@ -15,7 +15,6 @@ - Portugal - Template do Plano de Contas SNC diff --git a/addons/l10n_us/account_chart_template.xml b/addons/l10n_us/account_chart_template.xml index 878991c859d..ac2784e33d7 100644 --- a/addons/l10n_us/account_chart_template.xml +++ b/addons/l10n_us/account_chart_template.xml @@ -6,7 +6,6 @@ Basic Chart of Account - Basic Chart of Account @@ -20,7 +19,6 @@ Cost of Goods sold - @@ -34,7 +32,6 @@ Advertising - @@ -48,7 +45,6 @@ Agriculture - @@ -62,7 +58,6 @@ Construction Trades (Plumber, Electrician, HVAC, etc.) - @@ -76,7 +71,6 @@ Financial Services other than Accounting or Bookkeeping - @@ -90,7 +84,6 @@ General Service-Based Business - @@ -104,7 +97,6 @@ Legal Services - @@ -118,7 +110,6 @@ General Product-Based Business - diff --git a/addons/l10n_ve/data/account_tax.xml b/addons/l10n_ve/data/account_tax.xml index 7acbda3e2af..8fb1aa4b819 100644 --- a/addons/l10n_ve/data/account_tax.xml +++ b/addons/l10n_ve/data/account_tax.xml @@ -7,8 +7,8 @@ 0.00000 percent all - - + + @@ -21,8 +21,8 @@ 0.120000 percent sale - - + + @@ -34,8 +34,8 @@ 0.080000 percent sale - - + + @@ -47,8 +47,8 @@ 0.220000 percent sale - - + + @@ -60,8 +60,8 @@ 0.120000 percent purchase - - + + @@ -73,8 +73,8 @@ 0.080000 percent purchase - - + + @@ -86,8 +86,8 @@ 0.220000 percent purchase - - + + From 39e6bc0bba1eceec30c800c9818b321c8cb9e124 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Thu, 31 Oct 2013 19:48:44 +0100 Subject: [PATCH 07/28] [FIX] survey/report: correct style name bzr revid: chs@openerp.com-20131031184844-xjc2ngm0sfqxu6v3 --- addons/survey/report/survey_analysis_report.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/addons/survey/report/survey_analysis_report.py b/addons/survey/report/survey_analysis_report.py index cc61d65169a..1329c1d3198 100644 --- a/addons/survey/report/survey_analysis_report.py +++ b/addons/survey/report/survey_analysis_report.py @@ -99,12 +99,11 @@ class survey_analysis(report_rml): - + - + - @@ -119,7 +118,7 @@ class survey_analysis(report_rml): for survey in surv_obj.browse(cr, uid, ids): rml += """ - Answers Summary + Answers Summary From c59474804b6748ac3ccfd925e921d49bdeb38059 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Thu, 31 Oct 2013 19:56:33 +0100 Subject: [PATCH 08/28] [FIX] sale/edi: do not import non-existing field date_planned bzr revid: chs@openerp.com-20131031185633-qf5eus62nwf3xs0m --- addons/sale/test/edi_sale_order.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/addons/sale/test/edi_sale_order.yml b/addons/sale/test/edi_sale_order.yml index 24fdfdf2786..65b6eb76835 100644 --- a/addons/sale/test/edi_sale_order.yml +++ b/addons/sale/test/edi_sale_order.yml @@ -170,7 +170,6 @@ "__import_module": "sale", "__import_model": "sale.order.line", "name": "Basic PC", - "date_planned": "2011-09-30", "price_unit": 150.0, "product_id": ["product:5af1272e-dd26-11e0-b65e-701a04e25543.product_product_pc1", "[PC1] Basic PC"], "product_qty": 1.0, @@ -183,7 +182,6 @@ "__import_module": "sale", "__import_model": "sale.order.line", "name": "Medium PC", - "date_planned": "2011-09-15", "price_unit": 100.0, "product_id": ["product:5af1272e-dd26-11e0-b65e-701a04e25543.product_product_pc3", "[PC3] Medium PC"], "product_qty": 2.0, @@ -214,4 +212,4 @@ assert sale_line.price_unit == 100 , "unit price is not same, got %s, expected 100"%(sale_line.price_unit,) assert sale_line.product_uom_qty == 2 , "product qty is not same" else: - raise AssertionError('unknown order line: %s' % sale_line) \ No newline at end of file + raise AssertionError('unknown order line: %s' % sale_line) From 864af467e1e11a51de6eb7ae2ed0e3ae5b9f4388 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Thu, 31 Oct 2013 20:32:28 +0100 Subject: [PATCH 09/28] [FIX] module loading: do not warn about missing access rules for AbstractModels bzr revid: chs@openerp.com-20131031193228-agj0qa9ceolpmvy6 --- openerp/modules/loading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openerp/modules/loading.py b/openerp/modules/loading.py index 43e59ed5df1..311e00be35b 100644 --- a/openerp/modules/loading.py +++ b/openerp/modules/loading.py @@ -363,7 +363,7 @@ def load_modules(db, force_demo=False, status=None, update_module=False): cr.execute("""select model,name from ir_model where id NOT IN (select distinct model_id from ir_model_access)""") for (model, name) in cr.fetchall(): model_obj = pool.get(model) - if model_obj and not model_obj.is_transient(): + if model_obj and not model_obj.is_transient() and not isinstance(model_obj, openerp.osv.orm.AbstractModel): _logger.warning('The model %s has no access rules, consider adding one. E.g. access_%s,access_%s,model_%s,,1,1,1,1', model, model.replace('.', '_'), model.replace('.', '_'), model.replace('.', '_')) From f3ff6b4bfb5346abb96b1ee7a2b1497bf83003b6 Mon Sep 17 00:00:00 2001 From: "Mohammed Shekha (OpenERP)" Date: Wed, 6 Nov 2013 12:57:45 +0530 Subject: [PATCH 10/28] [FIX]Fixed the issue of active state does not get highlighted in sale order line, the issue raised due to double state field in the view. bzr revid: msh@openerp.com-20131106072745-5ssemxhquw2343by --- addons/sale/sale_view.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/addons/sale/sale_view.xml b/addons/sale/sale_view.xml index f487b183946..bf96f239cc2 100644 --- a/addons/sale/sale_view.xml +++ b/addons/sale/sale_view.xml @@ -176,7 +176,6 @@ - Date: Thu, 7 Nov 2013 17:05:47 +0530 Subject: [PATCH 11/28] [stock] : Wrong Invoice generated due to product_uos_qty not updated (case ref:600277) bzr revid: dhs@tinyerp.com-20131107113547-d6o11hiu7d8y8g4g --- addons/stock/stock.py | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/stock/stock.py b/addons/stock/stock.py index f3efd8a353e..65c40250320 100644 --- a/addons/stock/stock.py +++ b/addons/stock/stock.py @@ -2204,6 +2204,7 @@ class stock_move(osv.osv): while res: r = res.pop(0) + product_uos_qty = self.pool.get('stock.move').onchange_quantity(cr, uid, ids, move.product_id.id, r[0], move.product_id.uom_id.id, move.product_id.uos_id.id)['value']['product_uos_qty'] move_id = self.copy(cr, uid, move.id, {'product_uos_qty': product_uos_qty, 'product_qty': r[0], 'location_id': r[1]}) done.append(move_id) if done: From aeaed95e81425a4ac00e528c0dfc29fd0e4d865f Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Fri, 8 Nov 2013 22:27:09 +0100 Subject: [PATCH 12/28] [IMP] trml2pdf: like css, invalid style name is not a warning. bzr revid: chs@openerp.com-20131108212709-4dmdbxxh2w1jd51p --- openerp/report/render/rml2pdf/trml2pdf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openerp/report/render/rml2pdf/trml2pdf.py b/openerp/report/render/rml2pdf/trml2pdf.py index 2052b128ad9..5c688022ad8 100644 --- a/openerp/report/render/rml2pdf/trml2pdf.py +++ b/openerp/report/render/rml2pdf/trml2pdf.py @@ -242,7 +242,7 @@ class _rml_styles(object,): if sname in self.styles_obj: style = self.styles_obj[sname] else: - _logger.warning('Warning: style not found, %s - setting default!\n' % (node.get('style'),) ) + _logger.debug('Warning: style not found, %s - setting default!', node.get('style')) if not style: style = self.default_style['Normal'] para_update = self._para_style_update(node) From 46d7eb79e990cf2922460d8aad79864b4cb03703 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Fri, 8 Nov 2013 22:54:08 +0100 Subject: [PATCH 13/28] [FIX] document: even deprecated models need access rules (avoid warning) bzr revid: chs@openerp.com-20131108215408-xodw6lmvvxvw4te7 --- addons/document/security/ir.model.access.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/document/security/ir.model.access.csv b/addons/document/security/ir.model.access.csv index e0513a0640c..8c5e4323831 100644 --- a/addons/document/security/ir.model.access.csv +++ b/addons/document/security/ir.model.access.csv @@ -15,3 +15,4 @@ access_report_document_user_group_document_manager,report.document.user document access_report_document_file_group_document_manager,report.document.file document manager,model_report_document_file,base.group_system,1,0,0,0 access_report_document_file_group_document,report.document.file document manager,model_report_document_file,base.group_document_user,1,0,0,0 access_report_document_user_knowledgeuser,report.document.user knowledgeuser,document.model_report_document_user,base.group_document_user,1,0,0,0 +access_document_storage,access_document_storage,model_document_storage,base.group_system,1,1,1,1 From 871e2db195a762a199bd74cc7c5dd54b00b69991 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Fri, 8 Nov 2013 22:54:51 +0100 Subject: [PATCH 14/28] [FIX] base_action_rule: even test models need access rules (avoid warning) bzr revid: chs@openerp.com-20131108215451-mq18m32ajuuydzjq --- addons/base_action_rule/security/ir.model.access.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/base_action_rule/security/ir.model.access.csv b/addons/base_action_rule/security/ir.model.access.csv index 92d3d55649f..b509ec62944 100644 --- a/addons/base_action_rule/security/ir.model.access.csv +++ b/addons/base_action_rule/security/ir.model.access.csv @@ -1,3 +1,4 @@ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink access_base_action_rule,base.action.rule,model_base_action_rule,,1,0,0,0 access_base_action_rule_config,base.action.rule config,model_base_action_rule,base.group_system,1,1,1,1 +access_base_action_rule_lead_test,access_base_action_rule_lead_test,model_base_action_rule_lead_test,base.group_system,1,1,1,1 From d623c091f3b4a6ae436154abf4fb6ac709879dd0 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Fri, 8 Nov 2013 23:15:35 +0100 Subject: [PATCH 15/28] [IMP] stock: do not use assert in (python) tests bzr revid: chs@openerp.com-20131108221535-c0lowzwd15d7asd3 --- addons/stock/tests/test_multicompany.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/stock/tests/test_multicompany.py b/addons/stock/tests/test_multicompany.py index fb840a846ea..f0175791b50 100644 --- a/addons/stock/tests/test_multicompany.py +++ b/addons/stock/tests/test_multicompany.py @@ -56,7 +56,7 @@ class TestStockMulticompany(common.TransactionCase): try: self.stock_location.check_access_rule(cr, uid, [defaults[field]], 'read', context) except Exception, exc: - assert False, "unreadable location %s: %s" % (field, exc) + self.fail("unreadable location %s: %s" % (field, exc)) self.assertEqual(defaults['type'], type, "wrong move type") @@ -71,7 +71,7 @@ class TestStockMulticompany(common.TransactionCase): try: self.stock_location.check_access_rule(cr, uid, [result[field]], 'read', context) except Exception, exc: - assert False, "unreadable location %s: %s" % (field, exc) + self.fail("unreadable location %s: %s" % (field, exc)) def test_20_multicompany_default_stock_fill_inventory(self): @@ -82,7 +82,7 @@ class TestStockMulticompany(common.TransactionCase): try: self.stock_location.check_access_rule(cr, uid, [defaults['location_id']], 'read', context) except Exception, exc: - assert False, "unreadable source location: %s" % exc + self.fail("unreadable source location: %s" % exc) def test_30_multicompany_default_warehouse_location(self): @@ -95,4 +95,4 @@ class TestStockMulticompany(common.TransactionCase): try: self.stock_location.check_access_rule(cr, uid, [defaults[field]], 'read', context) except Exception, exc: - assert False, "unreadable default %s: %s" % (field, exc) + self.fail("unreadable default %s: %s" % (field, exc)) From 4166baa1ba94978f60710d62ee2974b8e487106e Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Fri, 8 Nov 2013 23:47:24 +0100 Subject: [PATCH 16/28] [FIX] stock: mute orm logger before checking access rules bzr revid: chs@openerp.com-20131108224724-3u72ec3molct34he --- addons/stock/stock.py | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/addons/stock/stock.py b/addons/stock/stock.py index f3efd8a353e..6cb9bb7672f 100644 --- a/addons/stock/stock.py +++ b/addons/stock/stock.py @@ -1722,7 +1722,8 @@ class stock_move(osv.osv): if location_xml_id: try: location_model, location_id = mod_obj.get_object_reference(cr, uid, 'stock', location_xml_id) - self.pool.get('stock.location').check_access_rule(cr, uid, [location_id], 'read', context=context) + with tools.mute_logger('openerp.osv.orm'): + self.pool.get('stock.location').check_access_rule(cr, uid, [location_id], 'read', context=context) except (orm.except_orm, ValueError): location_id = False @@ -1756,7 +1757,8 @@ class stock_move(osv.osv): if location_xml_id: try: location_model, location_id = mod_obj.get_object_reference(cr, uid, 'stock', location_xml_id) - self.pool.get('stock.location').check_access_rule(cr, uid, [location_id], 'read', context=context) + with tools.mute_logger('openerp.osv.orm'): + self.pool.get('stock.location').check_access_rule(cr, uid, [location_id], 'read', context=context) except (orm.except_orm, ValueError): location_id = False @@ -1980,12 +1982,14 @@ class stock_move(osv.osv): location_dest_id = 'stock_location_customers' try: source_location = mod_obj.get_object_reference(cr, uid, 'stock', location_source_id) - self.pool.get('stock.location').check_access_rule(cr, uid, [source_location[1]], 'read', context=context) + with tools.mute_logger('openerp.osv.orm'): + self.pool.get('stock.location').check_access_rule(cr, uid, [source_location[1]], 'read', context=context) except (orm.except_orm, ValueError): source_location = False try: dest_location = mod_obj.get_object_reference(cr, uid, 'stock', location_dest_id) - self.pool.get('stock.location').check_access_rule(cr, uid, [dest_location[1]], 'read', context=context) + with tools.mute_logger('openerp.osv.orm'): + self.pool.get('stock.location').check_access_rule(cr, uid, [dest_location[1]], 'read', context=context) except (orm.except_orm, ValueError): dest_location = False return {'value':{'location_id': source_location and source_location[1] or False, 'location_dest_id': dest_location and dest_location[1] or False}} @@ -2931,7 +2935,8 @@ class stock_inventory_line(osv.osv): def _default_stock_location(self, cr, uid, context=None): try: location_model, location_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'stock', 'stock_location_stock') - self.pool.get('stock.location').check_access_rule(cr, uid, [location_id], 'read', context=context) + with tools.mute_logger('openerp.osv.orm'): + self.pool.get('stock.location').check_access_rule(cr, uid, [location_id], 'read', context=context) except (orm.except_orm, ValueError): location_id = False return location_id @@ -2975,7 +2980,8 @@ class stock_warehouse(osv.osv): def _default_lot_input_stock_id(self, cr, uid, context=None): try: lot_input_stock_model, lot_input_stock_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'stock', 'stock_location_stock') - self.pool.get('stock.location').check_access_rule(cr, uid, [lot_input_stock_id], 'read', context=context) + with tools.mute_logger('openerp.osv.orm'): + self.pool.get('stock.location').check_access_rule(cr, uid, [lot_input_stock_id], 'read', context=context) except (ValueError, orm.except_orm): # the user does not have read access on the location or it does not exists lot_input_stock_id = False @@ -2984,7 +2990,8 @@ class stock_warehouse(osv.osv): def _default_lot_output_id(self, cr, uid, context=None): try: lot_output_model, lot_output_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'stock', 'stock_location_output') - self.pool.get('stock.location').check_access_rule(cr, uid, [lot_output_id], 'read', context=context) + with tools.mute_logger('openerp.osv.orm'): + self.pool.get('stock.location').check_access_rule(cr, uid, [lot_output_id], 'read', context=context) except (ValueError, orm.except_orm): # the user does not have read access on the location or it does not exists lot_output_id = False From 1df6461c4addcbe4d7a4ee83337abad1f8417118 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Fri, 8 Nov 2013 23:58:20 +0100 Subject: [PATCH 17/28] [FIX] base: test_translation: load an existing translation bzr revid: chs@openerp.com-20131108225820-i2pea15b7lymyw6t --- openerp/addons/base/tests/test_base.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/openerp/addons/base/tests/test_base.py b/openerp/addons/base/tests/test_base.py index 3a0131c2a05..a7df2a5bb27 100644 --- a/openerp/addons/base/tests/test_base.py +++ b/openerp/addons/base/tests/test_base.py @@ -311,10 +311,10 @@ class test_translation(common.TransactionCase): self.res_category = self.registry('res.partner.category') self.ir_translation = self.registry('ir.translation') cr, uid = self.cr, self.uid - self.registry('ir.translation').load(cr, ['base'], ['fr_BE']) + self.registry('ir.translation').load(cr, ['base'], ['fr_FR']) self.cat_id = self.res_category.create(cr, uid, {'name': 'Customers'}) self.ir_translation.create(cr, uid, {'name': 'res.partner.category,name', 'module':'base', - 'value': 'Clients', 'res_id': self.cat_id, 'lang':'fr_BE', 'state':'translated', 'type': 'model'}) + 'value': 'Clients', 'res_id': self.cat_id, 'lang':'fr_FR', 'state':'translated', 'type': 'model'}) def test_101_create_translated_record(self): cr, uid = self.cr, self.uid @@ -322,27 +322,27 @@ class test_translation(common.TransactionCase): no_context_cat = self.res_category.browse(cr, uid, self.cat_id) self.assertEqual(no_context_cat.name, 'Customers', "Error in basic name_get") - fr_context_cat = self.res_category.browse(cr, uid, self.cat_id, context={'lang':'fr_BE'}) + fr_context_cat = self.res_category.browse(cr, uid, self.cat_id, context={'lang':'fr_FR'}) self.assertEqual(fr_context_cat.name, 'Clients', "Translation not found") def test_102_duplicate_record(self): cr, uid = self.cr, self.uid - self.new_cat_id = self.res_category.copy(cr, uid, self.cat_id, context={'lang':'fr_BE'}) + self.new_cat_id = self.res_category.copy(cr, uid, self.cat_id, context={'lang':'fr_FR'}) no_context_cat = self.res_category.browse(cr, uid, self.new_cat_id) self.assertEqual(no_context_cat.name, 'Customers', "Duplication did not set untranslated value") - fr_context_cat = self.res_category.browse(cr, uid, self.new_cat_id, context={'lang':'fr_BE'}) + fr_context_cat = self.res_category.browse(cr, uid, self.new_cat_id, context={'lang':'fr_FR'}) self.assertEqual(fr_context_cat.name, 'Clients', "Did not found translation for initial value") def test_103_duplicate_record_fr(self): cr, uid = self.cr, self.uid - self.new_fr_cat_id = self.res_category.copy(cr, uid, self.cat_id, default={'name': 'Clients (copie)'}, context={'lang':'fr_BE'}) + self.new_fr_cat_id = self.res_category.copy(cr, uid, self.cat_id, default={'name': 'Clients (copie)'}, context={'lang':'fr_FR'}) no_context_cat = self.res_category.browse(cr, uid, self.new_fr_cat_id) self.assertEqual(no_context_cat.name, 'Clients (copie)', "Duplication with default value not applied") - fr_context_cat = self.res_category.browse(cr, uid, self.new_fr_cat_id, context={'lang':'fr_BE'}) + fr_context_cat = self.res_category.browse(cr, uid, self.new_fr_cat_id, context={'lang':'fr_FR'}) self.assertEqual(fr_context_cat.name, 'Clients', "Did not found translation for initial value") From 9a1c54d2424bb5a185ead521e4224eef3d8e64a0 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Sat, 9 Nov 2013 00:02:24 +0100 Subject: [PATCH 18/28] [FIX] stock: mute orm logger before checking access rules bzr revid: chs@openerp.com-20131108230224-tqj0tg5xgz8ramwd --- addons/stock/wizard/stock_fill_inventory.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/stock/wizard/stock_fill_inventory.py b/addons/stock/wizard/stock_fill_inventory.py index 07dcb3965d7..7f55adbab4c 100644 --- a/addons/stock/wizard/stock_fill_inventory.py +++ b/addons/stock/wizard/stock_fill_inventory.py @@ -21,6 +21,7 @@ from openerp.osv import fields, osv, orm from openerp.tools.translate import _ +from openerp.tools import mute_logger class stock_fill_inventory(osv.osv_memory): _name = "stock.fill.inventory" @@ -29,7 +30,8 @@ class stock_fill_inventory(osv.osv_memory): def _default_location(self, cr, uid, ids, context=None): try: location = self.pool.get('ir.model.data').get_object(cr, uid, 'stock', 'stock_location_stock') - location.check_access_rule('read', context=context) + with mute_logger('openerp.osv.orm'): + location.check_access_rule('read', context=context) location_id = location.id except (ValueError, orm.except_orm), e: return False From 824eddeb85c1c307e7c8fe6d8c93caf686bd5908 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Sat, 9 Nov 2013 00:11:30 +0100 Subject: [PATCH 19/28] [FIX] l10n_mx: account.chart.template does not have any property_stock_account_{in,out}put_categ fields bzr revid: chs@openerp.com-20131108231130-k7s49xfac9h67kbe --- addons/l10n_mx/data/account_chart.xml | 2 -- 1 file changed, 2 deletions(-) diff --git a/addons/l10n_mx/data/account_chart.xml b/addons/l10n_mx/data/account_chart.xml index 7b81ec81d20..477b3353b8e 100644 --- a/addons/l10n_mx/data/account_chart.xml +++ b/addons/l10n_mx/data/account_chart.xml @@ -3693,8 +3693,6 @@ Cuentas del plan - - Plan de Cuentas para Mexico From 6b9822626bcb7d51721161de4a015a238bd33631 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 12 Nov 2013 12:56:35 +0100 Subject: [PATCH 20/28] [FIX] sale_stock: procuremenr.order object does not have a `property_ids` field. This field is added by `mrp` module, which we do not depend of. bzr revid: chs@openerp.com-20131112115635-tgbdeocn9awtbxkq --- addons/sale_stock/sale_stock.py | 1 - 1 file changed, 1 deletion(-) diff --git a/addons/sale_stock/sale_stock.py b/addons/sale_stock/sale_stock.py index 39fdfe27c92..1cf6f87f4b0 100644 --- a/addons/sale_stock/sale_stock.py +++ b/addons/sale_stock/sale_stock.py @@ -306,7 +306,6 @@ class sale_order(osv.osv): 'move_id': move_id, 'company_id': order.company_id.id, 'note': line.name, - 'property_ids': [(6, 0, [x.id for x in line.property_ids])], } def _prepare_order_line_move(self, cr, uid, order, line, picking_id, date_planned, context=None): From 57a4125a53bd0ab48773fd4be2b9045571565a4a Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 12 Nov 2013 20:10:33 +0100 Subject: [PATCH 21/28] [FIX] l10n_be: as l10n_multilang is an optional dependency for dutch translation of the account.chart, the field spoken_languages must be set conditionnaly bzr revid: chs@openerp.com-20131112191033-hour5mlzka3w6ybp --- addons/l10n_be/__openerp__.py | 1 + addons/l10n_be/account_chart_template.xml | 1 - addons/l10n_be/account_chart_template.yml | 4 ++++ 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 addons/l10n_be/account_chart_template.yml diff --git a/addons/l10n_be/__openerp__.py b/addons/l10n_be/__openerp__.py index 18943a2bee3..70b5ef96224 100644 --- a/addons/l10n_be/__openerp__.py +++ b/addons/l10n_be/__openerp__.py @@ -65,6 +65,7 @@ Wizards provided by this module: 'account_pcmn_belgium.xml', 'account_tax_code_template.xml', 'account_chart_template.xml', + 'account_chart_template.yml', 'account_tax_template.xml', 'wizard/l10n_be_account_vat_declaration_view.xml', 'wizard/l10n_be_vat_intra_view.xml', diff --git a/addons/l10n_be/account_chart_template.xml b/addons/l10n_be/account_chart_template.xml index 47f7fc0986e..6c9f205471c 100644 --- a/addons/l10n_be/account_chart_template.xml +++ b/addons/l10n_be/account_chart_template.xml @@ -12,7 +12,6 @@ - Belgian PCMN diff --git a/addons/l10n_be/account_chart_template.yml b/addons/l10n_be/account_chart_template.yml new file mode 100644 index 00000000000..0028576f964 --- /dev/null +++ b/addons/l10n_be/account_chart_template.yml @@ -0,0 +1,4 @@ +- + !python {model: account.chart.template}: | + if 'spoken_languages' in self._all_columns: + self.write(cr, uid, [ref('l10nbe_chart_template')], {'spoken_languages': 'nl_BE'}) From 7ba1d747cc178b09bacdfb8298935efafcbec778 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Wed, 13 Nov 2013 12:37:15 +0100 Subject: [PATCH 22/28] [FIX] html_sanitize: handle the case of empty documents (after sanitization). [IMP] test_mail: do not mute logger bzr revid: chs@openerp.com-20131113113715-tzaog0d6o2u4q0x4 --- openerp/tests/test_mail.py | 3 +-- openerp/tools/mail.py | 12 +++++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/openerp/tests/test_mail.py b/openerp/tests/test_mail.py index 6450c5ba780..ddb8fc4a195 100755 --- a/openerp/tests/test_mail.py +++ b/openerp/tests/test_mail.py @@ -23,7 +23,7 @@ ############################################################################## import unittest2 -from openerp.tools import html_sanitize, html_email_clean, append_content_to_html, plaintext2html, mute_logger +from openerp.tools import html_sanitize, html_email_clean, append_content_to_html, plaintext2html HTML_SOURCE = """ test1 @@ -178,7 +178,6 @@ class TestSanitizer(unittest2.TestCase): html = html_sanitize(content) self.assertEqual(html, expected, 'html_sanitize is broken') - @mute_logger('openerp.tools.mail') def test_evil_malicious_code(self): # taken from https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#Tests cases = [ diff --git a/openerp/tools/mail.py b/openerp/tools/mail.py index c516cb7d643..b0605bf5c83 100644 --- a/openerp/tools/mail.py +++ b/openerp/tools/mail.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Business Applications -# Copyright (C) 2012 OpenERP S.A. (). +# Copyright (C) 2012-2013 OpenERP S.A. (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -52,17 +52,19 @@ def html_sanitize(src): # html encode email tags part = re.compile(r"(<(([^a<>]|a[^<>\s])[^<>]*)@[^<>]+>)", re.IGNORECASE | re.DOTALL) src = part.sub(lambda m: cgi.escape(m.group(1)), src) - + # some corner cases make the parser crash (such as in test_mail) try: cleaner = clean.Cleaner(page_structure=True, style=False, safe_attrs_only=False, forms=False, kill_tags=tags_to_kill, remove_tags=tags_to_remove) cleaned = cleaner.clean_html(src) - except TypeError, e: + except TypeError: # lxml.clean version < 2.3.1 does not have a kill_tags attribute # to remove in 2014 - cleaner = clean.Cleaner(page_structure=True, style=False, safe_attrs_only=False, forms=False, remove_tags=tags_to_kill+tags_to_remove) + cleaner = clean.Cleaner(page_structure=True, style=False, safe_attrs_only=False, forms=False, remove_tags=tags_to_kill + tags_to_remove) cleaned = cleaner.clean_html(src) - except: + except Exception, e: + if isinstance(e, etree.ParserError) and 'empty' in str(e): + return "" _logger.warning('html_sanitize failed to parse %s' % (src)) cleaned = '

Impossible to parse

' return cleaned From a85442d6db660a2a6ab6ddce07c6e011405729ca Mon Sep 17 00:00:00 2001 From: Antony Lesuisse Date: Wed, 20 Nov 2013 17:53:14 +0100 Subject: [PATCH 23/28] [FIX] fleet,project allow demo user to create cars and projects bzr revid: al@openerp.com-20131120165314-btwzd5b0yvqcg2gc --- addons/fleet/fleet_demo.xml | 3 ++- addons/fleet/fleet_view.xml | 26 +++++++++++++++++++++++--- addons/project/project_demo.xml | 2 +- 3 files changed, 26 insertions(+), 5 deletions(-) diff --git a/addons/fleet/fleet_demo.xml b/addons/fleet/fleet_demo.xml index a550ae78da5..2f9b71b3bb5 100644 --- a/addons/fleet/fleet_demo.xml +++ b/addons/fleet/fleet_demo.xml @@ -1,8 +1,9 @@ + - + diff --git a/addons/fleet/fleet_view.xml b/addons/fleet/fleet_view.xml index a8f6a321daf..5040e0f894c 100644 --- a/addons/fleet/fleet_view.xml +++ b/addons/fleet/fleet_view.xml @@ -43,6 +43,7 @@
+ fleet.vehicle.model.tree fleet.vehicle.model @@ -555,7 +556,7 @@ - fleet.vehicle.odometer.graph @@ -661,6 +663,23 @@ + + + fleet.vehicle.log.fuel.search + fleet.vehicle.log.fuel + + + + + + + + + + + + + fleet.vehicle.log.fuel.graph @@ -680,6 +699,7 @@ fleet.vehicle.log.fuel form tree,form,graph + {"search_default_groupby_vehicle" : True}

Click to create a new fuel log. diff --git a/addons/project/project_demo.xml b/addons/project/project_demo.xml index b7dcc2bdb83..0ed80499e4d 100644 --- a/addons/project/project_demo.xml +++ b/addons/project/project_demo.xml @@ -4,7 +4,7 @@ - + From 271ed43e7bed789264a37705ea60199e1d745592 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Thu, 21 Nov 2013 06:38:38 +0000 Subject: [PATCH 24/28] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20131121054848-007arsnnoa8fs65e bzr revid: launchpad_translations_on_behalf_of_openerp-20131121063838-blqn6j0yfmrlw5vp --- addons/account/i18n/ar.po | 4 +- addons/account/i18n/bg.po | 4 +- addons/account/i18n/br.po | 4 +- addons/account/i18n/bs.po | 4 +- addons/account/i18n/ca.po | 4 +- addons/account/i18n/cs.po | 4 +- addons/account/i18n/da.po | 4 +- addons/account/i18n/de.po | 4 +- addons/account/i18n/el.po | 4 +- addons/account/i18n/en_GB.po | 4 +- addons/account/i18n/en_US.po | 4 +- addons/account/i18n/es.po | 4 +- addons/account/i18n/es_AR.po | 4 +- addons/account/i18n/es_CL.po | 4 +- addons/account/i18n/es_CR.po | 4 +- addons/account/i18n/es_DO.po | 4 +- addons/account/i18n/es_EC.po | 4 +- addons/account/i18n/es_MX.po | 4 +- addons/account/i18n/es_PY.po | 4 +- addons/account/i18n/es_UY.po | 4 +- addons/account/i18n/es_VE.po | 4 +- addons/account/i18n/et.po | 4 +- addons/account/i18n/eu.po | 4 +- addons/account/i18n/fa.po | 4 +- addons/account/i18n/fa_AF.po | 4 +- addons/account/i18n/fi.po | 186 ++++++----- addons/account/i18n/fr.po | 4 +- addons/account/i18n/fr_BE.po | 4 +- addons/account/i18n/gl.po | 4 +- addons/account/i18n/gu.po | 4 +- addons/account/i18n/he.po | 4 +- addons/account/i18n/hi.po | 4 +- addons/account/i18n/hr.po | 4 +- addons/account/i18n/hu.po | 4 +- addons/account/i18n/id.po | 4 +- addons/account/i18n/is.po | 4 +- addons/account/i18n/it.po | 8 +- addons/account/i18n/ja.po | 2 +- addons/account/i18n/kab.po | 4 +- addons/account/i18n/kk.po | 4 +- addons/account/i18n/ko.po | 6 +- addons/account/i18n/lo.po | 4 +- addons/account/i18n/lt.po | 4 +- addons/account/i18n/lv.po | 4 +- addons/account/i18n/mk.po | 4 +- addons/account/i18n/mn.po | 4 +- addons/account/i18n/nb.po | 4 +- addons/account/i18n/nl.po | 6 +- addons/account/i18n/nl_BE.po | 4 +- addons/account/i18n/oc.po | 4 +- addons/account/i18n/pl.po | 2 +- addons/account/i18n/pt.po | 4 +- addons/account/i18n/pt_BR.po | 6 +- addons/account/i18n/ro.po | 4 +- addons/account/i18n/ru.po | 4 +- addons/account/i18n/si.po | 4 +- addons/account/i18n/sk.po | 4 +- addons/account/i18n/sl.po | 28 +- addons/account/i18n/sq.po | 4 +- addons/account/i18n/sr.po | 4 +- addons/account/i18n/sr@latin.po | 4 +- addons/account/i18n/sv.po | 4 +- addons/account/i18n/ta.po | 4 +- addons/account/i18n/te.po | 4 +- addons/account/i18n/th.po | 4 +- addons/account/i18n/tlh.po | 4 +- addons/account/i18n/tr.po | 4 +- addons/account/i18n/ug.po | 4 +- addons/account/i18n/uk.po | 4 +- addons/account/i18n/ur.po | 4 +- addons/account/i18n/vi.po | 4 +- addons/account/i18n/zh_CN.po | 4 +- addons/account/i18n/zh_HK.po | 4 +- addons/account/i18n/zh_TW.po | 4 +- addons/account_accountant/i18n/ar.po | 4 +- addons/account_accountant/i18n/az.po | 4 +- addons/account_accountant/i18n/bg.po | 4 +- addons/account_accountant/i18n/bn.po | 4 +- addons/account_accountant/i18n/bs.po | 4 +- addons/account_accountant/i18n/ca.po | 4 +- addons/account_accountant/i18n/cs.po | 4 +- addons/account_accountant/i18n/da.po | 4 +- addons/account_accountant/i18n/de.po | 4 +- addons/account_accountant/i18n/el.po | 4 +- addons/account_accountant/i18n/en_GB.po | 4 +- addons/account_accountant/i18n/es.po | 4 +- addons/account_accountant/i18n/es_AR.po | 4 +- addons/account_accountant/i18n/es_CO.po | 4 +- addons/account_accountant/i18n/es_CR.po | 4 +- addons/account_accountant/i18n/es_DO.po | 4 +- addons/account_accountant/i18n/es_EC.po | 4 +- addons/account_accountant/i18n/es_MX.po | 4 +- addons/account_accountant/i18n/es_PY.po | 4 +- addons/account_accountant/i18n/et.po | 4 +- addons/account_accountant/i18n/fa.po | 4 +- addons/account_accountant/i18n/fi.po | 4 +- addons/account_accountant/i18n/fr.po | 4 +- addons/account_accountant/i18n/gl.po | 4 +- addons/account_accountant/i18n/he.po | 4 +- addons/account_accountant/i18n/hi.po | 4 +- addons/account_accountant/i18n/hr.po | 4 +- addons/account_accountant/i18n/hu.po | 4 +- addons/account_accountant/i18n/id.po | 4 +- addons/account_accountant/i18n/it.po | 4 +- addons/account_accountant/i18n/ja.po | 6 +- addons/account_accountant/i18n/ko.po | 4 +- addons/account_accountant/i18n/lo.po | 4 +- addons/account_accountant/i18n/lt.po | 4 +- addons/account_accountant/i18n/lv.po | 4 +- addons/account_accountant/i18n/mk.po | 4 +- addons/account_accountant/i18n/mn.po | 4 +- addons/account_accountant/i18n/nb.po | 4 +- addons/account_accountant/i18n/nl.po | 4 +- addons/account_accountant/i18n/nl_BE.po | 4 +- addons/account_accountant/i18n/oc.po | 4 +- addons/account_accountant/i18n/pl.po | 4 +- addons/account_accountant/i18n/pt.po | 4 +- addons/account_accountant/i18n/pt_BR.po | 6 +- addons/account_accountant/i18n/ro.po | 6 +- addons/account_accountant/i18n/ru.po | 4 +- addons/account_accountant/i18n/sk.po | 4 +- addons/account_accountant/i18n/sl.po | 4 +- addons/account_accountant/i18n/sq.po | 4 +- addons/account_accountant/i18n/sr.po | 4 +- addons/account_accountant/i18n/sr@latin.po | 4 +- addons/account_accountant/i18n/sv.po | 4 +- addons/account_accountant/i18n/ta.po | 4 +- addons/account_accountant/i18n/th.po | 4 +- addons/account_accountant/i18n/tr.po | 4 +- addons/account_accountant/i18n/uk.po | 4 +- addons/account_accountant/i18n/vi.po | 4 +- addons/account_accountant/i18n/zh_CN.po | 6 +- addons/account_accountant/i18n/zh_TW.po | 4 +- addons/account_analytic_analysis/i18n/ar.po | 4 +- addons/account_analytic_analysis/i18n/bg.po | 4 +- addons/account_analytic_analysis/i18n/bs.po | 4 +- addons/account_analytic_analysis/i18n/ca.po | 4 +- addons/account_analytic_analysis/i18n/cs.po | 4 +- addons/account_analytic_analysis/i18n/da.po | 4 +- addons/account_analytic_analysis/i18n/de.po | 4 +- addons/account_analytic_analysis/i18n/el.po | 4 +- .../account_analytic_analysis/i18n/en_GB.po | 4 +- addons/account_analytic_analysis/i18n/es.po | 4 +- .../account_analytic_analysis/i18n/es_AR.po | 4 +- .../account_analytic_analysis/i18n/es_CR.po | 4 +- .../account_analytic_analysis/i18n/es_EC.po | 4 +- .../account_analytic_analysis/i18n/es_MX.po | 4 +- .../account_analytic_analysis/i18n/es_PY.po | 4 +- addons/account_analytic_analysis/i18n/et.po | 4 +- addons/account_analytic_analysis/i18n/fa.po | 4 +- addons/account_analytic_analysis/i18n/fi.po | 4 +- addons/account_analytic_analysis/i18n/fr.po | 4 +- addons/account_analytic_analysis/i18n/gl.po | 4 +- addons/account_analytic_analysis/i18n/gu.po | 4 +- addons/account_analytic_analysis/i18n/hr.po | 4 +- addons/account_analytic_analysis/i18n/hu.po | 4 +- addons/account_analytic_analysis/i18n/id.po | 4 +- addons/account_analytic_analysis/i18n/it.po | 4 +- addons/account_analytic_analysis/i18n/ja.po | 4 +- addons/account_analytic_analysis/i18n/ko.po | 4 +- addons/account_analytic_analysis/i18n/lt.po | 4 +- addons/account_analytic_analysis/i18n/lv.po | 4 +- addons/account_analytic_analysis/i18n/mk.po | 4 +- addons/account_analytic_analysis/i18n/mn.po | 4 +- addons/account_analytic_analysis/i18n/nb.po | 4 +- addons/account_analytic_analysis/i18n/nl.po | 4 +- .../account_analytic_analysis/i18n/nl_BE.po | 4 +- addons/account_analytic_analysis/i18n/oc.po | 4 +- addons/account_analytic_analysis/i18n/pl.po | 2 +- addons/account_analytic_analysis/i18n/pt.po | 4 +- .../account_analytic_analysis/i18n/pt_BR.po | 6 +- addons/account_analytic_analysis/i18n/ro.po | 6 +- addons/account_analytic_analysis/i18n/ru.po | 4 +- addons/account_analytic_analysis/i18n/sl.po | 4 +- addons/account_analytic_analysis/i18n/sq.po | 4 +- addons/account_analytic_analysis/i18n/sr.po | 4 +- .../i18n/sr@latin.po | 4 +- addons/account_analytic_analysis/i18n/sv.po | 4 +- addons/account_analytic_analysis/i18n/tlh.po | 4 +- addons/account_analytic_analysis/i18n/tr.po | 4 +- addons/account_analytic_analysis/i18n/uk.po | 4 +- addons/account_analytic_analysis/i18n/vi.po | 4 +- .../account_analytic_analysis/i18n/zh_CN.po | 40 ++- .../account_analytic_analysis/i18n/zh_TW.po | 4 +- addons/account_analytic_default/i18n/ar.po | 4 +- addons/account_analytic_default/i18n/bg.po | 4 +- addons/account_analytic_default/i18n/bs.po | 4 +- addons/account_analytic_default/i18n/ca.po | 4 +- addons/account_analytic_default/i18n/cs.po | 4 +- addons/account_analytic_default/i18n/da.po | 4 +- addons/account_analytic_default/i18n/de.po | 4 +- addons/account_analytic_default/i18n/el.po | 4 +- addons/account_analytic_default/i18n/en_GB.po | 4 +- addons/account_analytic_default/i18n/es.po | 4 +- addons/account_analytic_default/i18n/es_AR.po | 4 +- addons/account_analytic_default/i18n/es_CR.po | 4 +- addons/account_analytic_default/i18n/es_EC.po | 4 +- addons/account_analytic_default/i18n/es_MX.po | 4 +- addons/account_analytic_default/i18n/es_PY.po | 4 +- addons/account_analytic_default/i18n/et.po | 4 +- addons/account_analytic_default/i18n/fa.po | 4 +- addons/account_analytic_default/i18n/fi.po | 4 +- addons/account_analytic_default/i18n/fr.po | 4 +- addons/account_analytic_default/i18n/gl.po | 4 +- addons/account_analytic_default/i18n/gu.po | 4 +- addons/account_analytic_default/i18n/hr.po | 4 +- addons/account_analytic_default/i18n/hu.po | 4 +- addons/account_analytic_default/i18n/id.po | 4 +- addons/account_analytic_default/i18n/it.po | 4 +- addons/account_analytic_default/i18n/ja.po | 4 +- addons/account_analytic_default/i18n/ko.po | 4 +- addons/account_analytic_default/i18n/lt.po | 4 +- addons/account_analytic_default/i18n/lv.po | 4 +- addons/account_analytic_default/i18n/mk.po | 4 +- addons/account_analytic_default/i18n/mn.po | 4 +- addons/account_analytic_default/i18n/nb.po | 4 +- addons/account_analytic_default/i18n/nl.po | 6 +- addons/account_analytic_default/i18n/nl_BE.po | 4 +- addons/account_analytic_default/i18n/oc.po | 4 +- addons/account_analytic_default/i18n/pl.po | 2 +- addons/account_analytic_default/i18n/pt.po | 4 +- addons/account_analytic_default/i18n/pt_BR.po | 4 +- addons/account_analytic_default/i18n/ro.po | 6 +- addons/account_analytic_default/i18n/ru.po | 4 +- addons/account_analytic_default/i18n/sk.po | 4 +- addons/account_analytic_default/i18n/sl.po | 4 +- addons/account_analytic_default/i18n/sq.po | 4 +- addons/account_analytic_default/i18n/sr.po | 4 +- .../account_analytic_default/i18n/sr@latin.po | 4 +- addons/account_analytic_default/i18n/sv.po | 4 +- addons/account_analytic_default/i18n/tlh.po | 4 +- addons/account_analytic_default/i18n/tr.po | 4 +- addons/account_analytic_default/i18n/uk.po | 4 +- addons/account_analytic_default/i18n/vi.po | 4 +- addons/account_analytic_default/i18n/zh_CN.po | 12 +- addons/account_analytic_default/i18n/zh_TW.po | 4 +- addons/account_analytic_plans/i18n/ar.po | 4 +- addons/account_analytic_plans/i18n/bg.po | 4 +- addons/account_analytic_plans/i18n/bs.po | 4 +- addons/account_analytic_plans/i18n/ca.po | 4 +- addons/account_analytic_plans/i18n/cs.po | 4 +- addons/account_analytic_plans/i18n/da.po | 4 +- addons/account_analytic_plans/i18n/de.po | 4 +- addons/account_analytic_plans/i18n/el.po | 4 +- addons/account_analytic_plans/i18n/en_GB.po | 4 +- addons/account_analytic_plans/i18n/es.po | 4 +- addons/account_analytic_plans/i18n/es_AR.po | 4 +- addons/account_analytic_plans/i18n/es_CR.po | 4 +- addons/account_analytic_plans/i18n/es_EC.po | 4 +- addons/account_analytic_plans/i18n/es_MX.po | 4 +- addons/account_analytic_plans/i18n/es_PY.po | 4 +- addons/account_analytic_plans/i18n/et.po | 4 +- addons/account_analytic_plans/i18n/fa.po | 4 +- addons/account_analytic_plans/i18n/fi.po | 4 +- addons/account_analytic_plans/i18n/fr.po | 4 +- addons/account_analytic_plans/i18n/gl.po | 4 +- addons/account_analytic_plans/i18n/gu.po | 4 +- addons/account_analytic_plans/i18n/hr.po | 4 +- addons/account_analytic_plans/i18n/hu.po | 4 +- addons/account_analytic_plans/i18n/id.po | 4 +- addons/account_analytic_plans/i18n/it.po | 4 +- addons/account_analytic_plans/i18n/ja.po | 4 +- addons/account_analytic_plans/i18n/ko.po | 4 +- addons/account_analytic_plans/i18n/lt.po | 4 +- addons/account_analytic_plans/i18n/lv.po | 4 +- addons/account_analytic_plans/i18n/mk.po | 4 +- addons/account_analytic_plans/i18n/mn.po | 4 +- addons/account_analytic_plans/i18n/nb.po | 4 +- addons/account_analytic_plans/i18n/nl.po | 6 +- addons/account_analytic_plans/i18n/nl_BE.po | 4 +- addons/account_analytic_plans/i18n/oc.po | 4 +- addons/account_analytic_plans/i18n/pl.po | 2 +- addons/account_analytic_plans/i18n/pt.po | 4 +- addons/account_analytic_plans/i18n/pt_BR.po | 4 +- addons/account_analytic_plans/i18n/ro.po | 6 +- addons/account_analytic_plans/i18n/ru.po | 4 +- addons/account_analytic_plans/i18n/sl.po | 4 +- addons/account_analytic_plans/i18n/sq.po | 4 +- addons/account_analytic_plans/i18n/sr.po | 4 +- .../account_analytic_plans/i18n/sr@latin.po | 4 +- addons/account_analytic_plans/i18n/sv.po | 4 +- addons/account_analytic_plans/i18n/tlh.po | 4 +- addons/account_analytic_plans/i18n/tr.po | 4 +- addons/account_analytic_plans/i18n/uk.po | 4 +- addons/account_analytic_plans/i18n/vi.po | 4 +- addons/account_analytic_plans/i18n/zh_CN.po | 4 +- addons/account_analytic_plans/i18n/zh_TW.po | 4 +- addons/account_anglo_saxon/i18n/ar.po | 4 +- addons/account_anglo_saxon/i18n/bg.po | 4 +- addons/account_anglo_saxon/i18n/bs.po | 4 +- addons/account_anglo_saxon/i18n/ca.po | 4 +- addons/account_anglo_saxon/i18n/cs.po | 4 +- addons/account_anglo_saxon/i18n/da.po | 4 +- addons/account_anglo_saxon/i18n/de.po | 4 +- addons/account_anglo_saxon/i18n/el.po | 4 +- addons/account_anglo_saxon/i18n/en_GB.po | 4 +- addons/account_anglo_saxon/i18n/es.po | 4 +- addons/account_anglo_saxon/i18n/es_CR.po | 4 +- addons/account_anglo_saxon/i18n/es_EC.po | 4 +- addons/account_anglo_saxon/i18n/es_MX.po | 4 +- addons/account_anglo_saxon/i18n/es_PY.po | 4 +- addons/account_anglo_saxon/i18n/et.po | 4 +- addons/account_anglo_saxon/i18n/fa.po | 4 +- addons/account_anglo_saxon/i18n/fi.po | 4 +- addons/account_anglo_saxon/i18n/fr.po | 4 +- addons/account_anglo_saxon/i18n/gl.po | 4 +- addons/account_anglo_saxon/i18n/gu.po | 4 +- addons/account_anglo_saxon/i18n/hi.po | 4 +- addons/account_anglo_saxon/i18n/hr.po | 4 +- addons/account_anglo_saxon/i18n/hu.po | 4 +- addons/account_anglo_saxon/i18n/id.po | 4 +- addons/account_anglo_saxon/i18n/it.po | 4 +- addons/account_anglo_saxon/i18n/ja.po | 4 +- addons/account_anglo_saxon/i18n/lv.po | 4 +- addons/account_anglo_saxon/i18n/mk.po | 4 +- addons/account_anglo_saxon/i18n/mn.po | 4 +- addons/account_anglo_saxon/i18n/nb.po | 4 +- addons/account_anglo_saxon/i18n/nl.po | 4 +- addons/account_anglo_saxon/i18n/nl_BE.po | 4 +- addons/account_anglo_saxon/i18n/oc.po | 4 +- addons/account_anglo_saxon/i18n/pl.po | 2 +- addons/account_anglo_saxon/i18n/pt.po | 4 +- addons/account_anglo_saxon/i18n/pt_BR.po | 4 +- addons/account_anglo_saxon/i18n/ro.po | 6 +- addons/account_anglo_saxon/i18n/ru.po | 4 +- addons/account_anglo_saxon/i18n/sl.po | 4 +- addons/account_anglo_saxon/i18n/sq.po | 4 +- addons/account_anglo_saxon/i18n/sr@latin.po | 4 +- addons/account_anglo_saxon/i18n/sv.po | 4 +- addons/account_anglo_saxon/i18n/ta.po | 4 +- addons/account_anglo_saxon/i18n/tr.po | 4 +- addons/account_anglo_saxon/i18n/zh_CN.po | 4 +- addons/account_anglo_saxon/i18n/zh_TW.po | 4 +- addons/account_asset/i18n/ar.po | 4 +- addons/account_asset/i18n/bs.po | 4 +- addons/account_asset/i18n/ca.po | 4 +- addons/account_asset/i18n/cs.po | 4 +- addons/account_asset/i18n/da.po | 4 +- addons/account_asset/i18n/de.po | 4 +- addons/account_asset/i18n/en_GB.po | 4 +- addons/account_asset/i18n/es.po | 4 +- addons/account_asset/i18n/es_AR.po | 4 +- addons/account_asset/i18n/es_CR.po | 4 +- addons/account_asset/i18n/es_EC.po | 4 +- addons/account_asset/i18n/es_MX.po | 4 +- addons/account_asset/i18n/et.po | 4 +- addons/account_asset/i18n/fi.po | 4 +- addons/account_asset/i18n/fr.po | 4 +- addons/account_asset/i18n/gu.po | 4 +- addons/account_asset/i18n/hr.po | 4 +- addons/account_asset/i18n/hu.po | 155 +++++---- addons/account_asset/i18n/id.po | 4 +- addons/account_asset/i18n/it.po | 4 +- addons/account_asset/i18n/ja.po | 4 +- addons/account_asset/i18n/ko.po | 4 +- addons/account_asset/i18n/lt.po | 4 +- addons/account_asset/i18n/mk.po | 4 +- addons/account_asset/i18n/mn.po | 4 +- addons/account_asset/i18n/nb.po | 4 +- addons/account_asset/i18n/nl.po | 6 +- addons/account_asset/i18n/nl_BE.po | 4 +- addons/account_asset/i18n/pl.po | 2 +- addons/account_asset/i18n/pt.po | 4 +- addons/account_asset/i18n/pt_BR.po | 4 +- addons/account_asset/i18n/ro.po | 6 +- addons/account_asset/i18n/ru.po | 4 +- addons/account_asset/i18n/sl.po | 2 +- addons/account_asset/i18n/sr@latin.po | 4 +- addons/account_asset/i18n/sv.po | 4 +- addons/account_asset/i18n/th.po | 8 +- addons/account_asset/i18n/tr.po | 4 +- addons/account_asset/i18n/vi.po | 4 +- addons/account_asset/i18n/zh_CN.po | 18 +- addons/account_asset/i18n/zh_TW.po | 4 +- .../i18n/ar.po | 4 +- .../i18n/bs.po | 4 +- .../i18n/cs.po | 4 +- .../i18n/da.po | 4 +- .../i18n/de.po | 4 +- .../i18n/en_GB.po | 4 +- .../i18n/es.po | 4 +- .../i18n/es_CR.po | 4 +- .../i18n/es_EC.po | 4 +- .../i18n/es_MX.po | 4 +- .../i18n/fi.po | 4 +- .../i18n/fr.po | 6 +- .../i18n/gu.po | 4 +- .../i18n/hr.po | 4 +- .../i18n/hu.po | 4 +- .../i18n/it.po | 4 +- .../i18n/ja.po | 4 +- .../i18n/mk.po | 4 +- .../i18n/mn.po | 4 +- .../i18n/nb.po | 4 +- .../i18n/nl.po | 6 +- .../i18n/pl.po | 2 +- .../i18n/pt.po | 4 +- .../i18n/pt_BR.po | 4 +- .../i18n/ro.po | 6 +- .../i18n/ru.po | 4 +- .../i18n/sl.po | 4 +- .../i18n/sr@latin.po | 4 +- .../i18n/sv.po | 4 +- .../i18n/tr.po | 4 +- .../i18n/zh_CN.po | 6 +- .../i18n/zh_TW.po | 4 +- addons/account_budget/i18n/ar.po | 4 +- addons/account_budget/i18n/bg.po | 4 +- addons/account_budget/i18n/bs.po | 4 +- addons/account_budget/i18n/ca.po | 4 +- addons/account_budget/i18n/cs.po | 4 +- addons/account_budget/i18n/da.po | 4 +- addons/account_budget/i18n/de.po | 4 +- addons/account_budget/i18n/el.po | 4 +- addons/account_budget/i18n/en_GB.po | 4 +- addons/account_budget/i18n/es.po | 4 +- addons/account_budget/i18n/es_AR.po | 4 +- addons/account_budget/i18n/es_CR.po | 4 +- addons/account_budget/i18n/es_EC.po | 4 +- addons/account_budget/i18n/es_MX.po | 4 +- addons/account_budget/i18n/es_PY.po | 4 +- addons/account_budget/i18n/et.po | 4 +- addons/account_budget/i18n/fa.po | 4 +- addons/account_budget/i18n/fi.po | 4 +- addons/account_budget/i18n/fr.po | 4 +- addons/account_budget/i18n/gl.po | 4 +- addons/account_budget/i18n/gu.po | 4 +- addons/account_budget/i18n/he.po | 4 +- addons/account_budget/i18n/hi.po | 4 +- addons/account_budget/i18n/hr.po | 4 +- addons/account_budget/i18n/hu.po | 4 +- addons/account_budget/i18n/id.po | 4 +- addons/account_budget/i18n/it.po | 4 +- addons/account_budget/i18n/ja.po | 6 +- addons/account_budget/i18n/ko.po | 4 +- addons/account_budget/i18n/lo.po | 4 +- addons/account_budget/i18n/lt.po | 4 +- addons/account_budget/i18n/lv.po | 4 +- addons/account_budget/i18n/mk.po | 4 +- addons/account_budget/i18n/mn.po | 4 +- addons/account_budget/i18n/nb.po | 4 +- addons/account_budget/i18n/nl.po | 6 +- addons/account_budget/i18n/nl_BE.po | 4 +- addons/account_budget/i18n/oc.po | 4 +- addons/account_budget/i18n/pl.po | 2 +- addons/account_budget/i18n/pt.po | 4 +- addons/account_budget/i18n/pt_BR.po | 6 +- addons/account_budget/i18n/ro.po | 6 +- addons/account_budget/i18n/ru.po | 4 +- addons/account_budget/i18n/sl.po | 4 +- addons/account_budget/i18n/sq.po | 4 +- addons/account_budget/i18n/sr.po | 4 +- addons/account_budget/i18n/sr@latin.po | 4 +- addons/account_budget/i18n/sv.po | 4 +- addons/account_budget/i18n/tlh.po | 4 +- addons/account_budget/i18n/tr.po | 4 +- addons/account_budget/i18n/uk.po | 4 +- addons/account_budget/i18n/vi.po | 4 +- addons/account_budget/i18n/zh_CN.po | 37 ++- addons/account_budget/i18n/zh_TW.po | 4 +- addons/account_cancel/i18n/ar.po | 4 +- addons/account_cancel/i18n/bg.po | 4 +- addons/account_cancel/i18n/bn.po | 4 +- addons/account_cancel/i18n/br.po | 4 +- addons/account_cancel/i18n/bs.po | 4 +- addons/account_cancel/i18n/ca.po | 4 +- addons/account_cancel/i18n/cs.po | 4 +- addons/account_cancel/i18n/da.po | 7 +- addons/account_cancel/i18n/de.po | 4 +- addons/account_cancel/i18n/el.po | 4 +- addons/account_cancel/i18n/en_GB.po | 4 +- addons/account_cancel/i18n/es.po | 4 +- addons/account_cancel/i18n/es_CL.po | 4 +- addons/account_cancel/i18n/es_CR.po | 4 +- addons/account_cancel/i18n/es_EC.po | 4 +- addons/account_cancel/i18n/es_MX.po | 4 +- addons/account_cancel/i18n/es_PY.po | 4 +- addons/account_cancel/i18n/et.po | 4 +- addons/account_cancel/i18n/fa.po | 4 +- addons/account_cancel/i18n/fi.po | 2 +- addons/account_cancel/i18n/fr.po | 4 +- addons/account_cancel/i18n/gl.po | 4 +- addons/account_cancel/i18n/gu.po | 4 +- addons/account_cancel/i18n/hi.po | 4 +- addons/account_cancel/i18n/hr.po | 4 +- addons/account_cancel/i18n/hu.po | 4 +- addons/account_cancel/i18n/id.po | 4 +- addons/account_cancel/i18n/it.po | 6 +- addons/account_cancel/i18n/ja.po | 4 +- addons/account_cancel/i18n/kk.po | 4 +- addons/account_cancel/i18n/lo.po | 4 +- addons/account_cancel/i18n/lt.po | 4 +- addons/account_cancel/i18n/lv.po | 4 +- addons/account_cancel/i18n/mk.po | 4 +- addons/account_cancel/i18n/mn.po | 4 +- addons/account_cancel/i18n/nb.po | 4 +- addons/account_cancel/i18n/nl.po | 6 +- addons/account_cancel/i18n/nl_BE.po | 4 +- addons/account_cancel/i18n/oc.po | 4 +- addons/account_cancel/i18n/pl.po | 4 +- addons/account_cancel/i18n/pt.po | 4 +- addons/account_cancel/i18n/pt_BR.po | 4 +- addons/account_cancel/i18n/ro.po | 6 +- addons/account_cancel/i18n/ru.po | 6 +- addons/account_cancel/i18n/sl.po | 4 +- addons/account_cancel/i18n/sq.po | 4 +- addons/account_cancel/i18n/sr.po | 4 +- addons/account_cancel/i18n/sr@latin.po | 4 +- addons/account_cancel/i18n/sv.po | 4 +- addons/account_cancel/i18n/ta.po | 4 +- addons/account_cancel/i18n/th.po | 4 +- addons/account_cancel/i18n/tr.po | 4 +- addons/account_cancel/i18n/uk.po | 4 +- addons/account_cancel/i18n/vi.po | 4 +- addons/account_cancel/i18n/zh_CN.po | 6 +- addons/account_cancel/i18n/zh_TW.po | 4 +- addons/account_chart/i18n/ar.po | 4 +- addons/account_chart/i18n/bg.po | 4 +- addons/account_chart/i18n/bs.po | 4 +- addons/account_chart/i18n/ca.po | 4 +- addons/account_chart/i18n/cs.po | 4 +- addons/account_chart/i18n/da.po | 4 +- addons/account_chart/i18n/de.po | 4 +- addons/account_chart/i18n/el.po | 4 +- addons/account_chart/i18n/en_GB.po | 4 +- addons/account_chart/i18n/es.po | 4 +- addons/account_chart/i18n/es_AR.po | 4 +- addons/account_chart/i18n/es_CL.po | 4 +- addons/account_chart/i18n/es_CR.po | 4 +- addons/account_chart/i18n/es_EC.po | 4 +- addons/account_chart/i18n/es_MX.po | 4 +- addons/account_chart/i18n/es_PY.po | 4 +- addons/account_chart/i18n/et.po | 4 +- addons/account_chart/i18n/eu.po | 4 +- addons/account_chart/i18n/fa.po | 4 +- addons/account_chart/i18n/fi.po | 4 +- addons/account_chart/i18n/fr.po | 4 +- addons/account_chart/i18n/gl.po | 4 +- addons/account_chart/i18n/gu.po | 4 +- addons/account_chart/i18n/hi.po | 4 +- addons/account_chart/i18n/hr.po | 4 +- addons/account_chart/i18n/hu.po | 4 +- addons/account_chart/i18n/id.po | 4 +- addons/account_chart/i18n/it.po | 4 +- addons/account_chart/i18n/ja.po | 4 +- addons/account_chart/i18n/ko.po | 4 +- addons/account_chart/i18n/lo.po | 4 +- addons/account_chart/i18n/lt.po | 4 +- addons/account_chart/i18n/lv.po | 4 +- addons/account_chart/i18n/mk.po | 4 +- addons/account_chart/i18n/mn.po | 4 +- addons/account_chart/i18n/nb.po | 4 +- addons/account_chart/i18n/nl.po | 4 +- addons/account_chart/i18n/nl_BE.po | 4 +- addons/account_chart/i18n/oc.po | 4 +- addons/account_chart/i18n/pl.po | 4 +- addons/account_chart/i18n/pt.po | 4 +- addons/account_chart/i18n/pt_BR.po | 4 +- addons/account_chart/i18n/ro.po | 6 +- addons/account_chart/i18n/ru.po | 4 +- addons/account_chart/i18n/sk.po | 4 +- addons/account_chart/i18n/sl.po | 4 +- addons/account_chart/i18n/sq.po | 4 +- addons/account_chart/i18n/sr.po | 4 +- addons/account_chart/i18n/sr@latin.po | 4 +- addons/account_chart/i18n/sv.po | 4 +- addons/account_chart/i18n/ta.po | 4 +- addons/account_chart/i18n/th.po | 4 +- addons/account_chart/i18n/tr.po | 4 +- addons/account_chart/i18n/uk.po | 4 +- addons/account_chart/i18n/vi.po | 4 +- addons/account_chart/i18n/zh_CN.po | 4 +- addons/account_chart/i18n/zh_TW.po | 4 +- addons/account_check_writing/i18n/ar.po | 4 +- addons/account_check_writing/i18n/bs.po | 4 +- addons/account_check_writing/i18n/cs.po | 4 +- addons/account_check_writing/i18n/de.po | 4 +- addons/account_check_writing/i18n/en_GB.po | 4 +- addons/account_check_writing/i18n/es.po | 4 +- addons/account_check_writing/i18n/es_CR.po | 4 +- addons/account_check_writing/i18n/es_EC.po | 4 +- addons/account_check_writing/i18n/es_MX.po | 4 +- addons/account_check_writing/i18n/fi.po | 4 +- addons/account_check_writing/i18n/fr.po | 4 +- addons/account_check_writing/i18n/gu.po | 4 +- addons/account_check_writing/i18n/hr.po | 4 +- addons/account_check_writing/i18n/hu.po | 4 +- addons/account_check_writing/i18n/ja.po | 10 +- addons/account_check_writing/i18n/lt.po | 4 +- addons/account_check_writing/i18n/mk.po | 4 +- addons/account_check_writing/i18n/mn.po | 4 +- addons/account_check_writing/i18n/nb.po | 4 +- addons/account_check_writing/i18n/nl.po | 6 +- addons/account_check_writing/i18n/pl.po | 2 +- addons/account_check_writing/i18n/pt.po | 4 +- addons/account_check_writing/i18n/pt_BR.po | 4 +- addons/account_check_writing/i18n/ro.po | 6 +- addons/account_check_writing/i18n/ru.po | 4 +- addons/account_check_writing/i18n/sl.po | 4 +- addons/account_check_writing/i18n/sr@latin.po | 4 +- addons/account_check_writing/i18n/sv.po | 4 +- addons/account_check_writing/i18n/tr.po | 4 +- addons/account_check_writing/i18n/zh_CN.po | 6 +- addons/account_check_writing/i18n/zh_TW.po | 4 +- addons/account_followup/i18n/ar.po | 4 +- addons/account_followup/i18n/bg.po | 4 +- addons/account_followup/i18n/bs.po | 4 +- addons/account_followup/i18n/ca.po | 4 +- addons/account_followup/i18n/cs.po | 4 +- addons/account_followup/i18n/da.po | 4 +- addons/account_followup/i18n/de.po | 4 +- addons/account_followup/i18n/el.po | 4 +- addons/account_followup/i18n/en_GB.po | 4 +- addons/account_followup/i18n/es.po | 4 +- addons/account_followup/i18n/es_AR.po | 4 +- addons/account_followup/i18n/es_CR.po | 4 +- addons/account_followup/i18n/es_EC.po | 4 +- addons/account_followup/i18n/es_PY.po | 4 +- addons/account_followup/i18n/et.po | 4 +- addons/account_followup/i18n/fa.po | 4 +- addons/account_followup/i18n/fi.po | 4 +- addons/account_followup/i18n/fr.po | 4 +- addons/account_followup/i18n/gl.po | 4 +- addons/account_followup/i18n/hr.po | 4 +- addons/account_followup/i18n/hu.po | 4 +- addons/account_followup/i18n/id.po | 4 +- addons/account_followup/i18n/it.po | 4 +- addons/account_followup/i18n/ja.po | 4 +- addons/account_followup/i18n/ko.po | 4 +- addons/account_followup/i18n/lt.po | 4 +- addons/account_followup/i18n/mk.po | 4 +- addons/account_followup/i18n/mn.po | 4 +- addons/account_followup/i18n/nb.po | 4 +- addons/account_followup/i18n/nl.po | 4 +- addons/account_followup/i18n/nl_BE.po | 6 +- addons/account_followup/i18n/oc.po | 4 +- addons/account_followup/i18n/pl.po | 2 +- addons/account_followup/i18n/pt.po | 4 +- addons/account_followup/i18n/pt_BR.po | 4 +- addons/account_followup/i18n/ro.po | 6 +- addons/account_followup/i18n/ru.po | 4 +- addons/account_followup/i18n/sl.po | 4 +- addons/account_followup/i18n/sq.po | 4 +- addons/account_followup/i18n/sr.po | 4 +- addons/account_followup/i18n/sr@latin.po | 4 +- addons/account_followup/i18n/sv.po | 4 +- addons/account_followup/i18n/tlh.po | 4 +- addons/account_followup/i18n/tr.po | 4 +- addons/account_followup/i18n/uk.po | 4 +- addons/account_followup/i18n/vi.po | 4 +- addons/account_followup/i18n/zh_CN.po | 6 +- addons/account_followup/i18n/zh_TW.po | 4 +- addons/account_payment/i18n/am.po | 4 +- addons/account_payment/i18n/ar.po | 4 +- addons/account_payment/i18n/bg.po | 4 +- addons/account_payment/i18n/bs.po | 4 +- addons/account_payment/i18n/ca.po | 4 +- addons/account_payment/i18n/cs.po | 4 +- addons/account_payment/i18n/da.po | 4 +- addons/account_payment/i18n/de.po | 4 +- addons/account_payment/i18n/el.po | 4 +- addons/account_payment/i18n/en_GB.po | 4 +- addons/account_payment/i18n/es.po | 4 +- addons/account_payment/i18n/es_AR.po | 4 +- addons/account_payment/i18n/es_CL.po | 4 +- addons/account_payment/i18n/es_CR.po | 4 +- addons/account_payment/i18n/es_EC.po | 4 +- addons/account_payment/i18n/es_PY.po | 4 +- addons/account_payment/i18n/et.po | 4 +- addons/account_payment/i18n/fa.po | 4 +- addons/account_payment/i18n/fi.po | 4 +- addons/account_payment/i18n/fr.po | 4 +- addons/account_payment/i18n/gl.po | 4 +- addons/account_payment/i18n/hi.po | 4 +- addons/account_payment/i18n/hr.po | 4 +- addons/account_payment/i18n/hu.po | 4 +- addons/account_payment/i18n/id.po | 4 +- addons/account_payment/i18n/it.po | 4 +- addons/account_payment/i18n/ja.po | 4 +- addons/account_payment/i18n/ko.po | 4 +- addons/account_payment/i18n/lt.po | 4 +- addons/account_payment/i18n/lv.po | 4 +- addons/account_payment/i18n/mk.po | 4 +- addons/account_payment/i18n/mn.po | 4 +- addons/account_payment/i18n/nb.po | 4 +- addons/account_payment/i18n/nl.po | 4 +- addons/account_payment/i18n/nl_BE.po | 4 +- addons/account_payment/i18n/oc.po | 4 +- addons/account_payment/i18n/pl.po | 6 +- addons/account_payment/i18n/pt.po | 4 +- addons/account_payment/i18n/pt_BR.po | 4 +- addons/account_payment/i18n/ro.po | 6 +- addons/account_payment/i18n/ru.po | 4 +- addons/account_payment/i18n/sl.po | 4 +- addons/account_payment/i18n/sq.po | 4 +- addons/account_payment/i18n/sr.po | 4 +- addons/account_payment/i18n/sr@latin.po | 4 +- addons/account_payment/i18n/sv.po | 4 +- addons/account_payment/i18n/tlh.po | 4 +- addons/account_payment/i18n/tr.po | 4 +- addons/account_payment/i18n/uk.po | 4 +- addons/account_payment/i18n/vi.po | 4 +- addons/account_payment/i18n/zh_CN.po | 6 +- addons/account_payment/i18n/zh_TW.po | 4 +- addons/account_report_company/i18n/bs.po | 4 +- addons/account_report_company/i18n/cs.po | 4 +- addons/account_report_company/i18n/da.po | 4 +- addons/account_report_company/i18n/de.po | 4 +- addons/account_report_company/i18n/en_GB.po | 4 +- addons/account_report_company/i18n/es.po | 4 +- addons/account_report_company/i18n/hr.po | 4 +- addons/account_report_company/i18n/hu.po | 4 +- addons/account_report_company/i18n/it.po | 6 +- addons/account_report_company/i18n/nl.po | 6 +- addons/account_report_company/i18n/pl.po | 2 +- addons/account_report_company/i18n/pt.po | 4 +- addons/account_report_company/i18n/pt_BR.po | 4 +- addons/account_report_company/i18n/ru.po | 4 +- addons/account_report_company/i18n/sl.po | 4 +- addons/account_report_company/i18n/tr.po | 4 +- addons/account_report_company/i18n/vi.po | 4 +- addons/account_report_company/i18n/zh_CN.po | 6 +- addons/account_sequence/i18n/ar.po | 4 +- addons/account_sequence/i18n/bg.po | 4 +- addons/account_sequence/i18n/bs.po | 4 +- addons/account_sequence/i18n/ca.po | 4 +- addons/account_sequence/i18n/cs.po | 4 +- addons/account_sequence/i18n/da.po | 4 +- addons/account_sequence/i18n/de.po | 4 +- addons/account_sequence/i18n/el.po | 4 +- addons/account_sequence/i18n/en_GB.po | 4 +- addons/account_sequence/i18n/es.po | 4 +- addons/account_sequence/i18n/es_CR.po | 4 +- addons/account_sequence/i18n/es_EC.po | 4 +- addons/account_sequence/i18n/es_PY.po | 4 +- addons/account_sequence/i18n/fa.po | 4 +- addons/account_sequence/i18n/fr.po | 4 +- addons/account_sequence/i18n/gl.po | 4 +- addons/account_sequence/i18n/hr.po | 4 +- addons/account_sequence/i18n/hu.po | 4 +- addons/account_sequence/i18n/id.po | 4 +- addons/account_sequence/i18n/it.po | 4 +- addons/account_sequence/i18n/ja.po | 4 +- addons/account_sequence/i18n/lv.po | 4 +- addons/account_sequence/i18n/mk.po | 4 +- addons/account_sequence/i18n/mn.po | 4 +- addons/account_sequence/i18n/nb.po | 4 +- addons/account_sequence/i18n/nl.po | 6 +- addons/account_sequence/i18n/nl_BE.po | 4 +- addons/account_sequence/i18n/pl.po | 10 +- addons/account_sequence/i18n/pt.po | 4 +- addons/account_sequence/i18n/pt_BR.po | 4 +- addons/account_sequence/i18n/ro.po | 6 +- addons/account_sequence/i18n/ru.po | 4 +- addons/account_sequence/i18n/sl.po | 4 +- addons/account_sequence/i18n/sq.po | 4 +- addons/account_sequence/i18n/sr@latin.po | 4 +- addons/account_sequence/i18n/sv.po | 4 +- addons/account_sequence/i18n/tr.po | 4 +- addons/account_sequence/i18n/vi.po | 4 +- addons/account_sequence/i18n/zh_CN.po | 4 +- addons/account_sequence/i18n/zh_TW.po | 4 +- addons/account_test/i18n/ar.po | 4 +- addons/account_test/i18n/cs.po | 4 +- addons/account_test/i18n/da.po | 4 +- addons/account_test/i18n/en_GB.po | 4 +- addons/account_test/i18n/es.po | 4 +- addons/account_test/i18n/fr.po | 4 +- addons/account_test/i18n/hr.po | 4 +- addons/account_test/i18n/hu.po | 4 +- addons/account_test/i18n/it.po | 4 +- addons/account_test/i18n/mk.po | 4 +- addons/account_test/i18n/mn.po | 4 +- addons/account_test/i18n/nb.po | 4 +- addons/account_test/i18n/nl.po | 6 +- addons/account_test/i18n/pl.po | 6 +- addons/account_test/i18n/pt.po | 4 +- addons/account_test/i18n/pt_BR.po | 4 +- addons/account_test/i18n/ro.po | 4 +- addons/account_test/i18n/ru.po | 6 +- addons/account_test/i18n/sl.po | 4 +- addons/account_test/i18n/tr.po | 4 +- addons/account_test/i18n/zh_CN.po | 14 +- addons/account_voucher/i18n/ar.po | 4 +- addons/account_voucher/i18n/bg.po | 4 +- addons/account_voucher/i18n/bs.po | 4 +- addons/account_voucher/i18n/ca.po | 4 +- addons/account_voucher/i18n/cs.po | 4 +- addons/account_voucher/i18n/da.po | 4 +- addons/account_voucher/i18n/de.po | 4 +- addons/account_voucher/i18n/el.po | 4 +- addons/account_voucher/i18n/en_GB.po | 4 +- addons/account_voucher/i18n/es.po | 6 +- addons/account_voucher/i18n/es_AR.po | 4 +- addons/account_voucher/i18n/es_CR.po | 4 +- addons/account_voucher/i18n/es_EC.po | 4 +- addons/account_voucher/i18n/es_PY.po | 4 +- addons/account_voucher/i18n/et.po | 4 +- addons/account_voucher/i18n/fa.po | 4 +- addons/account_voucher/i18n/fr.po | 4 +- addons/account_voucher/i18n/gl.po | 4 +- addons/account_voucher/i18n/gu.po | 4 +- addons/account_voucher/i18n/hi.po | 4 +- addons/account_voucher/i18n/hr.po | 4 +- addons/account_voucher/i18n/hu.po | 4 +- addons/account_voucher/i18n/id.po | 4 +- addons/account_voucher/i18n/it.po | 4 +- addons/account_voucher/i18n/ja.po | 24 +- addons/account_voucher/i18n/ko.po | 4 +- addons/account_voucher/i18n/lt.po | 4 +- addons/account_voucher/i18n/mk.po | 4 +- addons/account_voucher/i18n/mn.po | 4 +- addons/account_voucher/i18n/nb.po | 4 +- addons/account_voucher/i18n/nl.po | 4 +- addons/account_voucher/i18n/nl_BE.po | 4 +- addons/account_voucher/i18n/oc.po | 4 +- addons/account_voucher/i18n/pl.po | 8 +- addons/account_voucher/i18n/pt.po | 4 +- addons/account_voucher/i18n/pt_BR.po | 6 +- addons/account_voucher/i18n/ro.po | 6 +- addons/account_voucher/i18n/ru.po | 4 +- addons/account_voucher/i18n/sl.po | 4 +- addons/account_voucher/i18n/sq.po | 4 +- addons/account_voucher/i18n/sr.po | 4 +- addons/account_voucher/i18n/sr@latin.po | 4 +- addons/account_voucher/i18n/sv.po | 4 +- addons/account_voucher/i18n/tlh.po | 4 +- addons/account_voucher/i18n/tr.po | 4 +- addons/account_voucher/i18n/uk.po | 4 +- addons/account_voucher/i18n/vi.po | 4 +- addons/account_voucher/i18n/zh_CN.po | 4 +- addons/account_voucher/i18n/zh_TW.po | 4 +- addons/analytic/i18n/ar.po | 4 +- addons/analytic/i18n/bg.po | 4 +- addons/analytic/i18n/bs.po | 4 +- addons/analytic/i18n/ca.po | 4 +- addons/analytic/i18n/cs.po | 4 +- addons/analytic/i18n/da.po | 4 +- addons/analytic/i18n/de.po | 4 +- addons/analytic/i18n/el.po | 4 +- addons/analytic/i18n/en_GB.po | 4 +- addons/analytic/i18n/es.po | 4 +- addons/analytic/i18n/es_CR.po | 4 +- addons/analytic/i18n/es_EC.po | 4 +- addons/analytic/i18n/es_PY.po | 4 +- addons/analytic/i18n/et.po | 4 +- addons/analytic/i18n/fa.po | 4 +- addons/analytic/i18n/fi.po | 4 +- addons/analytic/i18n/fr.po | 4 +- addons/analytic/i18n/gl.po | 4 +- addons/analytic/i18n/hr.po | 4 +- addons/analytic/i18n/hu.po | 4 +- addons/analytic/i18n/it.po | 4 +- addons/analytic/i18n/ja.po | 4 +- addons/analytic/i18n/lt.po | 4 +- addons/analytic/i18n/lv.po | 4 +- addons/analytic/i18n/mk.po | 4 +- addons/analytic/i18n/mn.po | 4 +- addons/analytic/i18n/nb.po | 4 +- addons/analytic/i18n/nl.po | 6 +- addons/analytic/i18n/nl_BE.po | 4 +- addons/analytic/i18n/pl.po | 2 +- addons/analytic/i18n/pt.po | 4 +- addons/analytic/i18n/pt_BR.po | 4 +- addons/analytic/i18n/ro.po | 4 +- addons/analytic/i18n/ru.po | 4 +- addons/analytic/i18n/sl.po | 4 +- addons/analytic/i18n/sq.po | 4 +- addons/analytic/i18n/sr.po | 4 +- addons/analytic/i18n/sr@latin.po | 4 +- addons/analytic/i18n/sv.po | 4 +- addons/analytic/i18n/tr.po | 4 +- addons/analytic/i18n/vi.po | 4 +- addons/analytic/i18n/zh_CN.po | 4 +- addons/analytic/i18n/zh_TW.po | 4 +- .../analytic_contract_hr_expense/i18n/ar.po | 4 +- .../analytic_contract_hr_expense/i18n/cs.po | 4 +- .../analytic_contract_hr_expense/i18n/da.po | 4 +- .../analytic_contract_hr_expense/i18n/de.po | 4 +- .../i18n/en_GB.po | 4 +- .../analytic_contract_hr_expense/i18n/es.po | 4 +- .../analytic_contract_hr_expense/i18n/fr.po | 4 +- .../analytic_contract_hr_expense/i18n/hr.po | 4 +- .../analytic_contract_hr_expense/i18n/hu.po | 4 +- .../analytic_contract_hr_expense/i18n/it.po | 4 +- .../analytic_contract_hr_expense/i18n/mk.po | 4 +- .../analytic_contract_hr_expense/i18n/mn.po | 4 +- .../analytic_contract_hr_expense/i18n/nb.po | 4 +- .../analytic_contract_hr_expense/i18n/nl.po | 6 +- .../i18n/nl_BE.po | 4 +- .../analytic_contract_hr_expense/i18n/pl.po | 2 +- .../analytic_contract_hr_expense/i18n/pt.po | 4 +- .../i18n/pt_BR.po | 6 +- .../analytic_contract_hr_expense/i18n/ro.po | 6 +- .../analytic_contract_hr_expense/i18n/sl.po | 4 +- .../analytic_contract_hr_expense/i18n/tr.po | 4 +- .../i18n/zh_CN.po | 6 +- addons/analytic_user_function/i18n/ar.po | 4 +- addons/analytic_user_function/i18n/bg.po | 4 +- addons/analytic_user_function/i18n/bs.po | 4 +- addons/analytic_user_function/i18n/ca.po | 4 +- addons/analytic_user_function/i18n/cs.po | 4 +- addons/analytic_user_function/i18n/da.po | 4 +- addons/analytic_user_function/i18n/de.po | 4 +- addons/analytic_user_function/i18n/el.po | 4 +- addons/analytic_user_function/i18n/en_GB.po | 4 +- addons/analytic_user_function/i18n/es.po | 4 +- addons/analytic_user_function/i18n/es_AR.po | 4 +- addons/analytic_user_function/i18n/es_CR.po | 4 +- addons/analytic_user_function/i18n/es_EC.po | 4 +- addons/analytic_user_function/i18n/es_PY.po | 4 +- addons/analytic_user_function/i18n/et.po | 4 +- addons/analytic_user_function/i18n/fa.po | 4 +- addons/analytic_user_function/i18n/fi.po | 4 +- addons/analytic_user_function/i18n/fr.po | 4 +- addons/analytic_user_function/i18n/gl.po | 4 +- addons/analytic_user_function/i18n/gu.po | 4 +- addons/analytic_user_function/i18n/hr.po | 4 +- addons/analytic_user_function/i18n/hu.po | 4 +- addons/analytic_user_function/i18n/id.po | 4 +- addons/analytic_user_function/i18n/it.po | 4 +- addons/analytic_user_function/i18n/ja.po | 4 +- addons/analytic_user_function/i18n/ko.po | 4 +- addons/analytic_user_function/i18n/lt.po | 4 +- addons/analytic_user_function/i18n/mk.po | 4 +- addons/analytic_user_function/i18n/mn.po | 4 +- addons/analytic_user_function/i18n/nb.po | 4 +- addons/analytic_user_function/i18n/nl.po | 6 +- addons/analytic_user_function/i18n/nl_BE.po | 4 +- addons/analytic_user_function/i18n/oc.po | 4 +- addons/analytic_user_function/i18n/pl.po | 4 +- addons/analytic_user_function/i18n/pt.po | 4 +- addons/analytic_user_function/i18n/pt_BR.po | 4 +- addons/analytic_user_function/i18n/ro.po | 6 +- addons/analytic_user_function/i18n/ru.po | 4 +- addons/analytic_user_function/i18n/sk.po | 4 +- addons/analytic_user_function/i18n/sl.po | 4 +- addons/analytic_user_function/i18n/sq.po | 4 +- addons/analytic_user_function/i18n/sr.po | 4 +- .../analytic_user_function/i18n/sr@latin.po | 4 +- addons/analytic_user_function/i18n/sv.po | 4 +- addons/analytic_user_function/i18n/tlh.po | 4 +- addons/analytic_user_function/i18n/tr.po | 4 +- addons/analytic_user_function/i18n/uk.po | 4 +- addons/analytic_user_function/i18n/vi.po | 4 +- addons/analytic_user_function/i18n/zh_CN.po | 9 +- addons/analytic_user_function/i18n/zh_TW.po | 4 +- addons/anonymization/i18n/ar.po | 4 +- addons/anonymization/i18n/bg.po | 4 +- addons/anonymization/i18n/ca.po | 4 +- addons/anonymization/i18n/cs.po | 4 +- addons/anonymization/i18n/da.po | 4 +- addons/anonymization/i18n/de.po | 4 +- addons/anonymization/i18n/en_GB.po | 4 +- addons/anonymization/i18n/es.po | 4 +- addons/anonymization/i18n/es_CR.po | 4 +- addons/anonymization/i18n/es_EC.po | 4 +- addons/anonymization/i18n/es_PY.po | 4 +- addons/anonymization/i18n/et.po | 4 +- addons/anonymization/i18n/fa.po | 4 +- addons/anonymization/i18n/fi.po | 4 +- addons/anonymization/i18n/fr.po | 4 +- addons/anonymization/i18n/gl.po | 4 +- addons/anonymization/i18n/hr.po | 4 +- addons/anonymization/i18n/hu.po | 4 +- addons/anonymization/i18n/it.po | 4 +- addons/anonymization/i18n/ja.po | 4 +- addons/anonymization/i18n/lv.po | 4 +- addons/anonymization/i18n/mk.po | 4 +- addons/anonymization/i18n/mn.po | 4 +- addons/anonymization/i18n/nb.po | 4 +- addons/anonymization/i18n/nl.po | 6 +- addons/anonymization/i18n/pl.po | 2 +- addons/anonymization/i18n/pt.po | 4 +- addons/anonymization/i18n/pt_BR.po | 4 +- addons/anonymization/i18n/ro.po | 6 +- addons/anonymization/i18n/ru.po | 4 +- addons/anonymization/i18n/sl.po | 4 +- addons/anonymization/i18n/sq.po | 4 +- addons/anonymization/i18n/sr@latin.po | 4 +- addons/anonymization/i18n/sv.po | 4 +- addons/anonymization/i18n/tr.po | 4 +- addons/anonymization/i18n/zh_CN.po | 6 +- addons/anonymization/i18n/zh_TW.po | 4 +- addons/association/i18n/ar.po | 4 +- addons/association/i18n/bg.po | 4 +- addons/association/i18n/bs.po | 4 +- addons/association/i18n/ca.po | 4 +- addons/association/i18n/cs.po | 4 +- addons/association/i18n/da.po | 4 +- addons/association/i18n/de.po | 4 +- addons/association/i18n/el.po | 4 +- addons/association/i18n/en_GB.po | 4 +- addons/association/i18n/es.po | 4 +- addons/association/i18n/es_CR.po | 4 +- addons/association/i18n/es_EC.po | 4 +- addons/association/i18n/es_PY.po | 4 +- addons/association/i18n/et.po | 4 +- addons/association/i18n/fa.po | 4 +- addons/association/i18n/fi.po | 4 +- addons/association/i18n/fr.po | 4 +- addons/association/i18n/gl.po | 4 +- addons/association/i18n/gu.po | 4 +- addons/association/i18n/hr.po | 4 +- addons/association/i18n/hu.po | 4 +- addons/association/i18n/id.po | 4 +- addons/association/i18n/it.po | 4 +- addons/association/i18n/ja.po | 4 +- addons/association/i18n/ko.po | 4 +- addons/association/i18n/lo.po | 4 +- addons/association/i18n/lt.po | 4 +- addons/association/i18n/lv.po | 4 +- addons/association/i18n/mk.po | 4 +- addons/association/i18n/mn.po | 4 +- addons/association/i18n/nb.po | 4 +- addons/association/i18n/nl.po | 4 +- addons/association/i18n/pl.po | 2 +- addons/association/i18n/pt.po | 4 +- addons/association/i18n/pt_BR.po | 4 +- addons/association/i18n/ro.po | 6 +- addons/association/i18n/ru.po | 4 +- addons/association/i18n/sl.po | 4 +- addons/association/i18n/sq.po | 4 +- addons/association/i18n/sr.po | 4 +- addons/association/i18n/sr@latin.po | 4 +- addons/association/i18n/sv.po | 4 +- addons/association/i18n/tlh.po | 4 +- addons/association/i18n/tr.po | 4 +- addons/association/i18n/uk.po | 4 +- addons/association/i18n/vi.po | 4 +- addons/association/i18n/zh_CN.po | 4 +- addons/association/i18n/zh_TW.po | 4 +- addons/audittrail/i18n/ar.po | 4 +- addons/audittrail/i18n/bg.po | 4 +- addons/audittrail/i18n/bs.po | 4 +- addons/audittrail/i18n/ca.po | 4 +- addons/audittrail/i18n/cs.po | 4 +- addons/audittrail/i18n/da.po | 4 +- addons/audittrail/i18n/de.po | 4 +- addons/audittrail/i18n/el.po | 4 +- addons/audittrail/i18n/es.po | 4 +- addons/audittrail/i18n/es_AR.po | 4 +- addons/audittrail/i18n/es_CR.po | 4 +- addons/audittrail/i18n/es_EC.po | 4 +- addons/audittrail/i18n/es_PY.po | 4 +- addons/audittrail/i18n/et.po | 4 +- addons/audittrail/i18n/fa.po | 4 +- addons/audittrail/i18n/fa_AF.po | 4 +- addons/audittrail/i18n/fi.po | 4 +- addons/audittrail/i18n/fr.po | 4 +- addons/audittrail/i18n/gl.po | 4 +- addons/audittrail/i18n/gu.po | 4 +- addons/audittrail/i18n/hr.po | 4 +- addons/audittrail/i18n/hu.po | 4 +- addons/audittrail/i18n/id.po | 4 +- addons/audittrail/i18n/it.po | 4 +- addons/audittrail/i18n/ja.po | 4 +- addons/audittrail/i18n/ko.po | 4 +- addons/audittrail/i18n/lt.po | 4 +- addons/audittrail/i18n/lv.po | 4 +- addons/audittrail/i18n/mk.po | 4 +- addons/audittrail/i18n/mn.po | 4 +- addons/audittrail/i18n/nb.po | 4 +- addons/audittrail/i18n/nl.po | 4 +- addons/audittrail/i18n/nl_BE.po | 4 +- addons/audittrail/i18n/oc.po | 4 +- addons/audittrail/i18n/pl.po | 4 +- addons/audittrail/i18n/pt.po | 4 +- addons/audittrail/i18n/pt_BR.po | 4 +- addons/audittrail/i18n/ro.po | 6 +- addons/audittrail/i18n/ru.po | 4 +- addons/audittrail/i18n/sl.po | 4 +- addons/audittrail/i18n/sq.po | 4 +- addons/audittrail/i18n/sr@latin.po | 4 +- addons/audittrail/i18n/sv.po | 4 +- addons/audittrail/i18n/tlh.po | 4 +- addons/audittrail/i18n/tr.po | 4 +- addons/audittrail/i18n/uk.po | 4 +- addons/audittrail/i18n/vi.po | 4 +- addons/audittrail/i18n/zh_CN.po | 4 +- addons/audittrail/i18n/zh_TW.po | 4 +- addons/auth_crypt/i18n/ar.po | 4 +- addons/auth_crypt/i18n/cs.po | 4 +- addons/auth_crypt/i18n/da.po | 4 +- addons/auth_crypt/i18n/de.po | 4 +- addons/auth_crypt/i18n/en_GB.po | 4 +- addons/auth_crypt/i18n/es.po | 4 +- addons/auth_crypt/i18n/et.po | 4 +- addons/auth_crypt/i18n/fr.po | 4 +- addons/auth_crypt/i18n/hr.po | 4 +- addons/auth_crypt/i18n/hu.po | 4 +- addons/auth_crypt/i18n/it.po | 4 +- addons/auth_crypt/i18n/lt.po | 4 +- addons/auth_crypt/i18n/mk.po | 4 +- addons/auth_crypt/i18n/mn.po | 4 +- addons/auth_crypt/i18n/nl.po | 6 +- addons/auth_crypt/i18n/nl_BE.po | 4 +- addons/auth_crypt/i18n/pl.po | 4 +- addons/auth_crypt/i18n/pt.po | 4 +- addons/auth_crypt/i18n/pt_BR.po | 4 +- addons/auth_crypt/i18n/ro.po | 6 +- addons/auth_crypt/i18n/ru.po | 4 +- addons/auth_crypt/i18n/sl.po | 4 +- addons/auth_crypt/i18n/sv.po | 4 +- addons/auth_crypt/i18n/tr.po | 4 +- addons/auth_crypt/i18n/zh_CN.po | 6 +- addons/auth_ldap/i18n/ar.po | 4 +- addons/auth_ldap/i18n/bg.po | 4 +- addons/auth_ldap/i18n/ca.po | 4 +- addons/auth_ldap/i18n/cs.po | 4 +- addons/auth_ldap/i18n/da.po | 4 +- addons/auth_ldap/i18n/de.po | 4 +- addons/auth_ldap/i18n/en_GB.po | 4 +- addons/auth_ldap/i18n/es.po | 4 +- addons/auth_ldap/i18n/es_CR.po | 4 +- addons/auth_ldap/i18n/fi.po | 4 +- addons/auth_ldap/i18n/fr.po | 4 +- addons/auth_ldap/i18n/gl.po | 4 +- addons/auth_ldap/i18n/hr.po | 4 +- addons/auth_ldap/i18n/hu.po | 4 +- addons/auth_ldap/i18n/it.po | 4 +- addons/auth_ldap/i18n/ja.po | 4 +- addons/auth_ldap/i18n/mk.po | 4 +- addons/auth_ldap/i18n/mn.po | 4 +- addons/auth_ldap/i18n/nb.po | 4 +- addons/auth_ldap/i18n/nl.po | 4 +- addons/auth_ldap/i18n/pl.po | 2 +- addons/auth_ldap/i18n/pt.po | 4 +- addons/auth_ldap/i18n/pt_BR.po | 4 +- addons/auth_ldap/i18n/ro.po | 6 +- addons/auth_ldap/i18n/ru.po | 4 +- addons/auth_ldap/i18n/sl.po | 4 +- addons/auth_ldap/i18n/sv.po | 4 +- addons/auth_ldap/i18n/tr.po | 4 +- addons/auth_ldap/i18n/zh_CN.po | 4 +- addons/auth_oauth/i18n/ar.po | 4 +- addons/auth_oauth/i18n/cs.po | 4 +- addons/auth_oauth/i18n/de.po | 4 +- addons/auth_oauth/i18n/en_GB.po | 4 +- addons/auth_oauth/i18n/es.po | 4 +- addons/auth_oauth/i18n/fr.po | 4 +- addons/auth_oauth/i18n/hr.po | 4 +- addons/auth_oauth/i18n/hu.po | 4 +- addons/auth_oauth/i18n/it.po | 4 +- addons/auth_oauth/i18n/mk.po | 4 +- addons/auth_oauth/i18n/nb.po | 4 +- addons/auth_oauth/i18n/nl.po | 6 +- addons/auth_oauth/i18n/pl.po | 8 +- addons/auth_oauth/i18n/pt.po | 4 +- addons/auth_oauth/i18n/pt_BR.po | 4 +- addons/auth_oauth/i18n/ro.po | 6 +- addons/auth_oauth/i18n/ru.po | 4 +- addons/auth_oauth/i18n/sl.po | 4 +- addons/auth_oauth/i18n/sv.po | 4 +- addons/auth_oauth/i18n/tr.po | 4 +- addons/auth_oauth/i18n/zh_CN.po | 4 +- addons/auth_oauth_signup/i18n/cs.po | 4 +- addons/auth_oauth_signup/i18n/da.po | 4 +- addons/auth_oauth_signup/i18n/de.po | 4 +- addons/auth_oauth_signup/i18n/en_GB.po | 4 +- addons/auth_oauth_signup/i18n/es.po | 4 +- addons/auth_oauth_signup/i18n/et.po | 4 +- addons/auth_oauth_signup/i18n/fr.po | 4 +- addons/auth_oauth_signup/i18n/hr.po | 4 +- addons/auth_oauth_signup/i18n/hu.po | 4 +- addons/auth_oauth_signup/i18n/it.po | 4 +- addons/auth_oauth_signup/i18n/lt.po | 4 +- addons/auth_oauth_signup/i18n/mk.po | 4 +- addons/auth_oauth_signup/i18n/mn.po | 4 +- addons/auth_oauth_signup/i18n/nl.po | 6 +- addons/auth_oauth_signup/i18n/nl_BE.po | 4 +- addons/auth_oauth_signup/i18n/pl.po | 2 +- addons/auth_oauth_signup/i18n/pt.po | 4 +- addons/auth_oauth_signup/i18n/pt_BR.po | 4 +- addons/auth_oauth_signup/i18n/ro.po | 6 +- addons/auth_oauth_signup/i18n/ru.po | 4 +- addons/auth_oauth_signup/i18n/sl.po | 4 +- addons/auth_oauth_signup/i18n/sv.po | 4 +- addons/auth_oauth_signup/i18n/tr.po | 4 +- addons/auth_oauth_signup/i18n/vi.po | 4 +- addons/auth_oauth_signup/i18n/zh_CN.po | 4 +- addons/auth_oauth_signup/i18n/zh_TW.po | 4 +- addons/auth_openid/i18n/ar.po | 4 +- addons/auth_openid/i18n/cs.po | 4 +- addons/auth_openid/i18n/de.po | 4 +- addons/auth_openid/i18n/en_GB.po | 4 +- addons/auth_openid/i18n/es.po | 4 +- addons/auth_openid/i18n/es_CR.po | 4 +- addons/auth_openid/i18n/fi.po | 4 +- addons/auth_openid/i18n/fr.po | 4 +- addons/auth_openid/i18n/gu.po | 4 +- addons/auth_openid/i18n/hr.po | 4 +- addons/auth_openid/i18n/hu.po | 4 +- addons/auth_openid/i18n/it.po | 4 +- addons/auth_openid/i18n/ja.po | 4 +- addons/auth_openid/i18n/mk.po | 4 +- addons/auth_openid/i18n/mn.po | 4 +- addons/auth_openid/i18n/nb.po | 4 +- addons/auth_openid/i18n/nl.po | 4 +- addons/auth_openid/i18n/pl.po | 2 +- addons/auth_openid/i18n/pt.po | 4 +- addons/auth_openid/i18n/pt_BR.po | 4 +- addons/auth_openid/i18n/ro.po | 4 +- addons/auth_openid/i18n/ru.po | 4 +- addons/auth_openid/i18n/sk.po | 4 +- addons/auth_openid/i18n/sl.po | 4 +- addons/auth_openid/i18n/sr@latin.po | 4 +- addons/auth_openid/i18n/sv.po | 4 +- addons/auth_openid/i18n/tr.po | 4 +- addons/auth_openid/i18n/vi.po | 4 +- addons/auth_openid/i18n/zh_CN.po | 4 +- addons/auth_signup/i18n/ar.po | 4 +- addons/auth_signup/i18n/cs.po | 4 +- addons/auth_signup/i18n/de.po | 4 +- addons/auth_signup/i18n/en_GB.po | 4 +- addons/auth_signup/i18n/es.po | 4 +- addons/auth_signup/i18n/es_CO.po | 4 +- addons/auth_signup/i18n/fr.po | 6 +- addons/auth_signup/i18n/hr.po | 4 +- addons/auth_signup/i18n/hu.po | 4 +- addons/auth_signup/i18n/it.po | 4 +- addons/auth_signup/i18n/lt.po | 4 +- addons/auth_signup/i18n/mk.po | 4 +- addons/auth_signup/i18n/mn.po | 4 +- addons/auth_signup/i18n/nb.po | 4 +- addons/auth_signup/i18n/nl.po | 6 +- addons/auth_signup/i18n/pl.po | 2 +- addons/auth_signup/i18n/pt.po | 4 +- addons/auth_signup/i18n/pt_BR.po | 4 +- addons/auth_signup/i18n/ro.po | 6 +- addons/auth_signup/i18n/ru.po | 4 +- addons/auth_signup/i18n/sl.po | 4 +- addons/auth_signup/i18n/tr.po | 4 +- addons/auth_signup/i18n/vi.po | 4 +- addons/auth_signup/i18n/zh_CN.po | 36 ++- addons/auth_signup/i18n/zh_TW.po | 4 +- addons/base_action_rule/i18n/ar.po | 4 +- addons/base_action_rule/i18n/bg.po | 4 +- addons/base_action_rule/i18n/bs.po | 4 +- addons/base_action_rule/i18n/ca.po | 4 +- addons/base_action_rule/i18n/cs.po | 4 +- addons/base_action_rule/i18n/da.po | 4 +- addons/base_action_rule/i18n/de.po | 4 +- addons/base_action_rule/i18n/el.po | 4 +- addons/base_action_rule/i18n/es.po | 4 +- addons/base_action_rule/i18n/es_CR.po | 4 +- addons/base_action_rule/i18n/es_EC.po | 4 +- addons/base_action_rule/i18n/es_PY.po | 4 +- addons/base_action_rule/i18n/fa.po | 4 +- addons/base_action_rule/i18n/fi.po | 4 +- addons/base_action_rule/i18n/fr.po | 4 +- addons/base_action_rule/i18n/gl.po | 4 +- addons/base_action_rule/i18n/gu.po | 4 +- addons/base_action_rule/i18n/hr.po | 4 +- addons/base_action_rule/i18n/hu.po | 4 +- addons/base_action_rule/i18n/it.po | 4 +- addons/base_action_rule/i18n/ja.po | 4 +- addons/base_action_rule/i18n/lt.po | 4 +- addons/base_action_rule/i18n/lv.po | 4 +- addons/base_action_rule/i18n/mk.po | 4 +- addons/base_action_rule/i18n/mn.po | 4 +- addons/base_action_rule/i18n/nb.po | 4 +- addons/base_action_rule/i18n/nl.po | 4 +- addons/base_action_rule/i18n/pl.po | 2 +- addons/base_action_rule/i18n/pt.po | 4 +- addons/base_action_rule/i18n/pt_BR.po | 6 +- addons/base_action_rule/i18n/ro.po | 6 +- addons/base_action_rule/i18n/ru.po | 4 +- addons/base_action_rule/i18n/sl.po | 4 +- addons/base_action_rule/i18n/sq.po | 4 +- addons/base_action_rule/i18n/sr.po | 4 +- addons/base_action_rule/i18n/sr@latin.po | 4 +- addons/base_action_rule/i18n/sv.po | 4 +- addons/base_action_rule/i18n/tr.po | 4 +- addons/base_action_rule/i18n/zh_CN.po | 4 +- addons/base_action_rule/i18n/zh_TW.po | 4 +- addons/base_calendar/i18n/af.po | 4 +- addons/base_calendar/i18n/ar.po | 4 +- addons/base_calendar/i18n/bg.po | 4 +- addons/base_calendar/i18n/bn.po | 4 +- addons/base_calendar/i18n/bs.po | 4 +- addons/base_calendar/i18n/ca.po | 4 +- addons/base_calendar/i18n/cs.po | 4 +- addons/base_calendar/i18n/da.po | 4 +- addons/base_calendar/i18n/de.po | 4 +- addons/base_calendar/i18n/el.po | 4 +- addons/base_calendar/i18n/es.po | 4 +- addons/base_calendar/i18n/es_CR.po | 4 +- addons/base_calendar/i18n/es_EC.po | 4 +- addons/base_calendar/i18n/es_MX.po | 4 +- addons/base_calendar/i18n/es_PY.po | 4 +- addons/base_calendar/i18n/et.po | 4 +- addons/base_calendar/i18n/fa.po | 4 +- addons/base_calendar/i18n/fi.po | 2 +- addons/base_calendar/i18n/fr.po | 4 +- addons/base_calendar/i18n/gl.po | 4 +- addons/base_calendar/i18n/hr.po | 4 +- addons/base_calendar/i18n/hu.po | 4 +- addons/base_calendar/i18n/id.po | 4 +- addons/base_calendar/i18n/it.po | 4 +- addons/base_calendar/i18n/ja.po | 4 +- addons/base_calendar/i18n/ln.po | 4 +- addons/base_calendar/i18n/lt.po | 4 +- addons/base_calendar/i18n/lv.po | 4 +- addons/base_calendar/i18n/mk.po | 4 +- addons/base_calendar/i18n/mn.po | 4 +- addons/base_calendar/i18n/nb.po | 4 +- addons/base_calendar/i18n/nl.po | 6 +- addons/base_calendar/i18n/pl.po | 4 +- addons/base_calendar/i18n/pt.po | 4 +- addons/base_calendar/i18n/pt_BR.po | 4 +- addons/base_calendar/i18n/ro.po | 4 +- addons/base_calendar/i18n/ru.po | 4 +- addons/base_calendar/i18n/sk.po | 4 +- addons/base_calendar/i18n/sl.po | 8 +- addons/base_calendar/i18n/sq.po | 4 +- addons/base_calendar/i18n/sr.po | 4 +- addons/base_calendar/i18n/sr@latin.po | 4 +- addons/base_calendar/i18n/sv.po | 4 +- addons/base_calendar/i18n/th.po | 4 +- addons/base_calendar/i18n/tr.po | 4 +- addons/base_calendar/i18n/vi.po | 4 +- addons/base_calendar/i18n/zh_CN.po | 6 +- addons/base_calendar/i18n/zh_TW.po | 4 +- addons/base_gengo/i18n/ar.po | 4 +- addons/base_gengo/i18n/bs.po | 4 +- addons/base_gengo/i18n/cs.po | 4 +- addons/base_gengo/i18n/da.po | 4 +- addons/base_gengo/i18n/de.po | 4 +- addons/base_gengo/i18n/es.po | 4 +- addons/base_gengo/i18n/fr.po | 4 +- addons/base_gengo/i18n/hr.po | 4 +- addons/base_gengo/i18n/hu.po | 4 +- addons/base_gengo/i18n/it.po | 4 +- addons/base_gengo/i18n/mk.po | 4 +- addons/base_gengo/i18n/mn.po | 4 +- addons/base_gengo/i18n/nb.po | 4 +- addons/base_gengo/i18n/nl.po | 6 +- addons/base_gengo/i18n/pl.po | 8 +- addons/base_gengo/i18n/pt.po | 4 +- addons/base_gengo/i18n/pt_BR.po | 4 +- addons/base_gengo/i18n/ro.po | 6 +- addons/base_gengo/i18n/sl.po | 4 +- addons/base_gengo/i18n/th.po | 4 +- addons/base_gengo/i18n/tr.po | 4 +- addons/base_gengo/i18n/zh_CN.po | 4 +- addons/base_iban/i18n/ar.po | 4 +- addons/base_iban/i18n/bg.po | 4 +- addons/base_iban/i18n/bs.po | 4 +- addons/base_iban/i18n/ca.po | 4 +- addons/base_iban/i18n/cs.po | 4 +- addons/base_iban/i18n/da.po | 4 +- addons/base_iban/i18n/de.po | 4 +- addons/base_iban/i18n/el.po | 4 +- addons/base_iban/i18n/en_GB.po | 4 +- addons/base_iban/i18n/es.po | 4 +- addons/base_iban/i18n/es_AR.po | 4 +- addons/base_iban/i18n/es_CR.po | 4 +- addons/base_iban/i18n/es_EC.po | 4 +- addons/base_iban/i18n/es_PY.po | 4 +- addons/base_iban/i18n/et.po | 4 +- addons/base_iban/i18n/eu.po | 4 +- addons/base_iban/i18n/fa.po | 4 +- addons/base_iban/i18n/fi.po | 4 +- addons/base_iban/i18n/fr.po | 4 +- addons/base_iban/i18n/gl.po | 4 +- addons/base_iban/i18n/gu.po | 4 +- addons/base_iban/i18n/hr.po | 4 +- addons/base_iban/i18n/hu.po | 4 +- addons/base_iban/i18n/id.po | 4 +- addons/base_iban/i18n/it.po | 4 +- addons/base_iban/i18n/ja.po | 4 +- addons/base_iban/i18n/ko.po | 4 +- addons/base_iban/i18n/lt.po | 4 +- addons/base_iban/i18n/lv.po | 4 +- addons/base_iban/i18n/mk.po | 4 +- addons/base_iban/i18n/mn.po | 4 +- addons/base_iban/i18n/nb.po | 4 +- addons/base_iban/i18n/nl.po | 4 +- addons/base_iban/i18n/nl_BE.po | 4 +- addons/base_iban/i18n/oc.po | 4 +- addons/base_iban/i18n/pl.po | 4 +- addons/base_iban/i18n/pt.po | 4 +- addons/base_iban/i18n/pt_BR.po | 4 +- addons/base_iban/i18n/ro.po | 6 +- addons/base_iban/i18n/ru.po | 4 +- addons/base_iban/i18n/sk.po | 4 +- addons/base_iban/i18n/sl.po | 4 +- addons/base_iban/i18n/sq.po | 4 +- addons/base_iban/i18n/sr.po | 4 +- addons/base_iban/i18n/sr@latin.po | 4 +- addons/base_iban/i18n/sv.po | 4 +- addons/base_iban/i18n/ta.po | 4 +- addons/base_iban/i18n/tlh.po | 4 +- addons/base_iban/i18n/tr.po | 4 +- addons/base_iban/i18n/uk.po | 4 +- addons/base_iban/i18n/vi.po | 4 +- addons/base_iban/i18n/zh_CN.po | 4 +- addons/base_iban/i18n/zh_TW.po | 4 +- addons/base_import/i18n/ar.po | 4 +- addons/base_import/i18n/bs.po | 4 +- addons/base_import/i18n/cs.po | 4 +- addons/base_import/i18n/de.po | 4 +- addons/base_import/i18n/es.po | 4 +- addons/base_import/i18n/et.po | 4 +- addons/base_import/i18n/fr.po | 4 +- addons/base_import/i18n/hr.po | 4 +- addons/base_import/i18n/hu.po | 4 +- addons/base_import/i18n/it.po | 4 +- addons/base_import/i18n/mk.po | 4 +- addons/base_import/i18n/mn.po | 4 +- addons/base_import/i18n/nb.po | 4 +- addons/base_import/i18n/nl.po | 4 +- addons/base_import/i18n/pl.po | 2 +- addons/base_import/i18n/pt.po | 4 +- addons/base_import/i18n/pt_BR.po | 6 +- addons/base_import/i18n/ro.po | 6 +- addons/base_import/i18n/ru.po | 4 +- addons/base_import/i18n/sl.po | 4 +- addons/base_import/i18n/tr.po | 4 +- addons/base_import/i18n/zh_CN.po | 6 +- addons/base_report_designer/i18n/ar.po | 4 +- addons/base_report_designer/i18n/bg.po | 4 +- addons/base_report_designer/i18n/bs.po | 4 +- addons/base_report_designer/i18n/ca.po | 4 +- addons/base_report_designer/i18n/cs.po | 4 +- addons/base_report_designer/i18n/da.po | 4 +- addons/base_report_designer/i18n/de.po | 4 +- addons/base_report_designer/i18n/el.po | 4 +- addons/base_report_designer/i18n/en_GB.po | 4 +- addons/base_report_designer/i18n/es.po | 4 +- addons/base_report_designer/i18n/es_AR.po | 4 +- addons/base_report_designer/i18n/es_CR.po | 4 +- addons/base_report_designer/i18n/es_EC.po | 4 +- addons/base_report_designer/i18n/es_PY.po | 4 +- addons/base_report_designer/i18n/et.po | 4 +- addons/base_report_designer/i18n/fa.po | 4 +- addons/base_report_designer/i18n/fi.po | 4 +- addons/base_report_designer/i18n/fr.po | 4 +- addons/base_report_designer/i18n/gl.po | 4 +- addons/base_report_designer/i18n/hi.po | 4 +- addons/base_report_designer/i18n/hr.po | 4 +- addons/base_report_designer/i18n/hu.po | 4 +- addons/base_report_designer/i18n/id.po | 4 +- addons/base_report_designer/i18n/it.po | 4 +- addons/base_report_designer/i18n/ja.po | 4 +- addons/base_report_designer/i18n/ko.po | 4 +- addons/base_report_designer/i18n/lt.po | 4 +- addons/base_report_designer/i18n/mk.po | 4 +- addons/base_report_designer/i18n/mn.po | 4 +- addons/base_report_designer/i18n/nb.po | 4 +- addons/base_report_designer/i18n/nl.po | 4 +- addons/base_report_designer/i18n/nl_BE.po | 4 +- addons/base_report_designer/i18n/pl.po | 14 +- addons/base_report_designer/i18n/pt.po | 4 +- addons/base_report_designer/i18n/pt_BR.po | 4 +- addons/base_report_designer/i18n/ro.po | 6 +- addons/base_report_designer/i18n/ru.po | 4 +- addons/base_report_designer/i18n/sk.po | 4 +- addons/base_report_designer/i18n/sl.po | 2 +- addons/base_report_designer/i18n/sq.po | 4 +- addons/base_report_designer/i18n/sr.po | 4 +- addons/base_report_designer/i18n/sr@latin.po | 4 +- addons/base_report_designer/i18n/sv.po | 4 +- addons/base_report_designer/i18n/tlh.po | 4 +- addons/base_report_designer/i18n/tr.po | 4 +- addons/base_report_designer/i18n/uk.po | 4 +- addons/base_report_designer/i18n/vi.po | 4 +- addons/base_report_designer/i18n/zh_CN.po | 4 +- addons/base_report_designer/i18n/zh_TW.po | 4 +- addons/base_setup/i18n/ar.po | 4 +- addons/base_setup/i18n/bg.po | 4 +- addons/base_setup/i18n/bs.po | 4 +- addons/base_setup/i18n/ca.po | 4 +- addons/base_setup/i18n/cs.po | 4 +- addons/base_setup/i18n/da.po | 4 +- addons/base_setup/i18n/de.po | 4 +- addons/base_setup/i18n/el.po | 4 +- addons/base_setup/i18n/en_GB.po | 4 +- addons/base_setup/i18n/es.po | 4 +- addons/base_setup/i18n/es_AR.po | 4 +- addons/base_setup/i18n/es_CL.po | 4 +- addons/base_setup/i18n/es_CR.po | 4 +- addons/base_setup/i18n/es_EC.po | 4 +- addons/base_setup/i18n/es_MX.po | 4 +- addons/base_setup/i18n/es_PY.po | 4 +- addons/base_setup/i18n/et.po | 4 +- addons/base_setup/i18n/fa.po | 4 +- addons/base_setup/i18n/fi.po | 4 +- addons/base_setup/i18n/fr.po | 4 +- addons/base_setup/i18n/gl.po | 4 +- addons/base_setup/i18n/gu.po | 4 +- addons/base_setup/i18n/hr.po | 4 +- addons/base_setup/i18n/hu.po | 4 +- addons/base_setup/i18n/id.po | 4 +- addons/base_setup/i18n/it.po | 4 +- addons/base_setup/i18n/ja.po | 4 +- addons/base_setup/i18n/ko.po | 4 +- addons/base_setup/i18n/lt.po | 4 +- addons/base_setup/i18n/lv.po | 4 +- addons/base_setup/i18n/mk.po | 4 +- addons/base_setup/i18n/mn.po | 4 +- addons/base_setup/i18n/nb.po | 4 +- addons/base_setup/i18n/nl.po | 4 +- addons/base_setup/i18n/nl_BE.po | 4 +- addons/base_setup/i18n/pl.po | 68 ++-- addons/base_setup/i18n/pt.po | 4 +- addons/base_setup/i18n/pt_BR.po | 4 +- addons/base_setup/i18n/ro.po | 6 +- addons/base_setup/i18n/ru.po | 4 +- addons/base_setup/i18n/sk.po | 4 +- addons/base_setup/i18n/sl.po | 4 +- addons/base_setup/i18n/sq.po | 4 +- addons/base_setup/i18n/sr.po | 4 +- addons/base_setup/i18n/sr@latin.po | 4 +- addons/base_setup/i18n/sv.po | 4 +- addons/base_setup/i18n/th.po | 4 +- addons/base_setup/i18n/tlh.po | 4 +- addons/base_setup/i18n/tr.po | 4 +- addons/base_setup/i18n/uk.po | 4 +- addons/base_setup/i18n/vi.po | 4 +- addons/base_setup/i18n/zh_CN.po | 4 +- addons/base_setup/i18n/zh_TW.po | 4 +- addons/base_status/i18n/ar.po | 4 +- addons/base_status/i18n/bs.po | 4 +- addons/base_status/i18n/cs.po | 4 +- addons/base_status/i18n/da.po | 4 +- addons/base_status/i18n/de.po | 4 +- addons/base_status/i18n/en_GB.po | 4 +- addons/base_status/i18n/es.po | 4 +- addons/base_status/i18n/et.po | 4 +- addons/base_status/i18n/fi.po | 4 +- addons/base_status/i18n/fr.po | 4 +- addons/base_status/i18n/hr.po | 4 +- addons/base_status/i18n/hu.po | 4 +- addons/base_status/i18n/id.po | 4 +- addons/base_status/i18n/it.po | 4 +- addons/base_status/i18n/ja.po | 4 +- addons/base_status/i18n/lt.po | 4 +- addons/base_status/i18n/mk.po | 4 +- addons/base_status/i18n/mn.po | 4 +- addons/base_status/i18n/nl.po | 4 +- addons/base_status/i18n/nl_BE.po | 4 +- addons/base_status/i18n/pl.po | 4 +- addons/base_status/i18n/pt.po | 4 +- addons/base_status/i18n/pt_BR.po | 4 +- addons/base_status/i18n/ro.po | 6 +- addons/base_status/i18n/ru.po | 4 +- addons/base_status/i18n/sl.po | 4 +- addons/base_status/i18n/sv.po | 4 +- addons/base_status/i18n/tr.po | 4 +- addons/base_status/i18n/zh_CN.po | 4 +- addons/base_status/i18n/zh_TW.po | 4 +- addons/base_vat/i18n/ar.po | 4 +- addons/base_vat/i18n/bg.po | 4 +- addons/base_vat/i18n/bs.po | 4 +- addons/base_vat/i18n/ca.po | 4 +- addons/base_vat/i18n/cs.po | 4 +- addons/base_vat/i18n/da.po | 4 +- addons/base_vat/i18n/de.po | 4 +- addons/base_vat/i18n/el.po | 4 +- addons/base_vat/i18n/en_AU.po | 4 +- addons/base_vat/i18n/en_GB.po | 4 +- addons/base_vat/i18n/es.po | 4 +- addons/base_vat/i18n/es_AR.po | 4 +- addons/base_vat/i18n/es_CL.po | 4 +- addons/base_vat/i18n/es_CR.po | 4 +- addons/base_vat/i18n/es_EC.po | 4 +- addons/base_vat/i18n/es_MX.po | 4 +- addons/base_vat/i18n/es_PY.po | 4 +- addons/base_vat/i18n/et.po | 4 +- addons/base_vat/i18n/eu.po | 4 +- addons/base_vat/i18n/fa.po | 4 +- addons/base_vat/i18n/fi.po | 4 +- addons/base_vat/i18n/fr.po | 6 +- addons/base_vat/i18n/gl.po | 4 +- addons/base_vat/i18n/gu.po | 4 +- addons/base_vat/i18n/hr.po | 4 +- addons/base_vat/i18n/hu.po | 4 +- addons/base_vat/i18n/id.po | 4 +- addons/base_vat/i18n/it.po | 4 +- addons/base_vat/i18n/ja.po | 4 +- addons/base_vat/i18n/ko.po | 4 +- addons/base_vat/i18n/lt.po | 4 +- addons/base_vat/i18n/lv.po | 4 +- addons/base_vat/i18n/mk.po | 4 +- addons/base_vat/i18n/mn.po | 4 +- addons/base_vat/i18n/nb.po | 4 +- addons/base_vat/i18n/nl.po | 6 +- addons/base_vat/i18n/nl_BE.po | 4 +- addons/base_vat/i18n/oc.po | 4 +- addons/base_vat/i18n/pl.po | 2 +- addons/base_vat/i18n/pt.po | 4 +- addons/base_vat/i18n/pt_BR.po | 4 +- addons/base_vat/i18n/ro.po | 6 +- addons/base_vat/i18n/ru.po | 4 +- addons/base_vat/i18n/sk.po | 4 +- addons/base_vat/i18n/sl.po | 4 +- addons/base_vat/i18n/sq.po | 4 +- addons/base_vat/i18n/sr.po | 4 +- addons/base_vat/i18n/sr@latin.po | 4 +- addons/base_vat/i18n/sv.po | 4 +- addons/base_vat/i18n/th.po | 4 +- addons/base_vat/i18n/tlh.po | 4 +- addons/base_vat/i18n/tr.po | 4 +- addons/base_vat/i18n/uk.po | 4 +- addons/base_vat/i18n/vi.po | 4 +- addons/base_vat/i18n/zh_CN.po | 6 +- addons/base_vat/i18n/zh_TW.po | 4 +- addons/board/i18n/ar.po | 4 +- addons/board/i18n/bg.po | 4 +- addons/board/i18n/br.po | 4 +- addons/board/i18n/bs.po | 4 +- addons/board/i18n/ca.po | 4 +- addons/board/i18n/cs.po | 4 +- addons/board/i18n/da.po | 4 +- addons/board/i18n/de.po | 4 +- addons/board/i18n/el.po | 4 +- addons/board/i18n/en_GB.po | 4 +- addons/board/i18n/es.po | 4 +- addons/board/i18n/es_AR.po | 4 +- addons/board/i18n/es_CL.po | 4 +- addons/board/i18n/es_CR.po | 4 +- addons/board/i18n/es_EC.po | 4 +- addons/board/i18n/es_PY.po | 4 +- addons/board/i18n/et.po | 4 +- addons/board/i18n/fa.po | 4 +- addons/board/i18n/fi.po | 4 +- addons/board/i18n/fr.po | 4 +- addons/board/i18n/gl.po | 4 +- addons/board/i18n/gu.po | 4 +- addons/board/i18n/hr.po | 4 +- addons/board/i18n/hu.po | 4 +- addons/board/i18n/id.po | 4 +- addons/board/i18n/it.po | 4 +- addons/board/i18n/ja.po | 10 +- addons/board/i18n/ko.po | 4 +- addons/board/i18n/ln.po | 4 +- addons/board/i18n/lt.po | 4 +- addons/board/i18n/lv.po | 4 +- addons/board/i18n/mk.po | 4 +- addons/board/i18n/mn.po | 4 +- addons/board/i18n/nb.po | 4 +- addons/board/i18n/nl.po | 4 +- addons/board/i18n/nl_BE.po | 4 +- addons/board/i18n/pl.po | 4 +- addons/board/i18n/pt.po | 4 +- addons/board/i18n/pt_BR.po | 4 +- addons/board/i18n/ro.po | 6 +- addons/board/i18n/ru.po | 4 +- addons/board/i18n/sk.po | 4 +- addons/board/i18n/sl.po | 4 +- addons/board/i18n/sq.po | 4 +- addons/board/i18n/sr.po | 4 +- addons/board/i18n/sr@latin.po | 4 +- addons/board/i18n/sv.po | 4 +- addons/board/i18n/th.po | 4 +- addons/board/i18n/tlh.po | 4 +- addons/board/i18n/tr.po | 4 +- addons/board/i18n/uk.po | 4 +- addons/board/i18n/vi.po | 4 +- addons/board/i18n/zh_CN.po | 4 +- addons/board/i18n/zh_TW.po | 4 +- addons/claim_from_delivery/i18n/ar.po | 4 +- addons/claim_from_delivery/i18n/bg.po | 4 +- addons/claim_from_delivery/i18n/bs.po | 4 +- addons/claim_from_delivery/i18n/ca.po | 4 +- addons/claim_from_delivery/i18n/cs.po | 4 +- addons/claim_from_delivery/i18n/da.po | 4 +- addons/claim_from_delivery/i18n/de.po | 4 +- addons/claim_from_delivery/i18n/en_GB.po | 4 +- addons/claim_from_delivery/i18n/es.po | 4 +- addons/claim_from_delivery/i18n/es_AR.po | 4 +- addons/claim_from_delivery/i18n/es_CL.po | 4 +- addons/claim_from_delivery/i18n/es_CR.po | 4 +- addons/claim_from_delivery/i18n/es_EC.po | 4 +- addons/claim_from_delivery/i18n/es_PY.po | 4 +- addons/claim_from_delivery/i18n/et.po | 4 +- addons/claim_from_delivery/i18n/fa.po | 4 +- addons/claim_from_delivery/i18n/fi.po | 4 +- addons/claim_from_delivery/i18n/fr.po | 4 +- addons/claim_from_delivery/i18n/gl.po | 4 +- addons/claim_from_delivery/i18n/gu.po | 4 +- addons/claim_from_delivery/i18n/hr.po | 4 +- addons/claim_from_delivery/i18n/hu.po | 4 +- addons/claim_from_delivery/i18n/id.po | 4 +- addons/claim_from_delivery/i18n/it.po | 4 +- addons/claim_from_delivery/i18n/ja.po | 4 +- addons/claim_from_delivery/i18n/lo.po | 4 +- addons/claim_from_delivery/i18n/lt.po | 4 +- addons/claim_from_delivery/i18n/mk.po | 4 +- addons/claim_from_delivery/i18n/mn.po | 4 +- addons/claim_from_delivery/i18n/nb.po | 4 +- addons/claim_from_delivery/i18n/nl.po | 4 +- addons/claim_from_delivery/i18n/nl_BE.po | 4 +- addons/claim_from_delivery/i18n/oc.po | 4 +- addons/claim_from_delivery/i18n/pl.po | 4 +- addons/claim_from_delivery/i18n/pt.po | 4 +- addons/claim_from_delivery/i18n/pt_BR.po | 4 +- addons/claim_from_delivery/i18n/ro.po | 6 +- addons/claim_from_delivery/i18n/ru.po | 4 +- addons/claim_from_delivery/i18n/sl.po | 4 +- addons/claim_from_delivery/i18n/sq.po | 4 +- addons/claim_from_delivery/i18n/sr.po | 4 +- addons/claim_from_delivery/i18n/sr@latin.po | 4 +- addons/claim_from_delivery/i18n/sv.po | 4 +- addons/claim_from_delivery/i18n/ta.po | 4 +- addons/claim_from_delivery/i18n/tr.po | 4 +- addons/claim_from_delivery/i18n/vi.po | 4 +- addons/claim_from_delivery/i18n/zh_CN.po | 4 +- addons/claim_from_delivery/i18n/zh_TW.po | 4 +- addons/contacts/i18n/ar.po | 4 +- addons/contacts/i18n/bs.po | 4 +- addons/contacts/i18n/cs.po | 4 +- addons/contacts/i18n/da.po | 4 +- addons/contacts/i18n/de.po | 4 +- addons/contacts/i18n/en_GB.po | 4 +- addons/contacts/i18n/es.po | 4 +- addons/contacts/i18n/es_CO.po | 4 +- addons/contacts/i18n/et.po | 4 +- addons/contacts/i18n/fi.po | 4 +- addons/contacts/i18n/fr.po | 4 +- addons/contacts/i18n/hr.po | 4 +- addons/contacts/i18n/hu.po | 4 +- addons/contacts/i18n/it.po | 4 +- addons/contacts/i18n/ja.po | 4 +- addons/contacts/i18n/ko.po | 4 +- addons/contacts/i18n/lt.po | 4 +- addons/contacts/i18n/lv.po | 4 +- addons/contacts/i18n/mk.po | 4 +- addons/contacts/i18n/mn.po | 4 +- addons/contacts/i18n/nl.po | 2 +- addons/contacts/i18n/nl_BE.po | 4 +- addons/contacts/i18n/pl.po | 4 +- addons/contacts/i18n/pt.po | 4 +- addons/contacts/i18n/pt_BR.po | 4 +- addons/contacts/i18n/ro.po | 4 +- addons/contacts/i18n/ru.po | 4 +- addons/contacts/i18n/sl.po | 4 +- addons/contacts/i18n/sv.po | 4 +- addons/contacts/i18n/th.po | 4 +- addons/contacts/i18n/tr.po | 4 +- addons/contacts/i18n/vi.po | 4 +- addons/contacts/i18n/zh_CN.po | 4 +- addons/contacts/i18n/zh_TW.po | 4 +- addons/crm/i18n/ar.po | 4 +- addons/crm/i18n/bg.po | 4 +- addons/crm/i18n/bs.po | 4 +- addons/crm/i18n/ca.po | 4 +- addons/crm/i18n/cs.po | 4 +- addons/crm/i18n/da.po | 4 +- addons/crm/i18n/de.po | 4 +- addons/crm/i18n/el.po | 4 +- addons/crm/i18n/es.po | 4 +- addons/crm/i18n/es_AR.po | 298 +++++++++++------- addons/crm/i18n/es_CR.po | 4 +- addons/crm/i18n/es_EC.po | 4 +- addons/crm/i18n/es_MX.po | 4 +- addons/crm/i18n/es_PY.po | 4 +- addons/crm/i18n/et.po | 4 +- addons/crm/i18n/fi.po | 2 +- addons/crm/i18n/fr.po | 4 +- addons/crm/i18n/gl.po | 4 +- addons/crm/i18n/gu.po | 4 +- addons/crm/i18n/hr.po | 4 +- addons/crm/i18n/hu.po | 4 +- addons/crm/i18n/id.po | 4 +- addons/crm/i18n/it.po | 4 +- addons/crm/i18n/ja.po | 4 +- addons/crm/i18n/ko.po | 4 +- addons/crm/i18n/lo.po | 4 +- addons/crm/i18n/lt.po | 4 +- addons/crm/i18n/lv.po | 4 +- addons/crm/i18n/mk.po | 4 +- addons/crm/i18n/mn.po | 4 +- addons/crm/i18n/nb.po | 4 +- addons/crm/i18n/nl.po | 4 +- addons/crm/i18n/nl_BE.po | 4 +- addons/crm/i18n/pl.po | 4 +- addons/crm/i18n/pt.po | 4 +- addons/crm/i18n/pt_BR.po | 6 +- addons/crm/i18n/ro.po | 6 +- addons/crm/i18n/ru.po | 4 +- addons/crm/i18n/sk.po | 4 +- addons/crm/i18n/sl.po | 13 +- addons/crm/i18n/sq.po | 4 +- addons/crm/i18n/sr.po | 4 +- addons/crm/i18n/sr@latin.po | 4 +- addons/crm/i18n/sv.po | 4 +- addons/crm/i18n/th.po | 4 +- addons/crm/i18n/tlh.po | 4 +- addons/crm/i18n/tr.po | 4 +- addons/crm/i18n/uk.po | 4 +- addons/crm/i18n/vi.po | 4 +- addons/crm/i18n/zh_CN.po | 4 +- addons/crm/i18n/zh_TW.po | 4 +- addons/crm_claim/i18n/ar.po | 4 +- addons/crm_claim/i18n/bg.po | 4 +- addons/crm_claim/i18n/bs.po | 4 +- addons/crm_claim/i18n/ca.po | 4 +- addons/crm_claim/i18n/cs.po | 4 +- addons/crm_claim/i18n/da.po | 4 +- addons/crm_claim/i18n/de.po | 4 +- addons/crm_claim/i18n/el.po | 4 +- addons/crm_claim/i18n/es.po | 4 +- addons/crm_claim/i18n/es_CR.po | 4 +- addons/crm_claim/i18n/es_EC.po | 4 +- addons/crm_claim/i18n/es_PY.po | 4 +- addons/crm_claim/i18n/fi.po | 2 +- addons/crm_claim/i18n/fr.po | 4 +- addons/crm_claim/i18n/gl.po | 4 +- addons/crm_claim/i18n/gu.po | 4 +- addons/crm_claim/i18n/hr.po | 4 +- addons/crm_claim/i18n/hu.po | 4 +- addons/crm_claim/i18n/it.po | 4 +- addons/crm_claim/i18n/ja.po | 4 +- addons/crm_claim/i18n/ko.po | 4 +- addons/crm_claim/i18n/lt.po | 4 +- addons/crm_claim/i18n/mk.po | 4 +- addons/crm_claim/i18n/mn.po | 4 +- addons/crm_claim/i18n/nb.po | 4 +- addons/crm_claim/i18n/nl.po | 6 +- addons/crm_claim/i18n/pl.po | 4 +- addons/crm_claim/i18n/pt.po | 4 +- addons/crm_claim/i18n/pt_BR.po | 6 +- addons/crm_claim/i18n/ro.po | 6 +- addons/crm_claim/i18n/ru.po | 4 +- addons/crm_claim/i18n/sl.po | 4 +- addons/crm_claim/i18n/sq.po | 4 +- addons/crm_claim/i18n/sr.po | 4 +- addons/crm_claim/i18n/sr@latin.po | 4 +- addons/crm_claim/i18n/sv.po | 4 +- addons/crm_claim/i18n/tr.po | 4 +- addons/crm_claim/i18n/zh_CN.po | 21 +- addons/crm_claim/i18n/zh_TW.po | 4 +- addons/crm_helpdesk/i18n/ar.po | 4 +- addons/crm_helpdesk/i18n/bg.po | 4 +- addons/crm_helpdesk/i18n/bs.po | 4 +- addons/crm_helpdesk/i18n/ca.po | 4 +- addons/crm_helpdesk/i18n/cs.po | 4 +- addons/crm_helpdesk/i18n/da.po | 4 +- addons/crm_helpdesk/i18n/de.po | 4 +- addons/crm_helpdesk/i18n/el.po | 4 +- addons/crm_helpdesk/i18n/es.po | 4 +- addons/crm_helpdesk/i18n/es_CR.po | 4 +- addons/crm_helpdesk/i18n/es_PY.po | 4 +- addons/crm_helpdesk/i18n/fi.po | 4 +- addons/crm_helpdesk/i18n/fr.po | 4 +- addons/crm_helpdesk/i18n/gl.po | 4 +- addons/crm_helpdesk/i18n/gu.po | 4 +- addons/crm_helpdesk/i18n/hr.po | 4 +- addons/crm_helpdesk/i18n/hu.po | 4 +- addons/crm_helpdesk/i18n/it.po | 4 +- addons/crm_helpdesk/i18n/ja.po | 4 +- addons/crm_helpdesk/i18n/ko.po | 4 +- addons/crm_helpdesk/i18n/lt.po | 4 +- addons/crm_helpdesk/i18n/lv.po | 4 +- addons/crm_helpdesk/i18n/mk.po | 4 +- addons/crm_helpdesk/i18n/mn.po | 4 +- addons/crm_helpdesk/i18n/nb.po | 4 +- addons/crm_helpdesk/i18n/nl.po | 6 +- addons/crm_helpdesk/i18n/pl.po | 4 +- addons/crm_helpdesk/i18n/pt.po | 4 +- addons/crm_helpdesk/i18n/pt_BR.po | 4 +- addons/crm_helpdesk/i18n/ro.po | 6 +- addons/crm_helpdesk/i18n/ru.po | 4 +- addons/crm_helpdesk/i18n/sl.po | 4 +- addons/crm_helpdesk/i18n/sq.po | 4 +- addons/crm_helpdesk/i18n/sr.po | 4 +- addons/crm_helpdesk/i18n/sr@latin.po | 4 +- addons/crm_helpdesk/i18n/sv.po | 4 +- addons/crm_helpdesk/i18n/tr.po | 4 +- addons/crm_helpdesk/i18n/zh_CN.po | 15 +- addons/crm_helpdesk/i18n/zh_TW.po | 4 +- addons/crm_partner_assign/i18n/ar.po | 4 +- addons/crm_partner_assign/i18n/bg.po | 4 +- addons/crm_partner_assign/i18n/bs.po | 4 +- addons/crm_partner_assign/i18n/ca.po | 4 +- addons/crm_partner_assign/i18n/cs.po | 4 +- addons/crm_partner_assign/i18n/da.po | 4 +- addons/crm_partner_assign/i18n/de.po | 4 +- addons/crm_partner_assign/i18n/el.po | 4 +- addons/crm_partner_assign/i18n/es.po | 4 +- addons/crm_partner_assign/i18n/es_CR.po | 4 +- addons/crm_partner_assign/i18n/es_PY.po | 4 +- addons/crm_partner_assign/i18n/fi.po | 4 +- addons/crm_partner_assign/i18n/fr.po | 4 +- addons/crm_partner_assign/i18n/gl.po | 4 +- addons/crm_partner_assign/i18n/hr.po | 4 +- addons/crm_partner_assign/i18n/hu.po | 4 +- addons/crm_partner_assign/i18n/it.po | 4 +- addons/crm_partner_assign/i18n/ja.po | 4 +- addons/crm_partner_assign/i18n/ko.po | 4 +- addons/crm_partner_assign/i18n/lt.po | 4 +- addons/crm_partner_assign/i18n/lv.po | 4 +- addons/crm_partner_assign/i18n/mk.po | 4 +- addons/crm_partner_assign/i18n/mn.po | 4 +- addons/crm_partner_assign/i18n/nb.po | 4 +- addons/crm_partner_assign/i18n/nl.po | 6 +- addons/crm_partner_assign/i18n/pl.po | 4 +- addons/crm_partner_assign/i18n/pt.po | 4 +- addons/crm_partner_assign/i18n/pt_BR.po | 4 +- addons/crm_partner_assign/i18n/ro.po | 6 +- addons/crm_partner_assign/i18n/ru.po | 4 +- addons/crm_partner_assign/i18n/sl.po | 4 +- addons/crm_partner_assign/i18n/sq.po | 4 +- addons/crm_partner_assign/i18n/sr@latin.po | 4 +- addons/crm_partner_assign/i18n/sv.po | 4 +- addons/crm_partner_assign/i18n/tr.po | 4 +- addons/crm_partner_assign/i18n/zh_CN.po | 92 +++--- addons/crm_partner_assign/i18n/zh_TW.po | 4 +- addons/crm_profiling/i18n/ar.po | 4 +- addons/crm_profiling/i18n/bg.po | 4 +- addons/crm_profiling/i18n/bs.po | 4 +- addons/crm_profiling/i18n/ca.po | 4 +- addons/crm_profiling/i18n/cs.po | 4 +- addons/crm_profiling/i18n/da.po | 4 +- addons/crm_profiling/i18n/de.po | 4 +- addons/crm_profiling/i18n/el.po | 4 +- addons/crm_profiling/i18n/en_GB.po | 4 +- addons/crm_profiling/i18n/es.po | 4 +- addons/crm_profiling/i18n/es_AR.po | 4 +- addons/crm_profiling/i18n/es_CR.po | 4 +- addons/crm_profiling/i18n/es_EC.po | 4 +- addons/crm_profiling/i18n/es_PY.po | 4 +- addons/crm_profiling/i18n/et.po | 4 +- addons/crm_profiling/i18n/fi.po | 4 +- addons/crm_profiling/i18n/fr.po | 4 +- addons/crm_profiling/i18n/gl.po | 4 +- addons/crm_profiling/i18n/gu.po | 4 +- addons/crm_profiling/i18n/hr.po | 4 +- addons/crm_profiling/i18n/hu.po | 4 +- addons/crm_profiling/i18n/id.po | 4 +- addons/crm_profiling/i18n/it.po | 4 +- addons/crm_profiling/i18n/ja.po | 4 +- addons/crm_profiling/i18n/ko.po | 4 +- addons/crm_profiling/i18n/lt.po | 4 +- addons/crm_profiling/i18n/lv.po | 4 +- addons/crm_profiling/i18n/mk.po | 4 +- addons/crm_profiling/i18n/mn.po | 4 +- addons/crm_profiling/i18n/nb.po | 4 +- addons/crm_profiling/i18n/nl.po | 4 +- addons/crm_profiling/i18n/nl_BE.po | 4 +- addons/crm_profiling/i18n/pl.po | 4 +- addons/crm_profiling/i18n/pt.po | 4 +- addons/crm_profiling/i18n/pt_BR.po | 4 +- addons/crm_profiling/i18n/ro.po | 6 +- addons/crm_profiling/i18n/ru.po | 4 +- addons/crm_profiling/i18n/sk.po | 4 +- addons/crm_profiling/i18n/sl.po | 4 +- addons/crm_profiling/i18n/sq.po | 4 +- addons/crm_profiling/i18n/sr.po | 4 +- addons/crm_profiling/i18n/sr@latin.po | 4 +- addons/crm_profiling/i18n/sv.po | 4 +- addons/crm_profiling/i18n/tlh.po | 4 +- addons/crm_profiling/i18n/tr.po | 4 +- addons/crm_profiling/i18n/uk.po | 4 +- addons/crm_profiling/i18n/vi.po | 4 +- addons/crm_profiling/i18n/zh_CN.po | 4 +- addons/crm_profiling/i18n/zh_TW.po | 4 +- addons/crm_todo/i18n/ar.po | 4 +- addons/crm_todo/i18n/bs.po | 4 +- addons/crm_todo/i18n/cs.po | 4 +- addons/crm_todo/i18n/da.po | 4 +- addons/crm_todo/i18n/de.po | 4 +- addons/crm_todo/i18n/en_GB.po | 4 +- addons/crm_todo/i18n/es.po | 4 +- addons/crm_todo/i18n/es_CR.po | 4 +- addons/crm_todo/i18n/et.po | 4 +- addons/crm_todo/i18n/fi.po | 4 +- addons/crm_todo/i18n/fr.po | 4 +- addons/crm_todo/i18n/gu.po | 4 +- addons/crm_todo/i18n/hr.po | 4 +- addons/crm_todo/i18n/hu.po | 4 +- addons/crm_todo/i18n/it.po | 4 +- addons/crm_todo/i18n/ja.po | 4 +- addons/crm_todo/i18n/ko.po | 4 +- addons/crm_todo/i18n/lt.po | 4 +- addons/crm_todo/i18n/mk.po | 4 +- addons/crm_todo/i18n/mn.po | 4 +- addons/crm_todo/i18n/nb.po | 4 +- addons/crm_todo/i18n/nl.po | 4 +- addons/crm_todo/i18n/pl.po | 4 +- addons/crm_todo/i18n/pt.po | 4 +- addons/crm_todo/i18n/pt_BR.po | 4 +- addons/crm_todo/i18n/ro.po | 6 +- addons/crm_todo/i18n/ru.po | 4 +- addons/crm_todo/i18n/sl.po | 4 +- addons/crm_todo/i18n/sr@latin.po | 4 +- addons/crm_todo/i18n/sv.po | 4 +- addons/crm_todo/i18n/tr.po | 4 +- addons/crm_todo/i18n/zh_CN.po | 4 +- addons/crm_todo/i18n/zh_TW.po | 4 +- addons/decimal_precision/i18n/ar.po | 4 +- addons/decimal_precision/i18n/bg.po | 4 +- addons/decimal_precision/i18n/bs.po | 4 +- addons/decimal_precision/i18n/ca.po | 4 +- addons/decimal_precision/i18n/cs.po | 4 +- addons/decimal_precision/i18n/da.po | 4 +- addons/decimal_precision/i18n/de.po | 4 +- addons/decimal_precision/i18n/el.po | 4 +- addons/decimal_precision/i18n/en_GB.po | 4 +- addons/decimal_precision/i18n/es.po | 4 +- addons/decimal_precision/i18n/es_CR.po | 4 +- addons/decimal_precision/i18n/es_EC.po | 4 +- addons/decimal_precision/i18n/es_MX.po | 4 +- addons/decimal_precision/i18n/es_PY.po | 4 +- addons/decimal_precision/i18n/fi.po | 4 +- addons/decimal_precision/i18n/fr.po | 4 +- addons/decimal_precision/i18n/gl.po | 4 +- addons/decimal_precision/i18n/gu.po | 4 +- addons/decimal_precision/i18n/hr.po | 4 +- addons/decimal_precision/i18n/hu.po | 4 +- addons/decimal_precision/i18n/id.po | 4 +- addons/decimal_precision/i18n/it.po | 4 +- addons/decimal_precision/i18n/ja.po | 4 +- addons/decimal_precision/i18n/ko.po | 4 +- addons/decimal_precision/i18n/lt.po | 4 +- addons/decimal_precision/i18n/lv.po | 4 +- addons/decimal_precision/i18n/mk.po | 4 +- addons/decimal_precision/i18n/mn.po | 4 +- addons/decimal_precision/i18n/nb.po | 4 +- addons/decimal_precision/i18n/nl.po | 4 +- addons/decimal_precision/i18n/nl_BE.po | 4 +- addons/decimal_precision/i18n/pl.po | 2 +- addons/decimal_precision/i18n/pt.po | 4 +- addons/decimal_precision/i18n/pt_BR.po | 4 +- addons/decimal_precision/i18n/ro.po | 6 +- addons/decimal_precision/i18n/ru.po | 4 +- addons/decimal_precision/i18n/sk.po | 4 +- addons/decimal_precision/i18n/sl.po | 4 +- addons/decimal_precision/i18n/sr.po | 4 +- addons/decimal_precision/i18n/sr@latin.po | 4 +- addons/decimal_precision/i18n/sv.po | 4 +- addons/decimal_precision/i18n/tr.po | 4 +- addons/decimal_precision/i18n/vi.po | 4 +- addons/decimal_precision/i18n/zh_CN.po | 4 +- addons/decimal_precision/i18n/zh_TW.po | 4 +- addons/delivery/i18n/ar.po | 4 +- addons/delivery/i18n/bg.po | 4 +- addons/delivery/i18n/bs.po | 4 +- addons/delivery/i18n/ca.po | 4 +- addons/delivery/i18n/cs.po | 4 +- addons/delivery/i18n/da.po | 4 +- addons/delivery/i18n/de.po | 4 +- addons/delivery/i18n/el.po | 4 +- addons/delivery/i18n/es.po | 4 +- addons/delivery/i18n/es_AR.po | 4 +- addons/delivery/i18n/es_CR.po | 4 +- addons/delivery/i18n/es_EC.po | 4 +- addons/delivery/i18n/es_MX.po | 4 +- addons/delivery/i18n/es_PY.po | 4 +- addons/delivery/i18n/et.po | 4 +- addons/delivery/i18n/fi.po | 2 +- addons/delivery/i18n/fr.po | 4 +- addons/delivery/i18n/gl.po | 4 +- addons/delivery/i18n/hi.po | 4 +- addons/delivery/i18n/hr.po | 2 +- addons/delivery/i18n/hu.po | 4 +- addons/delivery/i18n/id.po | 4 +- addons/delivery/i18n/it.po | 4 +- addons/delivery/i18n/ja.po | 4 +- addons/delivery/i18n/ko.po | 4 +- addons/delivery/i18n/lt.po | 4 +- addons/delivery/i18n/lv.po | 4 +- addons/delivery/i18n/mk.po | 4 +- addons/delivery/i18n/mn.po | 4 +- addons/delivery/i18n/nb.po | 4 +- addons/delivery/i18n/nl.po | 6 +- addons/delivery/i18n/nl_BE.po | 4 +- addons/delivery/i18n/pl.po | 2 +- addons/delivery/i18n/pt.po | 4 +- addons/delivery/i18n/pt_BR.po | 4 +- addons/delivery/i18n/ro.po | 6 +- addons/delivery/i18n/ru.po | 4 +- addons/delivery/i18n/sl.po | 4 +- addons/delivery/i18n/sq.po | 4 +- addons/delivery/i18n/sr.po | 4 +- addons/delivery/i18n/sr@latin.po | 4 +- addons/delivery/i18n/sv.po | 4 +- addons/delivery/i18n/th.po | 4 +- addons/delivery/i18n/tlh.po | 4 +- addons/delivery/i18n/tr.po | 4 +- addons/delivery/i18n/uk.po | 4 +- addons/delivery/i18n/vi.po | 4 +- addons/delivery/i18n/zh_CN.po | 4 +- addons/delivery/i18n/zh_TW.po | 4 +- addons/document/i18n/ar.po | 4 +- addons/document/i18n/bg.po | 4 +- addons/document/i18n/bs.po | 4 +- addons/document/i18n/ca.po | 4 +- addons/document/i18n/cs.po | 4 +- addons/document/i18n/da.po | 4 +- addons/document/i18n/de.po | 4 +- addons/document/i18n/el.po | 4 +- addons/document/i18n/es.po | 4 +- addons/document/i18n/es_AR.po | 4 +- addons/document/i18n/es_CR.po | 4 +- addons/document/i18n/es_EC.po | 4 +- addons/document/i18n/es_PY.po | 4 +- addons/document/i18n/et.po | 4 +- addons/document/i18n/fi.po | 2 +- addons/document/i18n/fr.po | 4 +- addons/document/i18n/gl.po | 4 +- addons/document/i18n/gu.po | 4 +- addons/document/i18n/hi.po | 4 +- addons/document/i18n/hr.po | 4 +- addons/document/i18n/hu.po | 4 +- addons/document/i18n/id.po | 4 +- addons/document/i18n/it.po | 4 +- addons/document/i18n/ja.po | 4 +- addons/document/i18n/ko.po | 4 +- addons/document/i18n/lt.po | 4 +- addons/document/i18n/lv.po | 4 +- addons/document/i18n/mk.po | 4 +- addons/document/i18n/mn.po | 4 +- addons/document/i18n/nb.po | 4 +- addons/document/i18n/nl.po | 6 +- addons/document/i18n/nl_BE.po | 4 +- addons/document/i18n/pl.po | 2 +- addons/document/i18n/pt.po | 4 +- addons/document/i18n/pt_BR.po | 4 +- addons/document/i18n/ro.po | 6 +- addons/document/i18n/ru.po | 4 +- addons/document/i18n/sk.po | 4 +- addons/document/i18n/sl.po | 4 +- addons/document/i18n/sq.po | 4 +- addons/document/i18n/sr.po | 4 +- addons/document/i18n/sr@latin.po | 4 +- addons/document/i18n/sv.po | 4 +- addons/document/i18n/tlh.po | 4 +- addons/document/i18n/tr.po | 4 +- addons/document/i18n/uk.po | 4 +- addons/document/i18n/vi.po | 4 +- addons/document/i18n/zh_CN.po | 6 +- addons/document/i18n/zh_HK.po | 4 +- addons/document/i18n/zh_TW.po | 4 +- addons/document_ftp/i18n/ar.po | 4 +- addons/document_ftp/i18n/bg.po | 4 +- addons/document_ftp/i18n/ca.po | 4 +- addons/document_ftp/i18n/cs.po | 4 +- addons/document_ftp/i18n/da.po | 4 +- addons/document_ftp/i18n/de.po | 4 +- addons/document_ftp/i18n/el.po | 4 +- addons/document_ftp/i18n/en_GB.po | 4 +- addons/document_ftp/i18n/es.po | 4 +- addons/document_ftp/i18n/es_CR.po | 4 +- addons/document_ftp/i18n/es_EC.po | 4 +- addons/document_ftp/i18n/es_PY.po | 4 +- addons/document_ftp/i18n/et.po | 4 +- addons/document_ftp/i18n/fi.po | 4 +- addons/document_ftp/i18n/fr.po | 4 +- addons/document_ftp/i18n/gl.po | 4 +- addons/document_ftp/i18n/hr.po | 4 +- addons/document_ftp/i18n/hu.po | 4 +- addons/document_ftp/i18n/it.po | 4 +- addons/document_ftp/i18n/ja.po | 4 +- addons/document_ftp/i18n/mk.po | 4 +- addons/document_ftp/i18n/mn.po | 4 +- addons/document_ftp/i18n/nb.po | 4 +- addons/document_ftp/i18n/nl.po | 4 +- addons/document_ftp/i18n/pl.po | 6 +- addons/document_ftp/i18n/pt.po | 4 +- addons/document_ftp/i18n/pt_BR.po | 4 +- addons/document_ftp/i18n/ro.po | 6 +- addons/document_ftp/i18n/ru.po | 4 +- addons/document_ftp/i18n/sk.po | 4 +- addons/document_ftp/i18n/sl.po | 4 +- addons/document_ftp/i18n/sr.po | 4 +- addons/document_ftp/i18n/sr@latin.po | 4 +- addons/document_ftp/i18n/sv.po | 4 +- addons/document_ftp/i18n/tr.po | 4 +- addons/document_ftp/i18n/vi.po | 4 +- addons/document_ftp/i18n/zh_CN.po | 6 +- addons/document_ftp/i18n/zh_TW.po | 4 +- addons/document_page/i18n/ar.po | 4 +- addons/document_page/i18n/bg.po | 4 +- addons/document_page/i18n/bs.po | 4 +- addons/document_page/i18n/ca.po | 4 +- addons/document_page/i18n/cs.po | 4 +- addons/document_page/i18n/da.po | 4 +- addons/document_page/i18n/de.po | 4 +- addons/document_page/i18n/el.po | 4 +- addons/document_page/i18n/es.po | 4 +- addons/document_page/i18n/et.po | 4 +- addons/document_page/i18n/fi.po | 2 +- addons/document_page/i18n/fr.po | 4 +- addons/document_page/i18n/gl.po | 4 +- addons/document_page/i18n/hr.po | 4 +- addons/document_page/i18n/hu.po | 4 +- addons/document_page/i18n/id.po | 4 +- addons/document_page/i18n/it.po | 4 +- addons/document_page/i18n/ja.po | 4 +- addons/document_page/i18n/ko.po | 4 +- addons/document_page/i18n/lt.po | 4 +- addons/document_page/i18n/lv.po | 4 +- addons/document_page/i18n/mk.po | 4 +- addons/document_page/i18n/mn.po | 4 +- addons/document_page/i18n/nb.po | 4 +- addons/document_page/i18n/nl.po | 6 +- addons/document_page/i18n/pl.po | 4 +- addons/document_page/i18n/pt.po | 4 +- addons/document_page/i18n/pt_BR.po | 6 +- addons/document_page/i18n/ro.po | 6 +- addons/document_page/i18n/ru.po | 4 +- addons/document_page/i18n/sk.po | 4 +- addons/document_page/i18n/sl.po | 4 +- addons/document_page/i18n/sq.po | 4 +- addons/document_page/i18n/sr.po | 4 +- addons/document_page/i18n/sr@latin.po | 4 +- addons/document_page/i18n/sv.po | 4 +- addons/document_page/i18n/tlh.po | 4 +- addons/document_page/i18n/tr.po | 4 +- addons/document_page/i18n/uk.po | 4 +- addons/document_page/i18n/vi.po | 4 +- addons/document_page/i18n/zh_CN.po | 4 +- addons/document_page/i18n/zh_TW.po | 4 +- addons/document_webdav/i18n/ar.po | 4 +- addons/document_webdav/i18n/bg.po | 4 +- addons/document_webdav/i18n/ca.po | 4 +- addons/document_webdav/i18n/cs.po | 4 +- addons/document_webdav/i18n/da.po | 4 +- addons/document_webdav/i18n/de.po | 4 +- addons/document_webdav/i18n/el.po | 4 +- addons/document_webdav/i18n/en_GB.po | 4 +- addons/document_webdav/i18n/es.po | 4 +- addons/document_webdav/i18n/es_CR.po | 4 +- addons/document_webdav/i18n/es_EC.po | 4 +- addons/document_webdav/i18n/es_PY.po | 4 +- addons/document_webdav/i18n/et.po | 4 +- addons/document_webdav/i18n/eu.po | 4 +- addons/document_webdav/i18n/fi.po | 4 +- addons/document_webdav/i18n/fr.po | 4 +- addons/document_webdav/i18n/gl.po | 4 +- addons/document_webdav/i18n/gu.po | 4 +- addons/document_webdav/i18n/hr.po | 4 +- addons/document_webdav/i18n/hu.po | 4 +- addons/document_webdav/i18n/id.po | 4 +- addons/document_webdav/i18n/it.po | 4 +- addons/document_webdav/i18n/ja.po | 4 +- addons/document_webdav/i18n/mk.po | 4 +- addons/document_webdav/i18n/mn.po | 4 +- addons/document_webdav/i18n/nb.po | 4 +- addons/document_webdav/i18n/nl.po | 6 +- addons/document_webdav/i18n/pl.po | 4 +- addons/document_webdav/i18n/pt.po | 4 +- addons/document_webdav/i18n/pt_BR.po | 4 +- addons/document_webdav/i18n/ro.po | 6 +- addons/document_webdav/i18n/ru.po | 4 +- addons/document_webdav/i18n/sl.po | 4 +- addons/document_webdav/i18n/sr.po | 4 +- addons/document_webdav/i18n/sr@latin.po | 4 +- addons/document_webdav/i18n/sv.po | 4 +- addons/document_webdav/i18n/tr.po | 4 +- addons/document_webdav/i18n/zh_CN.po | 4 +- addons/document_webdav/i18n/zh_TW.po | 4 +- addons/edi/i18n/ar.po | 4 +- addons/edi/i18n/cs.po | 4 +- addons/edi/i18n/de.po | 4 +- addons/edi/i18n/en_GB.po | 4 +- addons/edi/i18n/es.po | 4 +- addons/edi/i18n/es_CR.po | 4 +- addons/edi/i18n/fi.po | 4 +- addons/edi/i18n/fr.po | 4 +- addons/edi/i18n/hr.po | 4 +- addons/edi/i18n/hu.po | 4 +- addons/edi/i18n/is.po | 4 +- addons/edi/i18n/it.po | 4 +- addons/edi/i18n/ja.po | 4 +- addons/edi/i18n/lt.po | 4 +- addons/edi/i18n/mk.po | 4 +- addons/edi/i18n/ml.po | 4 +- addons/edi/i18n/mn.po | 4 +- addons/edi/i18n/nb.po | 4 +- addons/edi/i18n/nl.po | 4 +- addons/edi/i18n/nl_BE.po | 4 +- addons/edi/i18n/pl.po | 4 +- addons/edi/i18n/pt.po | 4 +- addons/edi/i18n/pt_BR.po | 4 +- addons/edi/i18n/ro.po | 6 +- addons/edi/i18n/ru.po | 4 +- addons/edi/i18n/sl.po | 4 +- addons/edi/i18n/sv.po | 4 +- addons/edi/i18n/tr.po | 4 +- addons/edi/i18n/zh_CN.po | 4 +- addons/edi/i18n/zh_TW.po | 4 +- addons/email_template/i18n/ar.po | 4 +- addons/email_template/i18n/bg.po | 4 +- addons/email_template/i18n/ca.po | 4 +- addons/email_template/i18n/cs.po | 4 +- addons/email_template/i18n/da.po | 4 +- addons/email_template/i18n/de.po | 4 +- addons/email_template/i18n/en_GB.po | 4 +- addons/email_template/i18n/es.po | 4 +- addons/email_template/i18n/es_CL.po | 4 +- addons/email_template/i18n/es_CR.po | 4 +- addons/email_template/i18n/es_EC.po | 4 +- addons/email_template/i18n/et.po | 4 +- addons/email_template/i18n/fa_AF.po | 4 +- addons/email_template/i18n/fi.po | 4 +- addons/email_template/i18n/fr.po | 4 +- addons/email_template/i18n/hr.po | 4 +- addons/email_template/i18n/hu.po | 4 +- addons/email_template/i18n/it.po | 4 +- addons/email_template/i18n/ja.po | 4 +- addons/email_template/i18n/lt.po | 4 +- addons/email_template/i18n/mk.po | 4 +- addons/email_template/i18n/mn.po | 4 +- addons/email_template/i18n/nb.po | 4 +- addons/email_template/i18n/nl.po | 6 +- addons/email_template/i18n/nl_BE.po | 4 +- addons/email_template/i18n/pl.po | 4 +- addons/email_template/i18n/pt.po | 4 +- addons/email_template/i18n/pt_BR.po | 6 +- addons/email_template/i18n/ro.po | 6 +- addons/email_template/i18n/ru.po | 4 +- addons/email_template/i18n/sl.po | 82 +++-- addons/email_template/i18n/sr.po | 4 +- addons/email_template/i18n/sr@latin.po | 4 +- addons/email_template/i18n/sv.po | 4 +- addons/email_template/i18n/tr.po | 4 +- addons/email_template/i18n/zh_CN.po | 20 +- addons/email_template/i18n/zh_TW.po | 4 +- addons/event/i18n/ar.po | 4 +- addons/event/i18n/bg.po | 4 +- addons/event/i18n/bs.po | 4 +- addons/event/i18n/ca.po | 4 +- addons/event/i18n/cs.po | 4 +- addons/event/i18n/da.po | 4 +- addons/event/i18n/de.po | 4 +- addons/event/i18n/el.po | 4 +- addons/event/i18n/es.po | 4 +- addons/event/i18n/es_AR.po | 4 +- addons/event/i18n/es_CR.po | 4 +- addons/event/i18n/es_EC.po | 4 +- addons/event/i18n/et.po | 4 +- addons/event/i18n/fi.po | 4 +- addons/event/i18n/fr.po | 4 +- addons/event/i18n/gu.po | 4 +- addons/event/i18n/hi.po | 4 +- addons/event/i18n/hr.po | 4 +- addons/event/i18n/hu.po | 4 +- addons/event/i18n/id.po | 4 +- addons/event/i18n/it.po | 4 +- addons/event/i18n/ja.po | 4 +- addons/event/i18n/ko.po | 4 +- addons/event/i18n/lt.po | 4 +- addons/event/i18n/mk.po | 4 +- addons/event/i18n/mn.po | 4 +- addons/event/i18n/nb.po | 4 +- addons/event/i18n/nl.po | 4 +- addons/event/i18n/nl_BE.po | 4 +- addons/event/i18n/pl.po | 2 +- addons/event/i18n/pt.po | 4 +- addons/event/i18n/pt_BR.po | 4 +- addons/event/i18n/ro.po | 4 +- addons/event/i18n/ru.po | 4 +- addons/event/i18n/sk.po | 4 +- addons/event/i18n/sl.po | 26 +- addons/event/i18n/sq.po | 4 +- addons/event/i18n/sr.po | 4 +- addons/event/i18n/sr@latin.po | 4 +- addons/event/i18n/sv.po | 4 +- addons/event/i18n/tlh.po | 4 +- addons/event/i18n/tr.po | 4 +- addons/event/i18n/uk.po | 4 +- addons/event/i18n/vi.po | 4 +- addons/event/i18n/zh_CN.po | 31 +- addons/event/i18n/zh_TW.po | 4 +- addons/event_moodle/i18n/cs.po | 4 +- addons/event_moodle/i18n/de.po | 4 +- addons/event_moodle/i18n/es.po | 4 +- addons/event_moodle/i18n/fr.po | 4 +- addons/event_moodle/i18n/hr.po | 4 +- addons/event_moodle/i18n/hu.po | 4 +- addons/event_moodle/i18n/mk.po | 4 +- addons/event_moodle/i18n/mn.po | 4 +- addons/event_moodle/i18n/nl.po | 4 +- addons/event_moodle/i18n/pt.po | 4 +- addons/event_moodle/i18n/pt_BR.po | 4 +- addons/event_moodle/i18n/ro.po | 6 +- addons/event_moodle/i18n/ru.po | 4 +- addons/event_moodle/i18n/sl.po | 4 +- addons/event_moodle/i18n/tr.po | 4 +- addons/event_moodle/i18n/zh_CN.po | 6 +- addons/event_sale/i18n/ar.po | 4 +- addons/event_sale/i18n/cs.po | 4 +- addons/event_sale/i18n/da.po | 4 +- addons/event_sale/i18n/de.po | 4 +- addons/event_sale/i18n/es.po | 4 +- addons/event_sale/i18n/fr.po | 4 +- addons/event_sale/i18n/hr.po | 4 +- addons/event_sale/i18n/hu.po | 4 +- addons/event_sale/i18n/it.po | 4 +- addons/event_sale/i18n/mk.po | 4 +- addons/event_sale/i18n/mn.po | 4 +- addons/event_sale/i18n/nl.po | 4 +- addons/event_sale/i18n/pl.po | 4 +- addons/event_sale/i18n/pt.po | 4 +- addons/event_sale/i18n/pt_BR.po | 4 +- addons/event_sale/i18n/ro.po | 6 +- addons/event_sale/i18n/sl.po | 4 +- addons/event_sale/i18n/tr.po | 4 +- addons/event_sale/i18n/zh_CN.po | 6 +- addons/fetchmail/i18n/ar.po | 4 +- addons/fetchmail/i18n/bg.po | 4 +- addons/fetchmail/i18n/ca.po | 4 +- addons/fetchmail/i18n/cs.po | 4 +- addons/fetchmail/i18n/da.po | 4 +- addons/fetchmail/i18n/de.po | 4 +- addons/fetchmail/i18n/el.po | 4 +- addons/fetchmail/i18n/en_GB.po | 4 +- addons/fetchmail/i18n/es.po | 4 +- addons/fetchmail/i18n/es_CR.po | 4 +- addons/fetchmail/i18n/et.po | 4 +- addons/fetchmail/i18n/fi.po | 4 +- addons/fetchmail/i18n/fr.po | 4 +- addons/fetchmail/i18n/gl.po | 4 +- addons/fetchmail/i18n/hr.po | 4 +- addons/fetchmail/i18n/hu.po | 4 +- addons/fetchmail/i18n/it.po | 4 +- addons/fetchmail/i18n/ja.po | 4 +- addons/fetchmail/i18n/ko.po | 4 +- addons/fetchmail/i18n/lt.po | 4 +- addons/fetchmail/i18n/lv.po | 4 +- addons/fetchmail/i18n/mk.po | 4 +- addons/fetchmail/i18n/mn.po | 4 +- addons/fetchmail/i18n/nb.po | 4 +- addons/fetchmail/i18n/nl.po | 6 +- addons/fetchmail/i18n/pl.po | 4 +- addons/fetchmail/i18n/pt.po | 4 +- addons/fetchmail/i18n/pt_BR.po | 4 +- addons/fetchmail/i18n/ro.po | 6 +- addons/fetchmail/i18n/ru.po | 4 +- addons/fetchmail/i18n/sl.po | 37 ++- addons/fetchmail/i18n/sr.po | 4 +- addons/fetchmail/i18n/sr@latin.po | 4 +- addons/fetchmail/i18n/sv.po | 4 +- addons/fetchmail/i18n/tr.po | 4 +- addons/fetchmail/i18n/vi.po | 4 +- addons/fetchmail/i18n/zh_CN.po | 6 +- addons/fleet/i18n/ar.po | 4 +- addons/fleet/i18n/bg.po | 4 +- addons/fleet/i18n/cs.po | 4 +- addons/fleet/i18n/da.po | 4 +- addons/fleet/i18n/de.po | 4 +- addons/fleet/i18n/es.po | 4 +- addons/fleet/i18n/es_MX.po | 4 +- addons/fleet/i18n/fr.po | 4 +- addons/fleet/i18n/hr.po | 4 +- addons/fleet/i18n/hu.po | 4 +- addons/fleet/i18n/it.po | 4 +- addons/fleet/i18n/lv.po | 4 +- addons/fleet/i18n/mk.po | 4 +- addons/fleet/i18n/mn.po | 4 +- addons/fleet/i18n/nl.po | 6 +- addons/fleet/i18n/nl_BE.po | 4 +- addons/fleet/i18n/pl.po | 4 +- addons/fleet/i18n/pt.po | 4 +- addons/fleet/i18n/pt_BR.po | 6 +- addons/fleet/i18n/ro.po | 4 +- addons/fleet/i18n/ru.po | 4 +- addons/fleet/i18n/sl.po | 6 +- addons/fleet/i18n/sv.po | 4 +- addons/fleet/i18n/tr.po | 4 +- addons/fleet/i18n/zh_CN.po | 6 +- addons/google_base_account/i18n/ar.po | 4 +- addons/google_base_account/i18n/cs.po | 4 +- addons/google_base_account/i18n/de.po | 4 +- addons/google_base_account/i18n/es.po | 4 +- addons/google_base_account/i18n/es_CR.po | 4 +- addons/google_base_account/i18n/fi.po | 4 +- addons/google_base_account/i18n/fr.po | 4 +- addons/google_base_account/i18n/hr.po | 4 +- addons/google_base_account/i18n/hu.po | 4 +- addons/google_base_account/i18n/it.po | 4 +- addons/google_base_account/i18n/ja.po | 4 +- addons/google_base_account/i18n/mk.po | 4 +- addons/google_base_account/i18n/mn.po | 4 +- addons/google_base_account/i18n/nb.po | 4 +- addons/google_base_account/i18n/nl.po | 6 +- addons/google_base_account/i18n/pl.po | 2 +- addons/google_base_account/i18n/pt.po | 4 +- addons/google_base_account/i18n/pt_BR.po | 4 +- addons/google_base_account/i18n/ro.po | 6 +- addons/google_base_account/i18n/ru.po | 4 +- addons/google_base_account/i18n/sl.po | 4 +- addons/google_base_account/i18n/sr@latin.po | 4 +- addons/google_base_account/i18n/sv.po | 4 +- addons/google_base_account/i18n/tr.po | 4 +- addons/google_base_account/i18n/zh_CN.po | 6 +- addons/google_docs/i18n/ar.po | 4 +- addons/google_docs/i18n/cs.po | 4 +- addons/google_docs/i18n/de.po | 4 +- addons/google_docs/i18n/es.po | 4 +- addons/google_docs/i18n/fr.po | 4 +- addons/google_docs/i18n/hr.po | 2 +- addons/google_docs/i18n/hu.po | 4 +- addons/google_docs/i18n/it.po | 4 +- addons/google_docs/i18n/ln.po | 4 +- addons/google_docs/i18n/mk.po | 4 +- addons/google_docs/i18n/mn.po | 4 +- addons/google_docs/i18n/nl.po | 6 +- addons/google_docs/i18n/pl.po | 2 +- addons/google_docs/i18n/pt.po | 4 +- addons/google_docs/i18n/pt_BR.po | 4 +- addons/google_docs/i18n/ro.po | 6 +- addons/google_docs/i18n/ru.po | 4 +- addons/google_docs/i18n/sl.po | 4 +- addons/google_docs/i18n/sv.po | 4 +- addons/google_docs/i18n/tr.po | 4 +- addons/google_docs/i18n/zh_CN.po | 6 +- addons/hr/i18n/ar.po | 4 +- addons/hr/i18n/bg.po | 4 +- addons/hr/i18n/bn.po | 4 +- addons/hr/i18n/bs.po | 4 +- addons/hr/i18n/ca.po | 4 +- addons/hr/i18n/cs.po | 4 +- addons/hr/i18n/da.po | 4 +- addons/hr/i18n/de.po | 4 +- addons/hr/i18n/el.po | 4 +- addons/hr/i18n/en_AU.po | 4 +- addons/hr/i18n/en_GB.po | 4 +- addons/hr/i18n/es.po | 4 +- addons/hr/i18n/es_AR.po | 4 +- addons/hr/i18n/es_CL.po | 4 +- addons/hr/i18n/es_CR.po | 4 +- addons/hr/i18n/es_EC.po | 4 +- addons/hr/i18n/et.po | 4 +- addons/hr/i18n/fi.po | 4 +- addons/hr/i18n/fr.po | 4 +- addons/hr/i18n/fr_BE.po | 4 +- addons/hr/i18n/gl.po | 4 +- addons/hr/i18n/gu.po | 4 +- addons/hr/i18n/hi.po | 4 +- addons/hr/i18n/hr.po | 4 +- addons/hr/i18n/hu.po | 4 +- addons/hr/i18n/id.po | 4 +- addons/hr/i18n/it.po | 4 +- addons/hr/i18n/ja.po | 4 +- addons/hr/i18n/ko.po | 4 +- addons/hr/i18n/lo.po | 4 +- addons/hr/i18n/lt.po | 4 +- addons/hr/i18n/lv.po | 4 +- addons/hr/i18n/mk.po | 4 +- addons/hr/i18n/mn.po | 4 +- addons/hr/i18n/nb.po | 4 +- addons/hr/i18n/nl.po | 4 +- addons/hr/i18n/nl_BE.po | 4 +- addons/hr/i18n/pl.po | 2 +- addons/hr/i18n/pt.po | 4 +- addons/hr/i18n/pt_BR.po | 6 +- addons/hr/i18n/ro.po | 6 +- addons/hr/i18n/ru.po | 4 +- addons/hr/i18n/sk.po | 4 +- addons/hr/i18n/sl.po | 4 +- addons/hr/i18n/sq.po | 4 +- addons/hr/i18n/sr.po | 4 +- addons/hr/i18n/sr@latin.po | 4 +- addons/hr/i18n/sv.po | 4 +- addons/hr/i18n/th.po | 4 +- addons/hr/i18n/tlh.po | 4 +- addons/hr/i18n/tr.po | 4 +- addons/hr/i18n/uk.po | 4 +- addons/hr/i18n/vi.po | 4 +- addons/hr/i18n/zh_CN.po | 4 +- addons/hr/i18n/zh_TW.po | 4 +- addons/hr_attendance/i18n/ar.po | 4 +- addons/hr_attendance/i18n/bg.po | 4 +- addons/hr_attendance/i18n/bs.po | 4 +- addons/hr_attendance/i18n/ca.po | 4 +- addons/hr_attendance/i18n/cs.po | 4 +- addons/hr_attendance/i18n/da.po | 4 +- addons/hr_attendance/i18n/de.po | 4 +- addons/hr_attendance/i18n/el.po | 4 +- addons/hr_attendance/i18n/en_GB.po | 4 +- addons/hr_attendance/i18n/es.po | 4 +- addons/hr_attendance/i18n/es_AR.po | 4 +- addons/hr_attendance/i18n/es_CL.po | 4 +- addons/hr_attendance/i18n/es_CR.po | 4 +- addons/hr_attendance/i18n/es_EC.po | 4 +- addons/hr_attendance/i18n/es_PY.po | 4 +- addons/hr_attendance/i18n/et.po | 4 +- addons/hr_attendance/i18n/fi.po | 4 +- addons/hr_attendance/i18n/fr.po | 4 +- addons/hr_attendance/i18n/gl.po | 4 +- addons/hr_attendance/i18n/he.po | 4 +- addons/hr_attendance/i18n/hr.po | 4 +- addons/hr_attendance/i18n/hu.po | 4 +- addons/hr_attendance/i18n/id.po | 4 +- addons/hr_attendance/i18n/it.po | 4 +- addons/hr_attendance/i18n/ja.po | 4 +- addons/hr_attendance/i18n/ko.po | 4 +- addons/hr_attendance/i18n/lt.po | 4 +- addons/hr_attendance/i18n/lv.po | 4 +- addons/hr_attendance/i18n/mk.po | 4 +- addons/hr_attendance/i18n/mn.po | 4 +- addons/hr_attendance/i18n/nb.po | 4 +- addons/hr_attendance/i18n/nl.po | 4 +- addons/hr_attendance/i18n/nl_BE.po | 4 +- addons/hr_attendance/i18n/pl.po | 4 +- addons/hr_attendance/i18n/pt.po | 4 +- addons/hr_attendance/i18n/pt_BR.po | 4 +- addons/hr_attendance/i18n/ro.po | 6 +- addons/hr_attendance/i18n/ru.po | 4 +- addons/hr_attendance/i18n/sl.po | 4 +- addons/hr_attendance/i18n/sq.po | 4 +- addons/hr_attendance/i18n/sr.po | 4 +- addons/hr_attendance/i18n/sr@latin.po | 4 +- addons/hr_attendance/i18n/sv.po | 4 +- addons/hr_attendance/i18n/th.po | 4 +- addons/hr_attendance/i18n/tlh.po | 4 +- addons/hr_attendance/i18n/tr.po | 4 +- addons/hr_attendance/i18n/uk.po | 4 +- addons/hr_attendance/i18n/vi.po | 4 +- addons/hr_attendance/i18n/zh_CN.po | 6 +- addons/hr_attendance/i18n/zh_TW.po | 4 +- addons/hr_contract/i18n/ar.po | 4 +- addons/hr_contract/i18n/bg.po | 4 +- addons/hr_contract/i18n/bs.po | 4 +- addons/hr_contract/i18n/ca.po | 4 +- addons/hr_contract/i18n/cs.po | 4 +- addons/hr_contract/i18n/da.po | 4 +- addons/hr_contract/i18n/de.po | 4 +- addons/hr_contract/i18n/el.po | 4 +- addons/hr_contract/i18n/en_GB.po | 4 +- addons/hr_contract/i18n/es.po | 4 +- addons/hr_contract/i18n/es_AR.po | 4 +- addons/hr_contract/i18n/es_CR.po | 4 +- addons/hr_contract/i18n/es_EC.po | 4 +- addons/hr_contract/i18n/es_PY.po | 4 +- addons/hr_contract/i18n/et.po | 4 +- addons/hr_contract/i18n/fi.po | 4 +- addons/hr_contract/i18n/fr.po | 4 +- addons/hr_contract/i18n/gl.po | 4 +- addons/hr_contract/i18n/gu.po | 4 +- addons/hr_contract/i18n/hi.po | 4 +- addons/hr_contract/i18n/hr.po | 4 +- addons/hr_contract/i18n/hu.po | 4 +- addons/hr_contract/i18n/id.po | 4 +- addons/hr_contract/i18n/it.po | 4 +- addons/hr_contract/i18n/ja.po | 4 +- addons/hr_contract/i18n/ko.po | 4 +- addons/hr_contract/i18n/lo.po | 4 +- addons/hr_contract/i18n/lt.po | 4 +- addons/hr_contract/i18n/lv.po | 4 +- addons/hr_contract/i18n/mk.po | 4 +- addons/hr_contract/i18n/mn.po | 4 +- addons/hr_contract/i18n/nb.po | 4 +- addons/hr_contract/i18n/nl.po | 4 +- addons/hr_contract/i18n/nl_BE.po | 4 +- addons/hr_contract/i18n/pl.po | 4 +- addons/hr_contract/i18n/pt.po | 4 +- addons/hr_contract/i18n/pt_BR.po | 4 +- addons/hr_contract/i18n/ro.po | 6 +- addons/hr_contract/i18n/ru.po | 4 +- addons/hr_contract/i18n/sl.po | 4 +- addons/hr_contract/i18n/sq.po | 4 +- addons/hr_contract/i18n/sr.po | 4 +- addons/hr_contract/i18n/sr@latin.po | 4 +- addons/hr_contract/i18n/sv.po | 4 +- addons/hr_contract/i18n/th.po | 4 +- addons/hr_contract/i18n/tlh.po | 4 +- addons/hr_contract/i18n/tr.po | 4 +- addons/hr_contract/i18n/uk.po | 4 +- addons/hr_contract/i18n/vi.po | 4 +- addons/hr_contract/i18n/zh_CN.po | 6 +- addons/hr_contract/i18n/zh_TW.po | 4 +- addons/hr_evaluation/i18n/ar.po | 4 +- addons/hr_evaluation/i18n/bg.po | 4 +- addons/hr_evaluation/i18n/ca.po | 4 +- addons/hr_evaluation/i18n/cs.po | 4 +- addons/hr_evaluation/i18n/da.po | 4 +- addons/hr_evaluation/i18n/de.po | 4 +- addons/hr_evaluation/i18n/es.po | 4 +- addons/hr_evaluation/i18n/es_CR.po | 4 +- addons/hr_evaluation/i18n/es_EC.po | 4 +- addons/hr_evaluation/i18n/et.po | 4 +- addons/hr_evaluation/i18n/fi.po | 4 +- addons/hr_evaluation/i18n/fr.po | 4 +- addons/hr_evaluation/i18n/gl.po | 4 +- addons/hr_evaluation/i18n/hr.po | 4 +- addons/hr_evaluation/i18n/hu.po | 4 +- addons/hr_evaluation/i18n/id.po | 4 +- addons/hr_evaluation/i18n/it.po | 4 +- addons/hr_evaluation/i18n/ja.po | 4 +- addons/hr_evaluation/i18n/mk.po | 4 +- addons/hr_evaluation/i18n/mn.po | 4 +- addons/hr_evaluation/i18n/nl.po | 6 +- addons/hr_evaluation/i18n/pl.po | 2 +- addons/hr_evaluation/i18n/pt.po | 4 +- addons/hr_evaluation/i18n/pt_BR.po | 4 +- addons/hr_evaluation/i18n/ro.po | 6 +- addons/hr_evaluation/i18n/ru.po | 4 +- addons/hr_evaluation/i18n/sl.po | 4 +- addons/hr_evaluation/i18n/sr.po | 4 +- addons/hr_evaluation/i18n/sr@latin.po | 4 +- addons/hr_evaluation/i18n/sv.po | 4 +- addons/hr_evaluation/i18n/tr.po | 4 +- addons/hr_evaluation/i18n/zh_CN.po | 11 +- addons/hr_evaluation/i18n/zh_TW.po | 2 +- addons/hr_expense/i18n/ar.po | 4 +- addons/hr_expense/i18n/bg.po | 4 +- addons/hr_expense/i18n/bs.po | 4 +- addons/hr_expense/i18n/ca.po | 4 +- addons/hr_expense/i18n/cs.po | 4 +- addons/hr_expense/i18n/da.po | 4 +- addons/hr_expense/i18n/de.po | 4 +- addons/hr_expense/i18n/el.po | 4 +- addons/hr_expense/i18n/es.po | 4 +- addons/hr_expense/i18n/es_AR.po | 4 +- addons/hr_expense/i18n/es_CR.po | 4 +- addons/hr_expense/i18n/es_EC.po | 4 +- addons/hr_expense/i18n/et.po | 4 +- addons/hr_expense/i18n/fi.po | 4 +- addons/hr_expense/i18n/fr.po | 4 +- addons/hr_expense/i18n/hr.po | 4 +- addons/hr_expense/i18n/hu.po | 4 +- addons/hr_expense/i18n/id.po | 4 +- addons/hr_expense/i18n/it.po | 4 +- addons/hr_expense/i18n/ja.po | 2 +- addons/hr_expense/i18n/ko.po | 4 +- addons/hr_expense/i18n/lt.po | 4 +- addons/hr_expense/i18n/lv.po | 4 +- addons/hr_expense/i18n/mk.po | 4 +- addons/hr_expense/i18n/mn.po | 4 +- addons/hr_expense/i18n/nb.po | 4 +- addons/hr_expense/i18n/nl.po | 6 +- addons/hr_expense/i18n/nl_BE.po | 4 +- addons/hr_expense/i18n/pl.po | 4 +- addons/hr_expense/i18n/pt.po | 4 +- addons/hr_expense/i18n/pt_BR.po | 6 +- addons/hr_expense/i18n/ro.po | 6 +- addons/hr_expense/i18n/ru.po | 4 +- addons/hr_expense/i18n/sl.po | 4 +- addons/hr_expense/i18n/sq.po | 4 +- addons/hr_expense/i18n/sr.po | 4 +- addons/hr_expense/i18n/sr@latin.po | 4 +- addons/hr_expense/i18n/sv.po | 4 +- addons/hr_expense/i18n/th.po | 4 +- addons/hr_expense/i18n/tlh.po | 4 +- addons/hr_expense/i18n/tr.po | 4 +- addons/hr_expense/i18n/uk.po | 4 +- addons/hr_expense/i18n/vi.po | 4 +- addons/hr_expense/i18n/zh_CN.po | 4 +- addons/hr_expense/i18n/zh_TW.po | 4 +- addons/hr_holidays/i18n/ar.po | 4 +- addons/hr_holidays/i18n/bg.po | 4 +- addons/hr_holidays/i18n/bs.po | 4 +- addons/hr_holidays/i18n/ca.po | 4 +- addons/hr_holidays/i18n/cs.po | 4 +- addons/hr_holidays/i18n/da.po | 4 +- addons/hr_holidays/i18n/de.po | 4 +- addons/hr_holidays/i18n/el.po | 4 +- addons/hr_holidays/i18n/es.po | 4 +- addons/hr_holidays/i18n/es_AR.po | 4 +- addons/hr_holidays/i18n/es_CR.po | 4 +- addons/hr_holidays/i18n/es_EC.po | 4 +- addons/hr_holidays/i18n/et.po | 4 +- addons/hr_holidays/i18n/fi.po | 4 +- addons/hr_holidays/i18n/fr.po | 4 +- addons/hr_holidays/i18n/gu.po | 4 +- addons/hr_holidays/i18n/hi.po | 4 +- addons/hr_holidays/i18n/hr.po | 4 +- addons/hr_holidays/i18n/hu.po | 4 +- addons/hr_holidays/i18n/id.po | 4 +- addons/hr_holidays/i18n/it.po | 4 +- addons/hr_holidays/i18n/ja.po | 4 +- addons/hr_holidays/i18n/ko.po | 4 +- addons/hr_holidays/i18n/lt.po | 4 +- addons/hr_holidays/i18n/lv.po | 4 +- addons/hr_holidays/i18n/mk.po | 4 +- addons/hr_holidays/i18n/mn.po | 4 +- addons/hr_holidays/i18n/nb.po | 4 +- addons/hr_holidays/i18n/nl.po | 6 +- addons/hr_holidays/i18n/nl_BE.po | 4 +- addons/hr_holidays/i18n/pl.po | 4 +- addons/hr_holidays/i18n/pt.po | 2 +- addons/hr_holidays/i18n/pt_BR.po | 6 +- addons/hr_holidays/i18n/ro.po | 6 +- addons/hr_holidays/i18n/ru.po | 4 +- addons/hr_holidays/i18n/sl.po | 4 +- addons/hr_holidays/i18n/sq.po | 4 +- addons/hr_holidays/i18n/sr.po | 4 +- addons/hr_holidays/i18n/sr@latin.po | 4 +- addons/hr_holidays/i18n/sv.po | 4 +- addons/hr_holidays/i18n/th.po | 4 +- addons/hr_holidays/i18n/tlh.po | 4 +- addons/hr_holidays/i18n/tr.po | 4 +- addons/hr_holidays/i18n/uk.po | 4 +- addons/hr_holidays/i18n/vi.po | 4 +- addons/hr_holidays/i18n/zh_CN.po | 4 +- addons/hr_holidays/i18n/zh_TW.po | 4 +- addons/hr_payroll/i18n/ar.po | 4 +- addons/hr_payroll/i18n/bg.po | 4 +- addons/hr_payroll/i18n/ca.po | 4 +- addons/hr_payroll/i18n/cs.po | 4 +- addons/hr_payroll/i18n/da.po | 4 +- addons/hr_payroll/i18n/de.po | 4 +- addons/hr_payroll/i18n/en_GB.po | 4 +- addons/hr_payroll/i18n/es.po | 4 +- addons/hr_payroll/i18n/es_CR.po | 4 +- addons/hr_payroll/i18n/es_EC.po | 4 +- addons/hr_payroll/i18n/es_MX.po | 4 +- addons/hr_payroll/i18n/et.po | 4 +- addons/hr_payroll/i18n/fi.po | 4 +- addons/hr_payroll/i18n/fr.po | 4 +- addons/hr_payroll/i18n/gl.po | 4 +- addons/hr_payroll/i18n/gu.po | 4 +- addons/hr_payroll/i18n/he.po | 4 +- addons/hr_payroll/i18n/hr.po | 4 +- addons/hr_payroll/i18n/hu.po | 4 +- addons/hr_payroll/i18n/id.po | 4 +- addons/hr_payroll/i18n/it.po | 4 +- addons/hr_payroll/i18n/ja.po | 4 +- addons/hr_payroll/i18n/lo.po | 4 +- addons/hr_payroll/i18n/lt.po | 4 +- addons/hr_payroll/i18n/lv.po | 4 +- addons/hr_payroll/i18n/mk.po | 4 +- addons/hr_payroll/i18n/mn.po | 4 +- addons/hr_payroll/i18n/nb.po | 4 +- addons/hr_payroll/i18n/nl.po | 4 +- addons/hr_payroll/i18n/pl.po | 4 +- addons/hr_payroll/i18n/pt.po | 4 +- addons/hr_payroll/i18n/pt_BR.po | 6 +- addons/hr_payroll/i18n/ro.po | 6 +- addons/hr_payroll/i18n/ru.po | 4 +- addons/hr_payroll/i18n/sl.po | 52 +-- addons/hr_payroll/i18n/sr.po | 4 +- addons/hr_payroll/i18n/sr@latin.po | 4 +- addons/hr_payroll/i18n/sv.po | 4 +- addons/hr_payroll/i18n/tr.po | 4 +- addons/hr_payroll/i18n/vi.po | 4 +- addons/hr_payroll/i18n/zh_CN.po | 6 +- addons/hr_payroll/i18n/zh_TW.po | 2 +- addons/hr_payroll_account/i18n/ar.po | 4 +- addons/hr_payroll_account/i18n/bg.po | 4 +- addons/hr_payroll_account/i18n/ca.po | 4 +- addons/hr_payroll_account/i18n/cs.po | 4 +- addons/hr_payroll_account/i18n/da.po | 4 +- addons/hr_payroll_account/i18n/de.po | 4 +- addons/hr_payroll_account/i18n/en_GB.po | 4 +- addons/hr_payroll_account/i18n/es.po | 4 +- addons/hr_payroll_account/i18n/es_CR.po | 4 +- addons/hr_payroll_account/i18n/es_EC.po | 4 +- addons/hr_payroll_account/i18n/es_PY.po | 4 +- addons/hr_payroll_account/i18n/fr.po | 4 +- addons/hr_payroll_account/i18n/gl.po | 4 +- addons/hr_payroll_account/i18n/gu.po | 4 +- addons/hr_payroll_account/i18n/hr.po | 4 +- addons/hr_payroll_account/i18n/hu.po | 4 +- addons/hr_payroll_account/i18n/id.po | 4 +- addons/hr_payroll_account/i18n/it.po | 4 +- addons/hr_payroll_account/i18n/ja.po | 4 +- addons/hr_payroll_account/i18n/lt.po | 4 +- addons/hr_payroll_account/i18n/lv.po | 4 +- addons/hr_payroll_account/i18n/mk.po | 4 +- addons/hr_payroll_account/i18n/mn.po | 4 +- addons/hr_payroll_account/i18n/nb.po | 4 +- addons/hr_payroll_account/i18n/nl.po | 4 +- addons/hr_payroll_account/i18n/pl.po | 2 +- addons/hr_payroll_account/i18n/pt.po | 4 +- addons/hr_payroll_account/i18n/pt_BR.po | 4 +- addons/hr_payroll_account/i18n/ro.po | 6 +- addons/hr_payroll_account/i18n/ru.po | 4 +- addons/hr_payroll_account/i18n/sl.po | 2 +- addons/hr_payroll_account/i18n/sr@latin.po | 4 +- addons/hr_payroll_account/i18n/sv.po | 4 +- addons/hr_payroll_account/i18n/tr.po | 4 +- addons/hr_payroll_account/i18n/zh_CN.po | 4 +- addons/hr_payroll_account/i18n/zh_TW.po | 2 +- addons/hr_recruitment/i18n/ar.po | 4 +- addons/hr_recruitment/i18n/bg.po | 4 +- addons/hr_recruitment/i18n/ca.po | 4 +- addons/hr_recruitment/i18n/cs.po | 4 +- addons/hr_recruitment/i18n/da.po | 4 +- addons/hr_recruitment/i18n/de.po | 4 +- addons/hr_recruitment/i18n/es.po | 4 +- addons/hr_recruitment/i18n/es_CR.po | 4 +- addons/hr_recruitment/i18n/fr.po | 4 +- addons/hr_recruitment/i18n/hi.po | 4 +- addons/hr_recruitment/i18n/hr.po | 4 +- addons/hr_recruitment/i18n/hu.po | 4 +- addons/hr_recruitment/i18n/id.po | 4 +- addons/hr_recruitment/i18n/it.po | 4 +- addons/hr_recruitment/i18n/ja.po | 2 +- addons/hr_recruitment/i18n/mk.po | 4 +- addons/hr_recruitment/i18n/mn.po | 4 +- addons/hr_recruitment/i18n/nb.po | 4 +- addons/hr_recruitment/i18n/nl.po | 6 +- addons/hr_recruitment/i18n/pl.po | 2 +- addons/hr_recruitment/i18n/pt.po | 4 +- addons/hr_recruitment/i18n/pt_BR.po | 4 +- addons/hr_recruitment/i18n/ro.po | 6 +- addons/hr_recruitment/i18n/ru.po | 4 +- addons/hr_recruitment/i18n/sl.po | 4 +- addons/hr_recruitment/i18n/sr.po | 4 +- addons/hr_recruitment/i18n/sr@latin.po | 4 +- addons/hr_recruitment/i18n/sv.po | 4 +- addons/hr_recruitment/i18n/th.po | 4 +- addons/hr_recruitment/i18n/tr.po | 4 +- addons/hr_recruitment/i18n/vi.po | 4 +- addons/hr_recruitment/i18n/zh_CN.po | 4 +- addons/hr_recruitment/i18n/zh_TW.po | 2 +- addons/hr_timesheet/i18n/ar.po | 4 +- addons/hr_timesheet/i18n/bg.po | 4 +- addons/hr_timesheet/i18n/bs.po | 4 +- addons/hr_timesheet/i18n/ca.po | 4 +- addons/hr_timesheet/i18n/cs.po | 4 +- addons/hr_timesheet/i18n/da.po | 4 +- addons/hr_timesheet/i18n/de.po | 4 +- addons/hr_timesheet/i18n/el.po | 4 +- addons/hr_timesheet/i18n/en_GB.po | 4 +- addons/hr_timesheet/i18n/es.po | 4 +- addons/hr_timesheet/i18n/es_AR.po | 4 +- addons/hr_timesheet/i18n/es_CR.po | 4 +- addons/hr_timesheet/i18n/es_EC.po | 4 +- addons/hr_timesheet/i18n/et.po | 4 +- addons/hr_timesheet/i18n/fi.po | 4 +- addons/hr_timesheet/i18n/fr.po | 4 +- addons/hr_timesheet/i18n/gl.po | 4 +- addons/hr_timesheet/i18n/hr.po | 4 +- addons/hr_timesheet/i18n/hu.po | 4 +- addons/hr_timesheet/i18n/id.po | 4 +- addons/hr_timesheet/i18n/it.po | 4 +- addons/hr_timesheet/i18n/ja.po | 4 +- addons/hr_timesheet/i18n/ko.po | 4 +- addons/hr_timesheet/i18n/lt.po | 4 +- addons/hr_timesheet/i18n/lv.po | 4 +- addons/hr_timesheet/i18n/mk.po | 4 +- addons/hr_timesheet/i18n/mn.po | 4 +- addons/hr_timesheet/i18n/nb.po | 4 +- addons/hr_timesheet/i18n/nl.po | 6 +- addons/hr_timesheet/i18n/pl.po | 4 +- addons/hr_timesheet/i18n/pt.po | 4 +- addons/hr_timesheet/i18n/pt_BR.po | 4 +- addons/hr_timesheet/i18n/ro.po | 6 +- addons/hr_timesheet/i18n/ru.po | 6 +- addons/hr_timesheet/i18n/sl.po | 4 +- addons/hr_timesheet/i18n/sq.po | 4 +- addons/hr_timesheet/i18n/sr@latin.po | 4 +- addons/hr_timesheet/i18n/sv.po | 4 +- addons/hr_timesheet/i18n/th.po | 4 +- addons/hr_timesheet/i18n/tlh.po | 4 +- addons/hr_timesheet/i18n/tr.po | 4 +- addons/hr_timesheet/i18n/uk.po | 4 +- addons/hr_timesheet/i18n/vi.po | 4 +- addons/hr_timesheet/i18n/zh_CN.po | 4 +- addons/hr_timesheet/i18n/zh_TW.po | 4 +- addons/hr_timesheet_invoice/i18n/ar.po | 4 +- addons/hr_timesheet_invoice/i18n/bg.po | 4 +- addons/hr_timesheet_invoice/i18n/bs.po | 4 +- addons/hr_timesheet_invoice/i18n/ca.po | 4 +- addons/hr_timesheet_invoice/i18n/cs.po | 4 +- addons/hr_timesheet_invoice/i18n/da.po | 4 +- addons/hr_timesheet_invoice/i18n/de.po | 4 +- addons/hr_timesheet_invoice/i18n/el.po | 4 +- addons/hr_timesheet_invoice/i18n/es.po | 4 +- addons/hr_timesheet_invoice/i18n/es_AR.po | 4 +- addons/hr_timesheet_invoice/i18n/es_CR.po | 4 +- addons/hr_timesheet_invoice/i18n/es_EC.po | 4 +- addons/hr_timesheet_invoice/i18n/et.po | 4 +- addons/hr_timesheet_invoice/i18n/fi.po | 4 +- addons/hr_timesheet_invoice/i18n/fr.po | 4 +- addons/hr_timesheet_invoice/i18n/hr.po | 4 +- addons/hr_timesheet_invoice/i18n/hu.po | 4 +- addons/hr_timesheet_invoice/i18n/id.po | 4 +- addons/hr_timesheet_invoice/i18n/it.po | 4 +- addons/hr_timesheet_invoice/i18n/ja.po | 4 +- addons/hr_timesheet_invoice/i18n/ko.po | 4 +- addons/hr_timesheet_invoice/i18n/lt.po | 4 +- addons/hr_timesheet_invoice/i18n/lv.po | 4 +- addons/hr_timesheet_invoice/i18n/mk.po | 4 +- addons/hr_timesheet_invoice/i18n/mn.po | 4 +- addons/hr_timesheet_invoice/i18n/nl.po | 6 +- addons/hr_timesheet_invoice/i18n/nl_BE.po | 4 +- addons/hr_timesheet_invoice/i18n/pl.po | 4 +- addons/hr_timesheet_invoice/i18n/pt.po | 4 +- addons/hr_timesheet_invoice/i18n/pt_BR.po | 6 +- addons/hr_timesheet_invoice/i18n/ro.po | 6 +- addons/hr_timesheet_invoice/i18n/ru.po | 4 +- addons/hr_timesheet_invoice/i18n/sl.po | 4 +- addons/hr_timesheet_invoice/i18n/sq.po | 4 +- addons/hr_timesheet_invoice/i18n/sr@latin.po | 4 +- addons/hr_timesheet_invoice/i18n/sv.po | 4 +- addons/hr_timesheet_invoice/i18n/tlh.po | 4 +- addons/hr_timesheet_invoice/i18n/tr.po | 4 +- addons/hr_timesheet_invoice/i18n/uk.po | 4 +- addons/hr_timesheet_invoice/i18n/vi.po | 4 +- addons/hr_timesheet_invoice/i18n/zh_CN.po | 4 +- addons/hr_timesheet_invoice/i18n/zh_TW.po | 4 +- addons/hr_timesheet_sheet/i18n/ar.po | 4 +- addons/hr_timesheet_sheet/i18n/bg.po | 4 +- addons/hr_timesheet_sheet/i18n/bs.po | 4 +- addons/hr_timesheet_sheet/i18n/ca.po | 4 +- addons/hr_timesheet_sheet/i18n/cs.po | 4 +- addons/hr_timesheet_sheet/i18n/da.po | 4 +- addons/hr_timesheet_sheet/i18n/de.po | 4 +- addons/hr_timesheet_sheet/i18n/el.po | 4 +- addons/hr_timesheet_sheet/i18n/es.po | 4 +- addons/hr_timesheet_sheet/i18n/es_AR.po | 4 +- addons/hr_timesheet_sheet/i18n/es_CR.po | 4 +- addons/hr_timesheet_sheet/i18n/es_EC.po | 4 +- addons/hr_timesheet_sheet/i18n/et.po | 4 +- addons/hr_timesheet_sheet/i18n/fi.po | 4 +- addons/hr_timesheet_sheet/i18n/fr.po | 4 +- addons/hr_timesheet_sheet/i18n/hr.po | 4 +- addons/hr_timesheet_sheet/i18n/hu.po | 4 +- addons/hr_timesheet_sheet/i18n/id.po | 4 +- addons/hr_timesheet_sheet/i18n/it.po | 8 +- addons/hr_timesheet_sheet/i18n/ja.po | 4 +- addons/hr_timesheet_sheet/i18n/ko.po | 6 +- addons/hr_timesheet_sheet/i18n/lt.po | 4 +- addons/hr_timesheet_sheet/i18n/lv.po | 4 +- addons/hr_timesheet_sheet/i18n/mk.po | 4 +- addons/hr_timesheet_sheet/i18n/mn.po | 4 +- addons/hr_timesheet_sheet/i18n/nl.po | 6 +- addons/hr_timesheet_sheet/i18n/nl_BE.po | 4 +- addons/hr_timesheet_sheet/i18n/pl.po | 4 +- addons/hr_timesheet_sheet/i18n/pt.po | 4 +- addons/hr_timesheet_sheet/i18n/pt_BR.po | 4 +- addons/hr_timesheet_sheet/i18n/ro.po | 6 +- addons/hr_timesheet_sheet/i18n/ru.po | 6 +- addons/hr_timesheet_sheet/i18n/sk.po | 4 +- addons/hr_timesheet_sheet/i18n/sl.po | 4 +- addons/hr_timesheet_sheet/i18n/sq.po | 4 +- addons/hr_timesheet_sheet/i18n/sv.po | 4 +- addons/hr_timesheet_sheet/i18n/th.po | 4 +- addons/hr_timesheet_sheet/i18n/tlh.po | 4 +- addons/hr_timesheet_sheet/i18n/tr.po | 4 +- addons/hr_timesheet_sheet/i18n/uk.po | 4 +- addons/hr_timesheet_sheet/i18n/vi.po | 4 +- addons/hr_timesheet_sheet/i18n/zh_CN.po | 4 +- addons/hr_timesheet_sheet/i18n/zh_TW.po | 4 +- addons/idea/i18n/ar.po | 4 +- addons/idea/i18n/bg.po | 4 +- addons/idea/i18n/bs.po | 4 +- addons/idea/i18n/ca.po | 4 +- addons/idea/i18n/cs.po | 4 +- addons/idea/i18n/da.po | 4 +- addons/idea/i18n/de.po | 4 +- addons/idea/i18n/el.po | 4 +- addons/idea/i18n/en_GB.po | 4 +- addons/idea/i18n/es.po | 4 +- addons/idea/i18n/es_AR.po | 4 +- addons/idea/i18n/es_CR.po | 4 +- addons/idea/i18n/et.po | 4 +- addons/idea/i18n/fi.po | 4 +- addons/idea/i18n/fr.po | 4 +- addons/idea/i18n/gl.po | 4 +- addons/idea/i18n/gu.po | 4 +- addons/idea/i18n/hi.po | 4 +- addons/idea/i18n/hr.po | 4 +- addons/idea/i18n/hu.po | 4 +- addons/idea/i18n/id.po | 4 +- addons/idea/i18n/it.po | 4 +- addons/idea/i18n/ja.po | 4 +- addons/idea/i18n/ko.po | 4 +- addons/idea/i18n/lt.po | 4 +- addons/idea/i18n/lv.po | 4 +- addons/idea/i18n/mk.po | 4 +- addons/idea/i18n/mn.po | 4 +- addons/idea/i18n/nl.po | 2 +- addons/idea/i18n/pl.po | 2 +- addons/idea/i18n/pt.po | 4 +- addons/idea/i18n/pt_BR.po | 4 +- addons/idea/i18n/ro.po | 6 +- addons/idea/i18n/ru.po | 6 +- addons/idea/i18n/sk.po | 4 +- addons/idea/i18n/sl.po | 4 +- addons/idea/i18n/sq.po | 4 +- addons/idea/i18n/sr@latin.po | 4 +- addons/idea/i18n/sv.po | 4 +- addons/idea/i18n/tlh.po | 4 +- addons/idea/i18n/tr.po | 4 +- addons/idea/i18n/uk.po | 4 +- addons/idea/i18n/vi.po | 4 +- addons/idea/i18n/zh_CN.po | 6 +- addons/idea/i18n/zh_HK.po | 4 +- addons/idea/i18n/zh_TW.po | 4 +- addons/knowledge/i18n/ar.po | 4 +- addons/knowledge/i18n/bg.po | 4 +- addons/knowledge/i18n/ca.po | 4 +- addons/knowledge/i18n/cs.po | 4 +- addons/knowledge/i18n/da.po | 4 +- addons/knowledge/i18n/de.po | 4 +- addons/knowledge/i18n/en_GB.po | 4 +- addons/knowledge/i18n/es.po | 4 +- addons/knowledge/i18n/es_AR.po | 4 +- addons/knowledge/i18n/es_CR.po | 4 +- addons/knowledge/i18n/et.po | 4 +- addons/knowledge/i18n/fi.po | 4 +- addons/knowledge/i18n/fr.po | 4 +- addons/knowledge/i18n/gl.po | 4 +- addons/knowledge/i18n/hi.po | 4 +- addons/knowledge/i18n/hr.po | 4 +- addons/knowledge/i18n/hu.po | 4 +- addons/knowledge/i18n/it.po | 4 +- addons/knowledge/i18n/ja.po | 4 +- addons/knowledge/i18n/lo.po | 4 +- addons/knowledge/i18n/lv.po | 4 +- addons/knowledge/i18n/mk.po | 4 +- addons/knowledge/i18n/mn.po | 4 +- addons/knowledge/i18n/nb.po | 4 +- addons/knowledge/i18n/nl.po | 4 +- addons/knowledge/i18n/nl_BE.po | 4 +- addons/knowledge/i18n/pl.po | 2 +- addons/knowledge/i18n/pt.po | 4 +- addons/knowledge/i18n/pt_BR.po | 4 +- addons/knowledge/i18n/ro.po | 4 +- addons/knowledge/i18n/ru.po | 4 +- addons/knowledge/i18n/sk.po | 4 +- addons/knowledge/i18n/sl.po | 4 +- addons/knowledge/i18n/sr.po | 4 +- addons/knowledge/i18n/sr@latin.po | 4 +- addons/knowledge/i18n/sv.po | 4 +- addons/knowledge/i18n/th.po | 4 +- addons/knowledge/i18n/tr.po | 4 +- addons/knowledge/i18n/zh_CN.po | 4 +- addons/knowledge/i18n/zh_TW.po | 4 +- addons/l10n_ar/i18n/es.po | 4 +- addons/l10n_ar/i18n/es_AR.po | 4 +- addons/l10n_ar/i18n/nl.po | 4 +- addons/l10n_ar/i18n/pt.po | 4 +- addons/l10n_ar/i18n/pt_BR.po | 4 +- addons/l10n_ar/i18n/sl.po | 4 +- addons/l10n_ar/i18n/tr.po | 4 +- addons/l10n_ar/i18n/zh_CN.po | 4 +- addons/l10n_be/i18n/ar.po | 4 +- addons/l10n_be/i18n/bg.po | 4 +- addons/l10n_be/i18n/bs.po | 4 +- addons/l10n_be/i18n/ca.po | 4 +- addons/l10n_be/i18n/cs.po | 4 +- addons/l10n_be/i18n/da.po | 4 +- addons/l10n_be/i18n/de.po | 4 +- addons/l10n_be/i18n/en_GB.po | 4 +- addons/l10n_be/i18n/es.po | 4 +- addons/l10n_be/i18n/es_AR.po | 4 +- addons/l10n_be/i18n/es_CR.po | 4 +- addons/l10n_be/i18n/et.po | 4 +- addons/l10n_be/i18n/fi.po | 4 +- addons/l10n_be/i18n/fr.po | 4 +- addons/l10n_be/i18n/gl.po | 4 +- addons/l10n_be/i18n/hr.po | 4 +- addons/l10n_be/i18n/hu.po | 4 +- addons/l10n_be/i18n/id.po | 4 +- addons/l10n_be/i18n/it.po | 4 +- addons/l10n_be/i18n/ja.po | 4 +- addons/l10n_be/i18n/ko.po | 4 +- addons/l10n_be/i18n/lt.po | 4 +- addons/l10n_be/i18n/mk.po | 4 +- addons/l10n_be/i18n/nl.po | 4 +- addons/l10n_be/i18n/nl_BE.po | 4 +- addons/l10n_be/i18n/pl.po | 4 +- addons/l10n_be/i18n/pt.po | 4 +- addons/l10n_be/i18n/pt_BR.po | 6 +- addons/l10n_be/i18n/ro.po | 4 +- addons/l10n_be/i18n/ru.po | 4 +- addons/l10n_be/i18n/sl.po | 4 +- addons/l10n_be/i18n/sq.po | 4 +- addons/l10n_be/i18n/sr@latin.po | 4 +- addons/l10n_be/i18n/sv.po | 4 +- addons/l10n_be/i18n/tlh.po | 4 +- addons/l10n_be/i18n/tr.po | 4 +- addons/l10n_be/i18n/uk.po | 4 +- addons/l10n_be/i18n/vi.po | 4 +- addons/l10n_be/i18n/zh_CN.po | 4 +- addons/l10n_be/i18n/zh_TW.po | 4 +- addons/l10n_be_coda/i18n/ar.po | 4 +- addons/l10n_be_coda/i18n/bg.po | 4 +- addons/l10n_be_coda/i18n/ca.po | 4 +- addons/l10n_be_coda/i18n/da.po | 4 +- addons/l10n_be_coda/i18n/de.po | 4 +- addons/l10n_be_coda/i18n/el.po | 4 +- addons/l10n_be_coda/i18n/en_AU.po | 4 +- addons/l10n_be_coda/i18n/en_GB.po | 4 +- addons/l10n_be_coda/i18n/es.po | 4 +- addons/l10n_be_coda/i18n/es_CR.po | 4 +- addons/l10n_be_coda/i18n/es_EC.po | 4 +- addons/l10n_be_coda/i18n/es_PY.po | 4 +- addons/l10n_be_coda/i18n/et.po | 4 +- addons/l10n_be_coda/i18n/fa.po | 4 +- addons/l10n_be_coda/i18n/fi.po | 4 +- addons/l10n_be_coda/i18n/fr.po | 4 +- addons/l10n_be_coda/i18n/gl.po | 4 +- addons/l10n_be_coda/i18n/hr.po | 4 +- addons/l10n_be_coda/i18n/hu.po | 4 +- addons/l10n_be_coda/i18n/it.po | 4 +- addons/l10n_be_coda/i18n/ja.po | 4 +- addons/l10n_be_coda/i18n/lv.po | 4 +- addons/l10n_be_coda/i18n/mk.po | 4 +- addons/l10n_be_coda/i18n/mn.po | 4 +- addons/l10n_be_coda/i18n/nb.po | 4 +- addons/l10n_be_coda/i18n/nl.po | 2 +- addons/l10n_be_coda/i18n/nl_BE.po | 4 +- addons/l10n_be_coda/i18n/pl.po | 4 +- addons/l10n_be_coda/i18n/pt.po | 4 +- addons/l10n_be_coda/i18n/pt_BR.po | 6 +- addons/l10n_be_coda/i18n/ro.po | 4 +- addons/l10n_be_coda/i18n/ru.po | 4 +- addons/l10n_be_coda/i18n/sl.po | 4 +- addons/l10n_be_coda/i18n/sq.po | 4 +- addons/l10n_be_coda/i18n/sr.po | 4 +- addons/l10n_be_coda/i18n/sr@latin.po | 4 +- addons/l10n_be_coda/i18n/sv.po | 4 +- addons/l10n_be_coda/i18n/tr.po | 4 +- addons/l10n_be_coda/i18n/vi.po | 4 +- addons/l10n_be_coda/i18n/zh_CN.po | 4 +- addons/l10n_be_coda/i18n/zh_TW.po | 4 +- addons/l10n_be_hr_payroll/i18n/de.po | 4 +- addons/l10n_be_hr_payroll/i18n/es.po | 4 +- addons/l10n_be_hr_payroll/i18n/es_CR.po | 4 +- addons/l10n_be_hr_payroll/i18n/nl.po | 4 +- addons/l10n_be_hr_payroll/i18n/pt.po | 4 +- addons/l10n_be_hr_payroll/i18n/pt_BR.po | 4 +- addons/l10n_be_hr_payroll/i18n/sl.po | 4 +- addons/l10n_be_hr_payroll/i18n/sr@latin.po | 4 +- addons/l10n_be_hr_payroll/i18n/tr.po | 4 +- addons/l10n_be_hr_payroll/i18n/zh_CN.po | 4 +- addons/l10n_be_invoice_bba/i18n/ar.po | 4 +- addons/l10n_be_invoice_bba/i18n/es.po | 4 +- addons/l10n_be_invoice_bba/i18n/es_CR.po | 4 +- addons/l10n_be_invoice_bba/i18n/fr.po | 4 +- addons/l10n_be_invoice_bba/i18n/nb.po | 4 +- addons/l10n_be_invoice_bba/i18n/nl.po | 4 +- addons/l10n_be_invoice_bba/i18n/nl_BE.po | 4 +- addons/l10n_be_invoice_bba/i18n/pt.po | 4 +- addons/l10n_be_invoice_bba/i18n/pt_BR.po | 6 +- addons/l10n_be_invoice_bba/i18n/sl.po | 4 +- addons/l10n_be_invoice_bba/i18n/sr@latin.po | 4 +- addons/l10n_be_invoice_bba/i18n/tr.po | 4 +- addons/l10n_bo/i18n/en_GB.po | 4 +- addons/l10n_bo/i18n/es.po | 4 +- addons/l10n_bo/i18n/it.po | 4 +- addons/l10n_bo/i18n/nl.po | 4 +- addons/l10n_bo/i18n/pt.po | 4 +- addons/l10n_bo/i18n/pt_BR.po | 4 +- addons/l10n_bo/i18n/sl.po | 4 +- addons/l10n_bo/i18n/tr.po | 4 +- addons/l10n_br/i18n/ar.po | 4 +- addons/l10n_br/i18n/bg.po | 4 +- addons/l10n_br/i18n/ca.po | 4 +- addons/l10n_br/i18n/da.po | 4 +- addons/l10n_br/i18n/en_GB.po | 4 +- addons/l10n_br/i18n/es.po | 4 +- addons/l10n_br/i18n/es_CR.po | 4 +- addons/l10n_br/i18n/es_PY.po | 4 +- addons/l10n_br/i18n/fr.po | 4 +- addons/l10n_br/i18n/gl.po | 4 +- addons/l10n_br/i18n/hi.po | 4 +- addons/l10n_br/i18n/it.po | 4 +- addons/l10n_br/i18n/nb.po | 4 +- addons/l10n_br/i18n/nl.po | 4 +- addons/l10n_br/i18n/oc.po | 4 +- addons/l10n_br/i18n/pt.po | 4 +- addons/l10n_br/i18n/pt_BR.po | 4 +- addons/l10n_br/i18n/ru.po | 4 +- addons/l10n_br/i18n/sl.po | 4 +- addons/l10n_br/i18n/sq.po | 4 +- addons/l10n_br/i18n/sr@latin.po | 4 +- addons/l10n_br/i18n/tr.po | 4 +- addons/l10n_ca/i18n/ar.po | 4 +- addons/l10n_ca/i18n/ca.po | 4 +- addons/l10n_ca/i18n/da.po | 4 +- addons/l10n_ca/i18n/de.po | 4 +- addons/l10n_ca/i18n/en_GB.po | 4 +- addons/l10n_ca/i18n/es.po | 4 +- addons/l10n_ca/i18n/es_CR.po | 4 +- addons/l10n_ca/i18n/es_PY.po | 4 +- addons/l10n_ca/i18n/fr.po | 4 +- addons/l10n_ca/i18n/gl.po | 4 +- addons/l10n_ca/i18n/hu.po | 4 +- addons/l10n_ca/i18n/it.po | 4 +- addons/l10n_ca/i18n/nb.po | 4 +- addons/l10n_ca/i18n/nl.po | 4 +- addons/l10n_ca/i18n/pt.po | 4 +- addons/l10n_ca/i18n/pt_BR.po | 4 +- addons/l10n_ca/i18n/sl.po | 4 +- addons/l10n_ca/i18n/sr@latin.po | 4 +- addons/l10n_ca/i18n/tr.po | 4 +- addons/l10n_ca/i18n/zh_CN.po | 4 +- addons/l10n_cl/i18n/es.po | 4 +- addons/l10n_cl/i18n/nl.po | 4 +- addons/l10n_cl/i18n/pt_BR.po | 6 +- addons/l10n_cl/i18n/sl.po | 4 +- addons/l10n_cl/i18n/tr.po | 4 +- addons/l10n_cl/i18n/zh_CN.po | 4 +- addons/l10n_cn/i18n/ar.po | 4 +- addons/l10n_cn/i18n/ca.po | 4 +- addons/l10n_cn/i18n/da.po | 4 +- addons/l10n_cn/i18n/es.po | 4 +- addons/l10n_cn/i18n/es_CR.po | 4 +- addons/l10n_cn/i18n/es_PY.po | 4 +- addons/l10n_cn/i18n/gl.po | 4 +- addons/l10n_cn/i18n/it.po | 4 +- addons/l10n_cn/i18n/nb.po | 4 +- addons/l10n_cn/i18n/pt_BR.po | 4 +- addons/l10n_cn/i18n/sl.po | 4 +- addons/l10n_cn/i18n/sr@latin.po | 4 +- addons/l10n_cn/i18n/tr.po | 4 +- addons/l10n_cn/i18n/zh_CN.po | 4 +- addons/l10n_cn/i18n/zh_TW.po | 4 +- addons/l10n_cr/i18n/ar.po | 4 +- addons/l10n_cr/i18n/ca.po | 4 +- addons/l10n_cr/i18n/da.po | 4 +- addons/l10n_cr/i18n/es.po | 4 +- addons/l10n_cr/i18n/es_CR.po | 4 +- addons/l10n_cr/i18n/es_PY.po | 4 +- addons/l10n_cr/i18n/fr.po | 4 +- addons/l10n_cr/i18n/gl.po | 4 +- addons/l10n_cr/i18n/it.po | 4 +- addons/l10n_cr/i18n/mn.po | 4 +- addons/l10n_cr/i18n/nl.po | 4 +- addons/l10n_cr/i18n/pt.po | 4 +- addons/l10n_cr/i18n/pt_BR.po | 4 +- addons/l10n_cr/i18n/sl.po | 4 +- addons/l10n_cr/i18n/tr.po | 4 +- addons/l10n_de/i18n/ar.po | 4 +- addons/l10n_de/i18n/bg.po | 4 +- addons/l10n_de/i18n/bs.po | 4 +- addons/l10n_de/i18n/ca.po | 4 +- addons/l10n_de/i18n/cs.po | 4 +- addons/l10n_de/i18n/da.po | 4 +- addons/l10n_de/i18n/de.po | 4 +- addons/l10n_de/i18n/es.po | 4 +- addons/l10n_de/i18n/es_CR.po | 4 +- addons/l10n_de/i18n/es_PY.po | 4 +- addons/l10n_de/i18n/et.po | 4 +- addons/l10n_de/i18n/fr.po | 4 +- addons/l10n_de/i18n/gl.po | 4 +- addons/l10n_de/i18n/hr.po | 4 +- addons/l10n_de/i18n/hu.po | 4 +- addons/l10n_de/i18n/id.po | 4 +- addons/l10n_de/i18n/it.po | 4 +- addons/l10n_de/i18n/ko.po | 4 +- addons/l10n_de/i18n/lt.po | 4 +- addons/l10n_de/i18n/nb.po | 4 +- addons/l10n_de/i18n/nl.po | 4 +- addons/l10n_de/i18n/pl.po | 4 +- addons/l10n_de/i18n/pt.po | 4 +- addons/l10n_de/i18n/pt_BR.po | 4 +- addons/l10n_de/i18n/ro.po | 4 +- addons/l10n_de/i18n/ru.po | 4 +- addons/l10n_de/i18n/sl.po | 4 +- addons/l10n_de/i18n/sr@latin.po | 4 +- addons/l10n_de/i18n/sv.po | 4 +- addons/l10n_de/i18n/tr.po | 4 +- addons/l10n_de/i18n/vi.po | 4 +- addons/l10n_de/i18n/zh_CN.po | 4 +- addons/l10n_de/i18n/zh_TW.po | 4 +- addons/l10n_ec/i18n/ar.po | 4 +- addons/l10n_ec/i18n/ca.po | 4 +- addons/l10n_ec/i18n/da.po | 4 +- addons/l10n_ec/i18n/es.po | 4 +- addons/l10n_ec/i18n/es_CR.po | 4 +- addons/l10n_ec/i18n/es_EC.po | 4 +- addons/l10n_ec/i18n/es_PY.po | 4 +- addons/l10n_ec/i18n/fr.po | 4 +- addons/l10n_ec/i18n/gl.po | 4 +- addons/l10n_ec/i18n/it.po | 4 +- addons/l10n_ec/i18n/nl.po | 4 +- addons/l10n_ec/i18n/pt.po | 4 +- addons/l10n_ec/i18n/pt_BR.po | 4 +- addons/l10n_ec/i18n/sl.po | 4 +- addons/l10n_ec/i18n/tr.po | 4 +- addons/l10n_es/i18n/ar.po | 4 +- addons/l10n_es/i18n/ca.po | 4 +- addons/l10n_es/i18n/da.po | 4 +- addons/l10n_es/i18n/de.po | 4 +- addons/l10n_es/i18n/es.po | 4 +- addons/l10n_es/i18n/es_CR.po | 4 +- addons/l10n_es/i18n/es_PY.po | 4 +- addons/l10n_es/i18n/fr.po | 4 +- addons/l10n_es/i18n/gl.po | 4 +- addons/l10n_es/i18n/hu.po | 4 +- addons/l10n_es/i18n/it.po | 4 +- addons/l10n_es/i18n/nl.po | 4 +- addons/l10n_es/i18n/oc.po | 4 +- addons/l10n_es/i18n/pt.po | 4 +- addons/l10n_es/i18n/pt_BR.po | 4 +- addons/l10n_es/i18n/sl.po | 4 +- addons/l10n_es/i18n/sr@latin.po | 4 +- addons/l10n_es/i18n/tr.po | 4 +- addons/l10n_fr/i18n/ar.po | 4 +- addons/l10n_fr/i18n/bg.po | 4 +- addons/l10n_fr/i18n/bs.po | 4 +- addons/l10n_fr/i18n/ca.po | 4 +- addons/l10n_fr/i18n/cs.po | 4 +- addons/l10n_fr/i18n/da.po | 4 +- addons/l10n_fr/i18n/de.po | 4 +- addons/l10n_fr/i18n/es.po | 4 +- addons/l10n_fr/i18n/es_AR.po | 4 +- addons/l10n_fr/i18n/es_CR.po | 4 +- addons/l10n_fr/i18n/es_PY.po | 4 +- addons/l10n_fr/i18n/et.po | 4 +- addons/l10n_fr/i18n/fr.po | 4 +- addons/l10n_fr/i18n/gl.po | 4 +- addons/l10n_fr/i18n/hr.po | 4 +- addons/l10n_fr/i18n/hu.po | 4 +- addons/l10n_fr/i18n/id.po | 4 +- addons/l10n_fr/i18n/it.po | 4 +- addons/l10n_fr/i18n/ko.po | 4 +- addons/l10n_fr/i18n/lt.po | 4 +- addons/l10n_fr/i18n/nl.po | 4 +- addons/l10n_fr/i18n/nl_BE.po | 4 +- addons/l10n_fr/i18n/oc.po | 4 +- addons/l10n_fr/i18n/pl.po | 4 +- addons/l10n_fr/i18n/pt.po | 4 +- addons/l10n_fr/i18n/pt_BR.po | 6 +- addons/l10n_fr/i18n/ro.po | 4 +- addons/l10n_fr/i18n/ru.po | 4 +- addons/l10n_fr/i18n/sl.po | 4 +- addons/l10n_fr/i18n/sq.po | 4 +- addons/l10n_fr/i18n/sr@latin.po | 4 +- addons/l10n_fr/i18n/sv.po | 4 +- addons/l10n_fr/i18n/tlh.po | 4 +- addons/l10n_fr/i18n/tr.po | 4 +- addons/l10n_fr/i18n/uk.po | 4 +- addons/l10n_fr/i18n/vi.po | 4 +- addons/l10n_fr/i18n/zh_CN.po | 4 +- addons/l10n_fr/i18n/zh_TW.po | 4 +- addons/l10n_fr_rib/i18n/ar.po | 4 +- addons/l10n_fr_rib/i18n/es.po | 4 +- addons/l10n_fr_rib/i18n/es_CR.po | 4 +- addons/l10n_fr_rib/i18n/fr.po | 4 +- addons/l10n_fr_rib/i18n/nl.po | 4 +- addons/l10n_fr_rib/i18n/pt.po | 4 +- addons/l10n_fr_rib/i18n/pt_BR.po | 4 +- addons/l10n_fr_rib/i18n/sl.po | 4 +- addons/l10n_fr_rib/i18n/tr.po | 4 +- addons/l10n_gr/i18n/ar.po | 4 +- addons/l10n_gr/i18n/ca.po | 4 +- addons/l10n_gr/i18n/da.po | 4 +- addons/l10n_gr/i18n/de.po | 4 +- addons/l10n_gr/i18n/el.po | 4 +- addons/l10n_gr/i18n/es.po | 4 +- addons/l10n_gr/i18n/es_CR.po | 4 +- addons/l10n_gr/i18n/es_PY.po | 4 +- addons/l10n_gr/i18n/fr.po | 4 +- addons/l10n_gr/i18n/gl.po | 4 +- addons/l10n_gr/i18n/hu.po | 4 +- addons/l10n_gr/i18n/it.po | 4 +- addons/l10n_gr/i18n/nl.po | 4 +- addons/l10n_gr/i18n/pt.po | 4 +- addons/l10n_gr/i18n/pt_BR.po | 6 +- addons/l10n_gr/i18n/sl.po | 4 +- addons/l10n_gr/i18n/sr@latin.po | 4 +- addons/l10n_gr/i18n/tr.po | 4 +- addons/l10n_gt/i18n/ar.po | 4 +- addons/l10n_gt/i18n/ca.po | 4 +- addons/l10n_gt/i18n/da.po | 4 +- addons/l10n_gt/i18n/es.po | 4 +- addons/l10n_gt/i18n/es_CR.po | 4 +- addons/l10n_gt/i18n/es_PY.po | 4 +- addons/l10n_gt/i18n/fr.po | 4 +- addons/l10n_gt/i18n/gl.po | 4 +- addons/l10n_gt/i18n/hu.po | 4 +- addons/l10n_gt/i18n/it.po | 4 +- addons/l10n_gt/i18n/nl.po | 4 +- addons/l10n_gt/i18n/oc.po | 4 +- addons/l10n_gt/i18n/pt.po | 4 +- addons/l10n_gt/i18n/pt_BR.po | 4 +- addons/l10n_gt/i18n/sl.po | 4 +- addons/l10n_gt/i18n/sr@latin.po | 4 +- addons/l10n_gt/i18n/tr.po | 4 +- addons/l10n_hn/i18n/ca.po | 4 +- addons/l10n_hn/i18n/es.po | 4 +- addons/l10n_hn/i18n/es_CR.po | 4 +- addons/l10n_hn/i18n/fr.po | 4 +- addons/l10n_hn/i18n/gl.po | 4 +- addons/l10n_hn/i18n/hu.po | 4 +- addons/l10n_hn/i18n/it.po | 4 +- addons/l10n_hn/i18n/nl.po | 4 +- addons/l10n_hn/i18n/pt.po | 4 +- addons/l10n_hn/i18n/pt_BR.po | 4 +- addons/l10n_hn/i18n/sl.po | 4 +- addons/l10n_hn/i18n/sr@latin.po | 4 +- addons/l10n_hn/i18n/tr.po | 4 +- addons/l10n_in/i18n/ar.po | 4 +- addons/l10n_in/i18n/br.po | 4 +- addons/l10n_in/i18n/ca.po | 4 +- addons/l10n_in/i18n/da.po | 4 +- addons/l10n_in/i18n/de.po | 4 +- addons/l10n_in/i18n/es.po | 4 +- addons/l10n_in/i18n/es_CR.po | 4 +- addons/l10n_in/i18n/es_PY.po | 4 +- addons/l10n_in/i18n/et.po | 4 +- addons/l10n_in/i18n/fr.po | 4 +- addons/l10n_in/i18n/gl.po | 4 +- addons/l10n_in/i18n/hu.po | 4 +- addons/l10n_in/i18n/it.po | 4 +- addons/l10n_in/i18n/nl.po | 4 +- addons/l10n_in/i18n/oc.po | 4 +- addons/l10n_in/i18n/pt.po | 4 +- addons/l10n_in/i18n/pt_BR.po | 4 +- addons/l10n_in/i18n/ru.po | 4 +- addons/l10n_in/i18n/sl.po | 4 +- addons/l10n_in/i18n/sr@latin.po | 4 +- addons/l10n_in/i18n/sv.po | 4 +- addons/l10n_in/i18n/tr.po | 4 +- addons/l10n_in_hr_payroll/i18n/bn.po | 4 +- addons/l10n_in_hr_payroll/i18n/es.po | 4 +- addons/l10n_in_hr_payroll/i18n/gu.po | 4 +- addons/l10n_in_hr_payroll/i18n/hi.po | 4 +- addons/l10n_in_hr_payroll/i18n/nl.po | 4 +- addons/l10n_in_hr_payroll/i18n/pl.po | 4 +- addons/l10n_in_hr_payroll/i18n/pt.po | 4 +- addons/l10n_in_hr_payroll/i18n/pt_BR.po | 6 +- addons/l10n_in_hr_payroll/i18n/sl.po | 4 +- addons/l10n_in_hr_payroll/i18n/ta.po | 4 +- addons/l10n_in_hr_payroll/i18n/te.po | 4 +- addons/l10n_in_hr_payroll/i18n/tr.po | 4 +- addons/l10n_in_hr_payroll/i18n/zh_CN.po | 6 +- addons/l10n_it/i18n/ar.po | 4 +- addons/l10n_it/i18n/ca.po | 4 +- addons/l10n_it/i18n/da.po | 4 +- addons/l10n_it/i18n/es.po | 4 +- addons/l10n_it/i18n/es_CR.po | 4 +- addons/l10n_it/i18n/es_PY.po | 4 +- addons/l10n_it/i18n/fr.po | 4 +- addons/l10n_it/i18n/gl.po | 4 +- addons/l10n_it/i18n/it.po | 4 +- addons/l10n_it/i18n/nl.po | 4 +- addons/l10n_it/i18n/pt_BR.po | 6 +- addons/l10n_it/i18n/sl.po | 6 +- addons/l10n_it/i18n/tr.po | 4 +- addons/l10n_lu/i18n/ar.po | 4 +- addons/l10n_lu/i18n/bg.po | 4 +- addons/l10n_lu/i18n/bs.po | 4 +- addons/l10n_lu/i18n/ca.po | 4 +- addons/l10n_lu/i18n/cs.po | 4 +- addons/l10n_lu/i18n/da.po | 4 +- addons/l10n_lu/i18n/de.po | 4 +- addons/l10n_lu/i18n/es.po | 4 +- addons/l10n_lu/i18n/es_AR.po | 4 +- addons/l10n_lu/i18n/es_CR.po | 4 +- addons/l10n_lu/i18n/es_PY.po | 4 +- addons/l10n_lu/i18n/et.po | 4 +- addons/l10n_lu/i18n/fr.po | 4 +- addons/l10n_lu/i18n/gl.po | 4 +- addons/l10n_lu/i18n/hr.po | 4 +- addons/l10n_lu/i18n/hu.po | 4 +- addons/l10n_lu/i18n/id.po | 4 +- addons/l10n_lu/i18n/it.po | 4 +- addons/l10n_lu/i18n/ko.po | 4 +- addons/l10n_lu/i18n/lt.po | 4 +- addons/l10n_lu/i18n/nl.po | 4 +- addons/l10n_lu/i18n/nl_BE.po | 4 +- addons/l10n_lu/i18n/oc.po | 4 +- addons/l10n_lu/i18n/pl.po | 4 +- addons/l10n_lu/i18n/pt.po | 4 +- addons/l10n_lu/i18n/pt_BR.po | 4 +- addons/l10n_lu/i18n/ro.po | 4 +- addons/l10n_lu/i18n/ru.po | 4 +- addons/l10n_lu/i18n/sl.po | 4 +- addons/l10n_lu/i18n/sq.po | 4 +- addons/l10n_lu/i18n/sr@latin.po | 4 +- addons/l10n_lu/i18n/sv.po | 4 +- addons/l10n_lu/i18n/tlh.po | 4 +- addons/l10n_lu/i18n/tr.po | 4 +- addons/l10n_lu/i18n/uk.po | 4 +- addons/l10n_lu/i18n/vi.po | 4 +- addons/l10n_lu/i18n/zh_CN.po | 4 +- addons/l10n_lu/i18n/zh_TW.po | 4 +- addons/l10n_ma/i18n/ar.po | 4 +- addons/l10n_ma/i18n/ca.po | 4 +- addons/l10n_ma/i18n/da.po | 4 +- addons/l10n_ma/i18n/de.po | 4 +- addons/l10n_ma/i18n/es.po | 4 +- addons/l10n_ma/i18n/es_CR.po | 4 +- addons/l10n_ma/i18n/es_PY.po | 4 +- addons/l10n_ma/i18n/fr.po | 4 +- addons/l10n_ma/i18n/gl.po | 4 +- addons/l10n_ma/i18n/hu.po | 4 +- addons/l10n_ma/i18n/it.po | 4 +- addons/l10n_ma/i18n/nl.po | 4 +- addons/l10n_ma/i18n/pt.po | 4 +- addons/l10n_ma/i18n/pt_BR.po | 6 +- addons/l10n_ma/i18n/sl.po | 4 +- addons/l10n_ma/i18n/sr@latin.po | 4 +- addons/l10n_ma/i18n/tr.po | 4 +- addons/l10n_multilang/i18n/ar.po | 4 +- addons/l10n_multilang/i18n/da.po | 4 +- addons/l10n_multilang/i18n/de.po | 4 +- addons/l10n_multilang/i18n/es.po | 4 +- addons/l10n_multilang/i18n/es_CR.po | 4 +- addons/l10n_multilang/i18n/fr.po | 4 +- addons/l10n_multilang/i18n/hr.po | 4 +- addons/l10n_multilang/i18n/hu.po | 4 +- addons/l10n_multilang/i18n/mn.po | 4 +- addons/l10n_multilang/i18n/nl.po | 4 +- addons/l10n_multilang/i18n/pl.po | 4 +- addons/l10n_multilang/i18n/pt.po | 4 +- addons/l10n_multilang/i18n/pt_BR.po | 4 +- addons/l10n_multilang/i18n/ro.po | 4 +- addons/l10n_multilang/i18n/sl.po | 4 +- addons/l10n_multilang/i18n/tr.po | 4 +- addons/l10n_multilang/i18n/zh_CN.po | 7 +- addons/l10n_nl/i18n/ar.po | 4 +- addons/l10n_nl/i18n/ca.po | 4 +- addons/l10n_nl/i18n/da.po | 4 +- addons/l10n_nl/i18n/en_GB.po | 4 +- addons/l10n_nl/i18n/es.po | 4 +- addons/l10n_nl/i18n/es_CR.po | 4 +- addons/l10n_nl/i18n/es_PY.po | 4 +- addons/l10n_nl/i18n/gl.po | 4 +- addons/l10n_nl/i18n/it.po | 4 +- addons/l10n_nl/i18n/mn.po | 4 +- addons/l10n_nl/i18n/nl.po | 4 +- addons/l10n_nl/i18n/pt_BR.po | 6 +- addons/l10n_nl/i18n/sl.po | 4 +- addons/l10n_nl/i18n/sr@latin.po | 4 +- addons/l10n_nl/i18n/tr.po | 4 +- addons/l10n_pe/i18n/ar.po | 4 +- addons/l10n_pe/i18n/br.po | 4 +- addons/l10n_pe/i18n/ca.po | 4 +- addons/l10n_pe/i18n/de.po | 4 +- addons/l10n_pe/i18n/es.po | 4 +- addons/l10n_pe/i18n/et.po | 4 +- addons/l10n_pe/i18n/fr.po | 4 +- addons/l10n_pe/i18n/gl.po | 4 +- addons/l10n_pe/i18n/hu.po | 4 +- addons/l10n_pe/i18n/it.po | 4 +- addons/l10n_pe/i18n/nl.po | 4 +- addons/l10n_pe/i18n/pt.po | 4 +- addons/l10n_pe/i18n/pt_BR.po | 6 +- addons/l10n_pe/i18n/ru.po | 4 +- addons/l10n_pe/i18n/sl.po | 4 +- addons/l10n_pe/i18n/sr@latin.po | 4 +- addons/l10n_pe/i18n/sv.po | 4 +- addons/l10n_pe/i18n/tr.po | 4 +- addons/l10n_pl/i18n/ar.po | 4 +- addons/l10n_pl/i18n/ca.po | 4 +- addons/l10n_pl/i18n/da.po | 4 +- addons/l10n_pl/i18n/es.po | 4 +- addons/l10n_pl/i18n/es_CR.po | 4 +- addons/l10n_pl/i18n/es_PY.po | 4 +- addons/l10n_pl/i18n/gl.po | 4 +- addons/l10n_pl/i18n/it.po | 4 +- addons/l10n_pl/i18n/pt_BR.po | 6 +- addons/l10n_pl/i18n/sl.po | 4 +- addons/l10n_pl/i18n/sr@latin.po | 4 +- addons/l10n_pl/i18n/tr.po | 4 +- addons/l10n_syscohada/i18n/ar.po | 4 +- addons/l10n_syscohada/i18n/ca.po | 4 +- addons/l10n_syscohada/i18n/es.po | 4 +- addons/l10n_syscohada/i18n/es_CR.po | 4 +- addons/l10n_syscohada/i18n/fr.po | 4 +- addons/l10n_syscohada/i18n/nl.po | 4 +- addons/l10n_syscohada/i18n/pt.po | 4 +- addons/l10n_syscohada/i18n/pt_BR.po | 6 +- addons/l10n_syscohada/i18n/ro.po | 4 +- addons/l10n_syscohada/i18n/sl.po | 4 +- addons/l10n_syscohada/i18n/tr.po | 4 +- addons/l10n_th/i18n/ar.po | 4 +- addons/l10n_th/i18n/ca.po | 4 +- addons/l10n_th/i18n/da.po | 4 +- addons/l10n_th/i18n/en_GB.po | 4 +- addons/l10n_th/i18n/es.po | 4 +- addons/l10n_th/i18n/es_CR.po | 4 +- addons/l10n_th/i18n/es_PY.po | 4 +- addons/l10n_th/i18n/gl.po | 4 +- addons/l10n_th/i18n/it.po | 4 +- addons/l10n_th/i18n/nb.po | 4 +- addons/l10n_th/i18n/nl.po | 4 +- addons/l10n_th/i18n/pt.po | 4 +- addons/l10n_th/i18n/pt_BR.po | 4 +- addons/l10n_th/i18n/sl.po | 4 +- addons/l10n_th/i18n/sr@latin.po | 4 +- addons/l10n_th/i18n/th.po | 4 +- addons/l10n_th/i18n/tr.po | 4 +- addons/l10n_uk/i18n/ar.po | 4 +- addons/l10n_uk/i18n/bg.po | 4 +- addons/l10n_uk/i18n/bs.po | 4 +- addons/l10n_uk/i18n/ca.po | 4 +- addons/l10n_uk/i18n/cs.po | 4 +- addons/l10n_uk/i18n/da.po | 4 +- addons/l10n_uk/i18n/de.po | 4 +- addons/l10n_uk/i18n/es.po | 4 +- addons/l10n_uk/i18n/es_CR.po | 4 +- addons/l10n_uk/i18n/es_PY.po | 4 +- addons/l10n_uk/i18n/et.po | 4 +- addons/l10n_uk/i18n/fr.po | 4 +- addons/l10n_uk/i18n/gl.po | 4 +- addons/l10n_uk/i18n/hr.po | 4 +- addons/l10n_uk/i18n/hu.po | 4 +- addons/l10n_uk/i18n/id.po | 4 +- addons/l10n_uk/i18n/it.po | 4 +- addons/l10n_uk/i18n/ko.po | 4 +- addons/l10n_uk/i18n/lt.po | 4 +- addons/l10n_uk/i18n/nl.po | 4 +- addons/l10n_uk/i18n/oc.po | 4 +- addons/l10n_uk/i18n/pl.po | 4 +- addons/l10n_uk/i18n/pt.po | 4 +- addons/l10n_uk/i18n/pt_BR.po | 4 +- addons/l10n_uk/i18n/ro.po | 6 +- addons/l10n_uk/i18n/ru.po | 4 +- addons/l10n_uk/i18n/sl.po | 4 +- addons/l10n_uk/i18n/sq.po | 4 +- addons/l10n_uk/i18n/sr@latin.po | 4 +- addons/l10n_uk/i18n/sv.po | 4 +- addons/l10n_uk/i18n/tlh.po | 4 +- addons/l10n_uk/i18n/tr.po | 4 +- addons/l10n_uk/i18n/uk.po | 4 +- addons/l10n_uk/i18n/vi.po | 4 +- addons/l10n_uk/i18n/zh_CN.po | 4 +- addons/l10n_uk/i18n/zh_TW.po | 4 +- addons/l10n_ve/i18n/ar.po | 4 +- addons/l10n_ve/i18n/ca.po | 4 +- addons/l10n_ve/i18n/da.po | 4 +- addons/l10n_ve/i18n/de.po | 4 +- addons/l10n_ve/i18n/es.po | 4 +- addons/l10n_ve/i18n/es_CR.po | 4 +- addons/l10n_ve/i18n/es_PY.po | 4 +- addons/l10n_ve/i18n/gl.po | 4 +- addons/l10n_ve/i18n/it.po | 4 +- addons/l10n_ve/i18n/nl.po | 4 +- addons/l10n_ve/i18n/pt.po | 4 +- addons/l10n_ve/i18n/pt_BR.po | 4 +- addons/l10n_ve/i18n/ro.po | 6 +- addons/l10n_ve/i18n/sl.po | 4 +- addons/l10n_ve/i18n/sr@latin.po | 4 +- addons/l10n_ve/i18n/tr.po | 4 +- addons/lunch/i18n/ar.po | 4 +- addons/lunch/i18n/bg.po | 4 +- addons/lunch/i18n/ca.po | 4 +- addons/lunch/i18n/cs.po | 4 +- addons/lunch/i18n/da.po | 4 +- addons/lunch/i18n/de.po | 4 +- addons/lunch/i18n/es.po | 4 +- addons/lunch/i18n/es_CR.po | 4 +- addons/lunch/i18n/es_PY.po | 4 +- addons/lunch/i18n/fi.po | 4 +- addons/lunch/i18n/fr.po | 4 +- addons/lunch/i18n/gl.po | 4 +- addons/lunch/i18n/hr.po | 4 +- addons/lunch/i18n/hu.po | 4 +- addons/lunch/i18n/it.po | 4 +- addons/lunch/i18n/ja.po | 4 +- addons/lunch/i18n/ko.po | 6 +- addons/lunch/i18n/mk.po | 4 +- addons/lunch/i18n/mn.po | 4 +- addons/lunch/i18n/nl.po | 4 +- addons/lunch/i18n/pt.po | 4 +- addons/lunch/i18n/pt_BR.po | 4 +- addons/lunch/i18n/ro.po | 6 +- addons/lunch/i18n/ru.po | 4 +- addons/lunch/i18n/sl.po | 2 +- addons/lunch/i18n/sr@latin.po | 4 +- addons/lunch/i18n/sv.po | 4 +- addons/lunch/i18n/tr.po | 4 +- addons/lunch/i18n/zh_CN.po | 81 ++++- addons/lunch/i18n/zh_TW.po | 4 +- addons/mail/i18n/ar.po | 4 +- addons/mail/i18n/bg.po | 4 +- addons/mail/i18n/bs.po | 4 +- addons/mail/i18n/ca.po | 4 +- addons/mail/i18n/cs.po | 4 +- addons/mail/i18n/da.po | 4 +- addons/mail/i18n/de.po | 4 +- addons/mail/i18n/es.po | 4 +- addons/mail/i18n/es_CR.po | 4 +- addons/mail/i18n/es_MX.po | 4 +- addons/mail/i18n/es_PY.po | 4 +- addons/mail/i18n/es_VE.po | 4 +- addons/mail/i18n/et.po | 4 +- addons/mail/i18n/fi.po | 4 +- addons/mail/i18n/fr.po | 4 +- addons/mail/i18n/gl.po | 4 +- addons/mail/i18n/hr.po | 4 +- addons/mail/i18n/hu.po | 4 +- addons/mail/i18n/it.po | 4 +- addons/mail/i18n/ja.po | 2 +- addons/mail/i18n/ko.po | 6 +- addons/mail/i18n/lt.po | 4 +- addons/mail/i18n/lv.po | 4 +- addons/mail/i18n/mk.po | 4 +- addons/mail/i18n/mn.po | 4 +- addons/mail/i18n/nl.po | 6 +- addons/mail/i18n/pl.po | 4 +- addons/mail/i18n/pt.po | 4 +- addons/mail/i18n/pt_BR.po | 6 +- addons/mail/i18n/ro.po | 4 +- addons/mail/i18n/ru.po | 4 +- addons/mail/i18n/sl.po | 75 +++-- addons/mail/i18n/sr@latin.po | 4 +- addons/mail/i18n/sv.po | 204 ++++++------ addons/mail/i18n/th.po | 4 +- addons/mail/i18n/tr.po | 4 +- addons/mail/i18n/vi.po | 4 +- addons/mail/i18n/zh_CN.po | 9 +- addons/mail/i18n/zh_TW.po | 4 +- addons/marketing/i18n/ar.po | 4 +- addons/marketing/i18n/bg.po | 4 +- addons/marketing/i18n/ca.po | 4 +- addons/marketing/i18n/cs.po | 4 +- addons/marketing/i18n/da.po | 4 +- addons/marketing/i18n/de.po | 4 +- addons/marketing/i18n/el.po | 4 +- addons/marketing/i18n/es.po | 4 +- addons/marketing/i18n/es_CR.po | 4 +- addons/marketing/i18n/fi.po | 4 +- addons/marketing/i18n/fr.po | 4 +- addons/marketing/i18n/gl.po | 4 +- addons/marketing/i18n/hr.po | 4 +- addons/marketing/i18n/hu.po | 4 +- addons/marketing/i18n/id.po | 4 +- addons/marketing/i18n/it.po | 4 +- addons/marketing/i18n/ja.po | 4 +- addons/marketing/i18n/lt.po | 4 +- addons/marketing/i18n/lv.po | 4 +- addons/marketing/i18n/mk.po | 4 +- addons/marketing/i18n/mn.po | 4 +- addons/marketing/i18n/nb.po | 4 +- addons/marketing/i18n/nl.po | 6 +- addons/marketing/i18n/pl.po | 4 +- addons/marketing/i18n/pt.po | 4 +- addons/marketing/i18n/pt_BR.po | 4 +- addons/marketing/i18n/ro.po | 6 +- addons/marketing/i18n/ru.po | 4 +- addons/marketing/i18n/sk.po | 4 +- addons/marketing/i18n/sl.po | 4 +- addons/marketing/i18n/sr.po | 4 +- addons/marketing/i18n/sr@latin.po | 4 +- addons/marketing/i18n/sv.po | 4 +- addons/marketing/i18n/th.po | 4 +- addons/marketing/i18n/tr.po | 4 +- addons/marketing/i18n/zh_CN.po | 6 +- addons/marketing/i18n/zh_TW.po | 4 +- addons/marketing_campaign/i18n/ar.po | 4 +- addons/marketing_campaign/i18n/bg.po | 4 +- addons/marketing_campaign/i18n/ca.po | 4 +- addons/marketing_campaign/i18n/cs.po | 4 +- addons/marketing_campaign/i18n/da.po | 4 +- addons/marketing_campaign/i18n/de.po | 4 +- addons/marketing_campaign/i18n/el.po | 4 +- addons/marketing_campaign/i18n/es.po | 4 +- addons/marketing_campaign/i18n/es_CR.po | 4 +- addons/marketing_campaign/i18n/fi.po | 4 +- addons/marketing_campaign/i18n/fr.po | 4 +- addons/marketing_campaign/i18n/hi.po | 4 +- addons/marketing_campaign/i18n/hr.po | 4 +- addons/marketing_campaign/i18n/hu.po | 4 +- addons/marketing_campaign/i18n/it.po | 4 +- addons/marketing_campaign/i18n/ja.po | 4 +- addons/marketing_campaign/i18n/lv.po | 4 +- addons/marketing_campaign/i18n/mk.po | 4 +- addons/marketing_campaign/i18n/mn.po | 4 +- addons/marketing_campaign/i18n/nl.po | 6 +- addons/marketing_campaign/i18n/pl.po | 4 +- addons/marketing_campaign/i18n/pt.po | 4 +- addons/marketing_campaign/i18n/pt_BR.po | 4 +- addons/marketing_campaign/i18n/ro.po | 6 +- addons/marketing_campaign/i18n/ru.po | 4 +- addons/marketing_campaign/i18n/sl.po | 4 +- addons/marketing_campaign/i18n/sr@latin.po | 4 +- addons/marketing_campaign/i18n/sv.po | 4 +- addons/marketing_campaign/i18n/th.po | 4 +- addons/marketing_campaign/i18n/tr.po | 4 +- addons/marketing_campaign/i18n/zh_CN.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ar.po | 4 +- addons/marketing_campaign_crm_demo/i18n/bg.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ca.po | 4 +- addons/marketing_campaign_crm_demo/i18n/da.po | 4 +- addons/marketing_campaign_crm_demo/i18n/de.po | 4 +- addons/marketing_campaign_crm_demo/i18n/es.po | 4 +- .../marketing_campaign_crm_demo/i18n/es_CR.po | 4 +- addons/marketing_campaign_crm_demo/i18n/fr.po | 4 +- addons/marketing_campaign_crm_demo/i18n/gl.po | 4 +- addons/marketing_campaign_crm_demo/i18n/hr.po | 4 +- addons/marketing_campaign_crm_demo/i18n/hu.po | 4 +- addons/marketing_campaign_crm_demo/i18n/it.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ja.po | 4 +- addons/marketing_campaign_crm_demo/i18n/mk.po | 4 +- addons/marketing_campaign_crm_demo/i18n/nb.po | 4 +- addons/marketing_campaign_crm_demo/i18n/nl.po | 4 +- addons/marketing_campaign_crm_demo/i18n/pt.po | 4 +- .../marketing_campaign_crm_demo/i18n/pt_BR.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ro.po | 6 +- addons/marketing_campaign_crm_demo/i18n/ru.po | 4 +- addons/marketing_campaign_crm_demo/i18n/sl.po | 4 +- addons/marketing_campaign_crm_demo/i18n/sr.po | 4 +- .../i18n/sr@latin.po | 4 +- addons/marketing_campaign_crm_demo/i18n/tr.po | 4 +- .../marketing_campaign_crm_demo/i18n/zh_CN.po | 41 ++- addons/membership/i18n/ar.po | 4 +- addons/membership/i18n/bg.po | 4 +- addons/membership/i18n/bs.po | 4 +- addons/membership/i18n/ca.po | 4 +- addons/membership/i18n/cs.po | 4 +- addons/membership/i18n/da.po | 4 +- addons/membership/i18n/de.po | 4 +- addons/membership/i18n/es.po | 4 +- addons/membership/i18n/es_AR.po | 4 +- addons/membership/i18n/es_CR.po | 4 +- addons/membership/i18n/et.po | 4 +- addons/membership/i18n/fi.po | 4 +- addons/membership/i18n/fr.po | 4 +- addons/membership/i18n/gl.po | 4 +- addons/membership/i18n/hr.po | 4 +- addons/membership/i18n/hu.po | 4 +- addons/membership/i18n/id.po | 4 +- addons/membership/i18n/it.po | 4 +- addons/membership/i18n/ja.po | 4 +- addons/membership/i18n/ko.po | 4 +- addons/membership/i18n/lt.po | 4 +- addons/membership/i18n/mk.po | 4 +- addons/membership/i18n/mn.po | 4 +- addons/membership/i18n/nl.po | 6 +- addons/membership/i18n/nl_BE.po | 4 +- addons/membership/i18n/pl.po | 4 +- addons/membership/i18n/pt.po | 4 +- addons/membership/i18n/pt_BR.po | 4 +- addons/membership/i18n/ro.po | 6 +- addons/membership/i18n/ru.po | 4 +- addons/membership/i18n/sk.po | 4 +- addons/membership/i18n/sl.po | 4 +- addons/membership/i18n/sq.po | 4 +- addons/membership/i18n/sr@latin.po | 4 +- addons/membership/i18n/sv.po | 4 +- addons/membership/i18n/tlh.po | 4 +- addons/membership/i18n/tr.po | 4 +- addons/membership/i18n/uk.po | 4 +- addons/membership/i18n/vi.po | 4 +- addons/membership/i18n/zh_CN.po | 52 +-- addons/membership/i18n/zh_TW.po | 4 +- addons/mrp/i18n/ar.po | 4 +- addons/mrp/i18n/bg.po | 4 +- addons/mrp/i18n/bs.po | 4 +- addons/mrp/i18n/ca.po | 4 +- addons/mrp/i18n/cs.po | 4 +- addons/mrp/i18n/da.po | 4 +- addons/mrp/i18n/de.po | 4 +- addons/mrp/i18n/el.po | 4 +- addons/mrp/i18n/es.po | 4 +- addons/mrp/i18n/es_AR.po | 4 +- addons/mrp/i18n/es_BO.po | 4 +- addons/mrp/i18n/es_CL.po | 4 +- addons/mrp/i18n/es_CR.po | 4 +- addons/mrp/i18n/es_EC.po | 4 +- addons/mrp/i18n/es_MX.po | 4 +- addons/mrp/i18n/et.po | 4 +- addons/mrp/i18n/fi.po | 4 +- addons/mrp/i18n/fr.po | 4 +- addons/mrp/i18n/gl.po | 4 +- addons/mrp/i18n/hi.po | 4 +- addons/mrp/i18n/hr.po | 4 +- addons/mrp/i18n/hu.po | 4 +- addons/mrp/i18n/id.po | 4 +- addons/mrp/i18n/it.po | 4 +- addons/mrp/i18n/ja.po | 4 +- addons/mrp/i18n/ko.po | 4 +- addons/mrp/i18n/lt.po | 4 +- addons/mrp/i18n/lv.po | 4 +- addons/mrp/i18n/mk.po | 4 +- addons/mrp/i18n/mn.po | 4 +- addons/mrp/i18n/nb.po | 4 +- addons/mrp/i18n/nl.po | 4 +- addons/mrp/i18n/nl_BE.po | 4 +- addons/mrp/i18n/pl.po | 2 +- addons/mrp/i18n/pt.po | 4 +- addons/mrp/i18n/pt_BR.po | 4 +- addons/mrp/i18n/ro.po | 4 +- addons/mrp/i18n/ru.po | 4 +- addons/mrp/i18n/sk.po | 4 +- addons/mrp/i18n/sl.po | 4 +- addons/mrp/i18n/sq.po | 4 +- addons/mrp/i18n/sr@latin.po | 4 +- addons/mrp/i18n/sv.po | 4 +- addons/mrp/i18n/tlh.po | 4 +- addons/mrp/i18n/tr.po | 4 +- addons/mrp/i18n/uk.po | 4 +- addons/mrp/i18n/vi.po | 4 +- addons/mrp/i18n/zh_CN.po | 4 +- addons/mrp/i18n/zh_HK.po | 4 +- addons/mrp/i18n/zh_TW.po | 4 +- addons/mrp_byproduct/i18n/ab.po | 4 +- addons/mrp_byproduct/i18n/ar.po | 4 +- addons/mrp_byproduct/i18n/bg.po | 4 +- addons/mrp_byproduct/i18n/bs.po | 4 +- addons/mrp_byproduct/i18n/ca.po | 4 +- addons/mrp_byproduct/i18n/cs.po | 4 +- addons/mrp_byproduct/i18n/da.po | 4 +- addons/mrp_byproduct/i18n/de.po | 4 +- addons/mrp_byproduct/i18n/es.po | 4 +- addons/mrp_byproduct/i18n/es_AR.po | 4 +- addons/mrp_byproduct/i18n/es_CR.po | 4 +- addons/mrp_byproduct/i18n/es_EC.po | 4 +- addons/mrp_byproduct/i18n/et.po | 4 +- addons/mrp_byproduct/i18n/fi.po | 4 +- addons/mrp_byproduct/i18n/fr.po | 4 +- addons/mrp_byproduct/i18n/gl.po | 4 +- addons/mrp_byproduct/i18n/hr.po | 4 +- addons/mrp_byproduct/i18n/hu.po | 4 +- addons/mrp_byproduct/i18n/id.po | 4 +- addons/mrp_byproduct/i18n/it.po | 4 +- addons/mrp_byproduct/i18n/ja.po | 4 +- addons/mrp_byproduct/i18n/ko.po | 4 +- addons/mrp_byproduct/i18n/lt.po | 4 +- addons/mrp_byproduct/i18n/lv.po | 4 +- addons/mrp_byproduct/i18n/mk.po | 4 +- addons/mrp_byproduct/i18n/mn.po | 4 +- addons/mrp_byproduct/i18n/nb.po | 4 +- addons/mrp_byproduct/i18n/nl.po | 6 +- addons/mrp_byproduct/i18n/nl_BE.po | 4 +- addons/mrp_byproduct/i18n/oc.po | 4 +- addons/mrp_byproduct/i18n/pl.po | 4 +- addons/mrp_byproduct/i18n/pt.po | 4 +- addons/mrp_byproduct/i18n/pt_BR.po | 4 +- addons/mrp_byproduct/i18n/ro.po | 6 +- addons/mrp_byproduct/i18n/ru.po | 4 +- addons/mrp_byproduct/i18n/sk.po | 4 +- addons/mrp_byproduct/i18n/sl.po | 4 +- addons/mrp_byproduct/i18n/sq.po | 4 +- addons/mrp_byproduct/i18n/sr.po | 4 +- addons/mrp_byproduct/i18n/sr@latin.po | 4 +- addons/mrp_byproduct/i18n/sv.po | 4 +- addons/mrp_byproduct/i18n/tlh.po | 4 +- addons/mrp_byproduct/i18n/tr.po | 4 +- addons/mrp_byproduct/i18n/uk.po | 4 +- addons/mrp_byproduct/i18n/vi.po | 4 +- addons/mrp_byproduct/i18n/zh_CN.po | 4 +- addons/mrp_byproduct/i18n/zh_TW.po | 4 +- addons/mrp_jit/i18n/ar.po | 4 +- addons/mrp_jit/i18n/bg.po | 4 +- addons/mrp_jit/i18n/bs.po | 4 +- addons/mrp_jit/i18n/ca.po | 4 +- addons/mrp_jit/i18n/cs.po | 4 +- addons/mrp_jit/i18n/da.po | 4 +- addons/mrp_jit/i18n/de.po | 4 +- addons/mrp_jit/i18n/el.po | 4 +- addons/mrp_jit/i18n/en_GB.po | 4 +- addons/mrp_jit/i18n/es.po | 4 +- addons/mrp_jit/i18n/es_AR.po | 4 +- addons/mrp_jit/i18n/es_CR.po | 4 +- addons/mrp_jit/i18n/es_EC.po | 4 +- addons/mrp_jit/i18n/et.po | 4 +- addons/mrp_jit/i18n/fi.po | 4 +- addons/mrp_jit/i18n/fr.po | 4 +- addons/mrp_jit/i18n/gl.po | 4 +- addons/mrp_jit/i18n/hr.po | 4 +- addons/mrp_jit/i18n/hu.po | 4 +- addons/mrp_jit/i18n/id.po | 4 +- addons/mrp_jit/i18n/it.po | 4 +- addons/mrp_jit/i18n/ja.po | 4 +- addons/mrp_jit/i18n/kab.po | 4 +- addons/mrp_jit/i18n/ko.po | 4 +- addons/mrp_jit/i18n/lt.po | 4 +- addons/mrp_jit/i18n/mk.po | 4 +- addons/mrp_jit/i18n/ml.po | 4 +- addons/mrp_jit/i18n/mn.po | 4 +- addons/mrp_jit/i18n/nb.po | 4 +- addons/mrp_jit/i18n/nl.po | 4 +- addons/mrp_jit/i18n/nl_BE.po | 4 +- addons/mrp_jit/i18n/oc.po | 4 +- addons/mrp_jit/i18n/pl.po | 4 +- addons/mrp_jit/i18n/pt.po | 4 +- addons/mrp_jit/i18n/pt_BR.po | 4 +- addons/mrp_jit/i18n/ro.po | 4 +- addons/mrp_jit/i18n/ru.po | 4 +- addons/mrp_jit/i18n/sk.po | 4 +- addons/mrp_jit/i18n/sl.po | 4 +- addons/mrp_jit/i18n/sq.po | 4 +- addons/mrp_jit/i18n/sr.po | 4 +- addons/mrp_jit/i18n/sr@latin.po | 4 +- addons/mrp_jit/i18n/sv.po | 4 +- addons/mrp_jit/i18n/ta.po | 4 +- addons/mrp_jit/i18n/tr.po | 4 +- addons/mrp_jit/i18n/uk.po | 4 +- addons/mrp_jit/i18n/vi.po | 4 +- addons/mrp_jit/i18n/zh_CN.po | 4 +- addons/mrp_jit/i18n/zh_TW.po | 4 +- addons/mrp_operations/i18n/ar.po | 4 +- addons/mrp_operations/i18n/bg.po | 4 +- addons/mrp_operations/i18n/bs.po | 4 +- addons/mrp_operations/i18n/ca.po | 4 +- addons/mrp_operations/i18n/cs.po | 4 +- addons/mrp_operations/i18n/da.po | 4 +- addons/mrp_operations/i18n/de.po | 4 +- addons/mrp_operations/i18n/es.po | 4 +- addons/mrp_operations/i18n/es_AR.po | 4 +- addons/mrp_operations/i18n/es_CR.po | 4 +- addons/mrp_operations/i18n/es_EC.po | 4 +- addons/mrp_operations/i18n/et.po | 4 +- addons/mrp_operations/i18n/fi.po | 2 +- addons/mrp_operations/i18n/fr.po | 4 +- addons/mrp_operations/i18n/hi.po | 4 +- addons/mrp_operations/i18n/hr.po | 4 +- addons/mrp_operations/i18n/hu.po | 4 +- addons/mrp_operations/i18n/id.po | 4 +- addons/mrp_operations/i18n/it.po | 4 +- addons/mrp_operations/i18n/ja.po | 4 +- addons/mrp_operations/i18n/ko.po | 4 +- addons/mrp_operations/i18n/lt.po | 4 +- addons/mrp_operations/i18n/lv.po | 4 +- addons/mrp_operations/i18n/mk.po | 4 +- addons/mrp_operations/i18n/mn.po | 4 +- addons/mrp_operations/i18n/nl.po | 6 +- addons/mrp_operations/i18n/nl_BE.po | 4 +- addons/mrp_operations/i18n/pl.po | 4 +- addons/mrp_operations/i18n/pt.po | 4 +- addons/mrp_operations/i18n/pt_BR.po | 4 +- addons/mrp_operations/i18n/ro.po | 6 +- addons/mrp_operations/i18n/ru.po | 4 +- addons/mrp_operations/i18n/sl.po | 4 +- addons/mrp_operations/i18n/sq.po | 4 +- addons/mrp_operations/i18n/sr.po | 4 +- addons/mrp_operations/i18n/sr@latin.po | 4 +- addons/mrp_operations/i18n/sv.po | 4 +- addons/mrp_operations/i18n/tlh.po | 4 +- addons/mrp_operations/i18n/tr.po | 4 +- addons/mrp_operations/i18n/uk.po | 4 +- addons/mrp_operations/i18n/vi.po | 4 +- addons/mrp_operations/i18n/zh_CN.po | 4 +- addons/mrp_operations/i18n/zh_TW.po | 4 +- addons/mrp_repair/i18n/ar.po | 4 +- addons/mrp_repair/i18n/bg.po | 4 +- addons/mrp_repair/i18n/bs.po | 4 +- addons/mrp_repair/i18n/ca.po | 4 +- addons/mrp_repair/i18n/cs.po | 4 +- addons/mrp_repair/i18n/da.po | 4 +- addons/mrp_repair/i18n/de.po | 4 +- addons/mrp_repair/i18n/es.po | 4 +- addons/mrp_repair/i18n/es_AR.po | 4 +- addons/mrp_repair/i18n/es_CR.po | 4 +- addons/mrp_repair/i18n/es_EC.po | 4 +- addons/mrp_repair/i18n/et.po | 4 +- addons/mrp_repair/i18n/fi.po | 4 +- addons/mrp_repair/i18n/fr.po | 4 +- addons/mrp_repair/i18n/hi.po | 4 +- addons/mrp_repair/i18n/hr.po | 4 +- addons/mrp_repair/i18n/hu.po | 4 +- addons/mrp_repair/i18n/id.po | 4 +- addons/mrp_repair/i18n/it.po | 4 +- addons/mrp_repair/i18n/ja.po | 4 +- addons/mrp_repair/i18n/ko.po | 4 +- addons/mrp_repair/i18n/lt.po | 4 +- addons/mrp_repair/i18n/lv.po | 4 +- addons/mrp_repair/i18n/mk.po | 4 +- addons/mrp_repair/i18n/mn.po | 4 +- addons/mrp_repair/i18n/nl.po | 6 +- addons/mrp_repair/i18n/nl_BE.po | 4 +- addons/mrp_repair/i18n/pl.po | 4 +- addons/mrp_repair/i18n/pt.po | 4 +- addons/mrp_repair/i18n/pt_BR.po | 4 +- addons/mrp_repair/i18n/ro.po | 6 +- addons/mrp_repair/i18n/ru.po | 4 +- addons/mrp_repair/i18n/sl.po | 4 +- addons/mrp_repair/i18n/sq.po | 4 +- addons/mrp_repair/i18n/sr.po | 4 +- addons/mrp_repair/i18n/sr@latin.po | 4 +- addons/mrp_repair/i18n/sv.po | 4 +- addons/mrp_repair/i18n/tlh.po | 4 +- addons/mrp_repair/i18n/tr.po | 4 +- addons/mrp_repair/i18n/uk.po | 4 +- addons/mrp_repair/i18n/vi.po | 4 +- addons/mrp_repair/i18n/zh_CN.po | 2 +- addons/mrp_repair/i18n/zh_TW.po | 4 +- addons/multi_company/i18n/ar.po | 4 +- addons/multi_company/i18n/bg.po | 4 +- addons/multi_company/i18n/bs.po | 4 +- addons/multi_company/i18n/ca.po | 4 +- addons/multi_company/i18n/cs.po | 4 +- addons/multi_company/i18n/da.po | 4 +- addons/multi_company/i18n/de.po | 4 +- addons/multi_company/i18n/es.po | 4 +- addons/multi_company/i18n/es_CR.po | 4 +- addons/multi_company/i18n/es_EC.po | 4 +- addons/multi_company/i18n/et.po | 4 +- addons/multi_company/i18n/fi.po | 17 +- addons/multi_company/i18n/fr.po | 4 +- addons/multi_company/i18n/gl.po | 4 +- addons/multi_company/i18n/hr.po | 4 +- addons/multi_company/i18n/hu.po | 4 +- addons/multi_company/i18n/id.po | 4 +- addons/multi_company/i18n/it.po | 4 +- addons/multi_company/i18n/ja.po | 4 +- addons/multi_company/i18n/lo.po | 4 +- addons/multi_company/i18n/lt.po | 4 +- addons/multi_company/i18n/lv.po | 4 +- addons/multi_company/i18n/mk.po | 4 +- addons/multi_company/i18n/mn.po | 4 +- addons/multi_company/i18n/nb.po | 4 +- addons/multi_company/i18n/nl.po | 6 +- addons/multi_company/i18n/oc.po | 4 +- addons/multi_company/i18n/pl.po | 4 +- addons/multi_company/i18n/pt.po | 4 +- addons/multi_company/i18n/pt_BR.po | 4 +- addons/multi_company/i18n/ro.po | 6 +- addons/multi_company/i18n/ru.po | 4 +- addons/multi_company/i18n/sl.po | 4 +- addons/multi_company/i18n/sr.po | 4 +- addons/multi_company/i18n/sr@latin.po | 4 +- addons/multi_company/i18n/sv.po | 4 +- addons/multi_company/i18n/tr.po | 4 +- addons/multi_company/i18n/uk.po | 4 +- addons/multi_company/i18n/vi.po | 4 +- addons/multi_company/i18n/zh_CN.po | 4 +- addons/multi_company/i18n/zh_TW.po | 4 +- addons/note/i18n/bs.po | 4 +- addons/note/i18n/cs.po | 4 +- addons/note/i18n/de.po | 4 +- addons/note/i18n/es.po | 4 +- addons/note/i18n/fr.po | 4 +- addons/note/i18n/hr.po | 4 +- addons/note/i18n/hu.po | 4 +- addons/note/i18n/id.po | 4 +- addons/note/i18n/it.po | 4 +- addons/note/i18n/lt.po | 4 +- addons/note/i18n/mk.po | 4 +- addons/note/i18n/mn.po | 4 +- addons/note/i18n/nl.po | 6 +- addons/note/i18n/pl.po | 4 +- addons/note/i18n/pt.po | 4 +- addons/note/i18n/pt_BR.po | 6 +- addons/note/i18n/ro.po | 6 +- addons/note/i18n/ru.po | 4 +- addons/note/i18n/sl.po | 4 +- addons/note/i18n/sv.po | 4 +- addons/note/i18n/tr.po | 4 +- addons/note/i18n/zh_CN.po | 6 +- addons/note_pad/i18n/cs.po | 4 +- addons/note_pad/i18n/de.po | 4 +- addons/note_pad/i18n/en_GB.po | 4 +- addons/note_pad/i18n/es.po | 4 +- addons/note_pad/i18n/fr.po | 4 +- addons/note_pad/i18n/hr.po | 4 +- addons/note_pad/i18n/hu.po | 4 +- addons/note_pad/i18n/it.po | 4 +- addons/note_pad/i18n/lt.po | 4 +- addons/note_pad/i18n/mk.po | 4 +- addons/note_pad/i18n/mn.po | 4 +- addons/note_pad/i18n/nl.po | 4 +- addons/note_pad/i18n/pl.po | 4 +- addons/note_pad/i18n/pt.po | 4 +- addons/note_pad/i18n/pt_BR.po | 4 +- addons/note_pad/i18n/ro.po | 6 +- addons/note_pad/i18n/ru.po | 4 +- addons/note_pad/i18n/sl.po | 4 +- addons/note_pad/i18n/sv.po | 4 +- addons/note_pad/i18n/tr.po | 4 +- addons/note_pad/i18n/vi.po | 4 +- addons/note_pad/i18n/zh_CN.po | 4 +- addons/pad/i18n/ar.po | 4 +- addons/pad/i18n/bg.po | 4 +- addons/pad/i18n/ca.po | 4 +- addons/pad/i18n/cs.po | 4 +- addons/pad/i18n/da.po | 4 +- addons/pad/i18n/de.po | 4 +- addons/pad/i18n/es.po | 4 +- addons/pad/i18n/es_CR.po | 4 +- addons/pad/i18n/fi.po | 4 +- addons/pad/i18n/fr.po | 4 +- addons/pad/i18n/gl.po | 4 +- addons/pad/i18n/hr.po | 4 +- addons/pad/i18n/hu.po | 4 +- addons/pad/i18n/it.po | 4 +- addons/pad/i18n/ja.po | 4 +- addons/pad/i18n/mk.po | 4 +- addons/pad/i18n/mn.po | 4 +- addons/pad/i18n/nb.po | 4 +- addons/pad/i18n/nl.po | 6 +- addons/pad/i18n/pl.po | 4 +- addons/pad/i18n/pt.po | 4 +- addons/pad/i18n/pt_BR.po | 4 +- addons/pad/i18n/ro.po | 6 +- addons/pad/i18n/ru.po | 4 +- addons/pad/i18n/sl.po | 4 +- addons/pad/i18n/sr@latin.po | 4 +- addons/pad/i18n/sv.po | 4 +- addons/pad/i18n/tr.po | 4 +- addons/pad/i18n/zh_CN.po | 4 +- addons/pad_project/i18n/ar.po | 4 +- addons/pad_project/i18n/cs.po | 4 +- addons/pad_project/i18n/de.po | 4 +- addons/pad_project/i18n/es.po | 4 +- addons/pad_project/i18n/es_CR.po | 4 +- addons/pad_project/i18n/fi.po | 4 +- addons/pad_project/i18n/fr.po | 4 +- addons/pad_project/i18n/hr.po | 4 +- addons/pad_project/i18n/hu.po | 4 +- addons/pad_project/i18n/it.po | 4 +- addons/pad_project/i18n/ja.po | 4 +- addons/pad_project/i18n/lt.po | 4 +- addons/pad_project/i18n/mk.po | 4 +- addons/pad_project/i18n/mn.po | 4 +- addons/pad_project/i18n/nb.po | 4 +- addons/pad_project/i18n/nl.po | 4 +- addons/pad_project/i18n/pl.po | 4 +- addons/pad_project/i18n/pt.po | 4 +- addons/pad_project/i18n/pt_BR.po | 4 +- addons/pad_project/i18n/ro.po | 6 +- addons/pad_project/i18n/ru.po | 4 +- addons/pad_project/i18n/sl.po | 4 +- addons/pad_project/i18n/sv.po | 4 +- addons/pad_project/i18n/tr.po | 4 +- addons/pad_project/i18n/zh_CN.po | 4 +- addons/pad_project/i18n/zh_TW.po | 4 +- addons/plugin/i18n/ar.po | 4 +- addons/plugin/i18n/cs.po | 4 +- addons/plugin/i18n/de.po | 4 +- addons/plugin/i18n/es.po | 4 +- addons/plugin/i18n/es_CR.po | 4 +- addons/plugin/i18n/fi.po | 4 +- addons/plugin/i18n/fr.po | 4 +- addons/plugin/i18n/hr.po | 4 +- addons/plugin/i18n/hu.po | 4 +- addons/plugin/i18n/it.po | 4 +- addons/plugin/i18n/ja.po | 4 +- addons/plugin/i18n/lt.po | 4 +- addons/plugin/i18n/mk.po | 4 +- addons/plugin/i18n/mn.po | 4 +- addons/plugin/i18n/nb.po | 4 +- addons/plugin/i18n/nl.po | 6 +- addons/plugin/i18n/pt.po | 4 +- addons/plugin/i18n/pt_BR.po | 6 +- addons/plugin/i18n/ro.po | 6 +- addons/plugin/i18n/ru.po | 4 +- addons/plugin/i18n/sl.po | 4 +- addons/plugin/i18n/sv.po | 4 +- addons/plugin/i18n/tr.po | 4 +- addons/plugin/i18n/zh_CN.po | 4 +- addons/plugin/i18n/zh_TW.po | 4 +- addons/plugin_outlook/i18n/ar.po | 4 +- addons/plugin_outlook/i18n/bg.po | 4 +- addons/plugin_outlook/i18n/ca.po | 4 +- addons/plugin_outlook/i18n/cs.po | 4 +- addons/plugin_outlook/i18n/da.po | 4 +- addons/plugin_outlook/i18n/de.po | 4 +- addons/plugin_outlook/i18n/el.po | 4 +- addons/plugin_outlook/i18n/es.po | 4 +- addons/plugin_outlook/i18n/es_CR.po | 4 +- addons/plugin_outlook/i18n/et.po | 4 +- addons/plugin_outlook/i18n/fi.po | 4 +- addons/plugin_outlook/i18n/fr.po | 4 +- addons/plugin_outlook/i18n/gl.po | 4 +- addons/plugin_outlook/i18n/hr.po | 4 +- addons/plugin_outlook/i18n/hu.po | 4 +- addons/plugin_outlook/i18n/id.po | 4 +- addons/plugin_outlook/i18n/it.po | 4 +- addons/plugin_outlook/i18n/ja.po | 4 +- addons/plugin_outlook/i18n/mk.po | 4 +- addons/plugin_outlook/i18n/mn.po | 4 +- addons/plugin_outlook/i18n/nb.po | 4 +- addons/plugin_outlook/i18n/nl.po | 4 +- addons/plugin_outlook/i18n/pl.po | 4 +- addons/plugin_outlook/i18n/pt.po | 4 +- addons/plugin_outlook/i18n/pt_BR.po | 4 +- addons/plugin_outlook/i18n/ro.po | 6 +- addons/plugin_outlook/i18n/ru.po | 4 +- addons/plugin_outlook/i18n/sl.po | 16 +- addons/plugin_outlook/i18n/sr@latin.po | 4 +- addons/plugin_outlook/i18n/sv.po | 4 +- addons/plugin_outlook/i18n/tr.po | 4 +- addons/plugin_outlook/i18n/zh_CN.po | 4 +- addons/plugin_thunderbird/i18n/ar.po | 4 +- addons/plugin_thunderbird/i18n/bg.po | 4 +- addons/plugin_thunderbird/i18n/ca.po | 4 +- addons/plugin_thunderbird/i18n/cs.po | 4 +- addons/plugin_thunderbird/i18n/da.po | 4 +- addons/plugin_thunderbird/i18n/de.po | 4 +- addons/plugin_thunderbird/i18n/en_GB.po | 4 +- addons/plugin_thunderbird/i18n/en_US.po | 4 +- addons/plugin_thunderbird/i18n/es.po | 4 +- addons/plugin_thunderbird/i18n/es_CR.po | 4 +- addons/plugin_thunderbird/i18n/et.po | 4 +- addons/plugin_thunderbird/i18n/eu.po | 4 +- addons/plugin_thunderbird/i18n/fi.po | 4 +- addons/plugin_thunderbird/i18n/fr.po | 4 +- addons/plugin_thunderbird/i18n/gl.po | 4 +- addons/plugin_thunderbird/i18n/hr.po | 4 +- addons/plugin_thunderbird/i18n/hu.po | 4 +- addons/plugin_thunderbird/i18n/is.po | 4 +- addons/plugin_thunderbird/i18n/it.po | 4 +- addons/plugin_thunderbird/i18n/ja.po | 4 +- addons/plugin_thunderbird/i18n/mk.po | 4 +- addons/plugin_thunderbird/i18n/mn.po | 4 +- addons/plugin_thunderbird/i18n/nb.po | 4 +- addons/plugin_thunderbird/i18n/nl.po | 4 +- addons/plugin_thunderbird/i18n/pl.po | 4 +- addons/plugin_thunderbird/i18n/pt.po | 4 +- addons/plugin_thunderbird/i18n/pt_BR.po | 4 +- addons/plugin_thunderbird/i18n/ro.po | 6 +- addons/plugin_thunderbird/i18n/ru.po | 4 +- addons/plugin_thunderbird/i18n/sk.po | 4 +- addons/plugin_thunderbird/i18n/sl.po | 4 +- addons/plugin_thunderbird/i18n/sr.po | 4 +- addons/plugin_thunderbird/i18n/sr@latin.po | 4 +- addons/plugin_thunderbird/i18n/sv.po | 4 +- addons/plugin_thunderbird/i18n/tr.po | 4 +- addons/plugin_thunderbird/i18n/zh_CN.po | 4 +- addons/point_of_sale/i18n/ar.po | 4 +- addons/point_of_sale/i18n/bg.po | 4 +- addons/point_of_sale/i18n/bs.po | 4 +- addons/point_of_sale/i18n/ca.po | 4 +- addons/point_of_sale/i18n/cs.po | 4 +- addons/point_of_sale/i18n/da.po | 4 +- addons/point_of_sale/i18n/de.po | 4 +- addons/point_of_sale/i18n/el.po | 4 +- addons/point_of_sale/i18n/es.po | 4 +- addons/point_of_sale/i18n/es_AR.po | 4 +- addons/point_of_sale/i18n/es_BO.po | 4 +- addons/point_of_sale/i18n/es_CR.po | 4 +- addons/point_of_sale/i18n/es_EC.po | 4 +- addons/point_of_sale/i18n/et.po | 4 +- addons/point_of_sale/i18n/fi.po | 4 +- addons/point_of_sale/i18n/fr.po | 4 +- addons/point_of_sale/i18n/he.po | 4 +- addons/point_of_sale/i18n/hi.po | 4 +- addons/point_of_sale/i18n/hr.po | 4 +- addons/point_of_sale/i18n/hu.po | 4 +- addons/point_of_sale/i18n/id.po | 4 +- addons/point_of_sale/i18n/it.po | 4 +- addons/point_of_sale/i18n/ja.po | 4 +- addons/point_of_sale/i18n/ko.po | 4 +- addons/point_of_sale/i18n/lt.po | 4 +- addons/point_of_sale/i18n/lv.po | 4 +- addons/point_of_sale/i18n/mk.po | 4 +- addons/point_of_sale/i18n/mn.po | 4 +- addons/point_of_sale/i18n/nb.po | 4 +- addons/point_of_sale/i18n/nl.po | 4 +- addons/point_of_sale/i18n/nl_BE.po | 4 +- addons/point_of_sale/i18n/pl.po | 4 +- addons/point_of_sale/i18n/pt.po | 4 +- addons/point_of_sale/i18n/pt_BR.po | 6 +- addons/point_of_sale/i18n/ro.po | 6 +- addons/point_of_sale/i18n/ru.po | 4 +- addons/point_of_sale/i18n/sl.po | 242 ++++++++------ addons/point_of_sale/i18n/sq.po | 4 +- addons/point_of_sale/i18n/sr.po | 4 +- addons/point_of_sale/i18n/sr@latin.po | 4 +- addons/point_of_sale/i18n/sv.po | 4 +- addons/point_of_sale/i18n/tlh.po | 4 +- addons/point_of_sale/i18n/tr.po | 4 +- addons/point_of_sale/i18n/uk.po | 4 +- addons/point_of_sale/i18n/vi.po | 4 +- addons/point_of_sale/i18n/zh_CN.po | 187 +++++------ addons/point_of_sale/i18n/zh_HK.po | 4 +- addons/point_of_sale/i18n/zh_TW.po | 4 +- addons/portal/i18n/ar.po | 4 +- addons/portal/i18n/bg.po | 4 +- addons/portal/i18n/bs.po | 4 +- addons/portal/i18n/ca.po | 4 +- addons/portal/i18n/cs.po | 4 +- addons/portal/i18n/da.po | 4 +- addons/portal/i18n/de.po | 4 +- addons/portal/i18n/es.po | 4 +- addons/portal/i18n/es_CR.po | 4 +- addons/portal/i18n/et.po | 4 +- addons/portal/i18n/fi.po | 4 +- addons/portal/i18n/fr.po | 4 +- addons/portal/i18n/hr.po | 4 +- addons/portal/i18n/hu.po | 4 +- addons/portal/i18n/id.po | 4 +- addons/portal/i18n/it.po | 4 +- addons/portal/i18n/ja.po | 4 +- addons/portal/i18n/ko.po | 6 +- addons/portal/i18n/lo.po | 4 +- addons/portal/i18n/lt.po | 4 +- addons/portal/i18n/mk.po | 4 +- addons/portal/i18n/mn.po | 4 +- addons/portal/i18n/nl.po | 6 +- addons/portal/i18n/pl.po | 2 +- addons/portal/i18n/pt.po | 4 +- addons/portal/i18n/pt_BR.po | 6 +- addons/portal/i18n/ro.po | 6 +- addons/portal/i18n/ru.po | 4 +- addons/portal/i18n/sl.po | 2 +- addons/portal/i18n/sr.po | 4 +- addons/portal/i18n/sv.po | 4 +- addons/portal/i18n/th.po | 4 +- addons/portal/i18n/tr.po | 4 +- addons/portal/i18n/uk.po | 4 +- addons/portal/i18n/zh_CN.po | 4 +- addons/portal/i18n/zh_TW.po | 4 +- addons/portal_anonymous/i18n/cs.po | 4 +- addons/portal_anonymous/i18n/da.po | 4 +- addons/portal_anonymous/i18n/de.po | 4 +- addons/portal_anonymous/i18n/en_AU.po | 4 +- addons/portal_anonymous/i18n/en_GB.po | 4 +- addons/portal_anonymous/i18n/es.po | 4 +- addons/portal_anonymous/i18n/fr.po | 4 +- addons/portal_anonymous/i18n/hr.po | 4 +- addons/portal_anonymous/i18n/hu.po | 4 +- addons/portal_anonymous/i18n/lt.po | 4 +- addons/portal_anonymous/i18n/mk.po | 4 +- addons/portal_anonymous/i18n/mn.po | 4 +- addons/portal_anonymous/i18n/nl.po | 6 +- addons/portal_anonymous/i18n/pl.po | 2 +- addons/portal_anonymous/i18n/pt.po | 4 +- addons/portal_anonymous/i18n/pt_BR.po | 4 +- addons/portal_anonymous/i18n/ro.po | 6 +- addons/portal_anonymous/i18n/ru.po | 4 +- addons/portal_anonymous/i18n/sl.po | 4 +- addons/portal_anonymous/i18n/sv.po | 4 +- addons/portal_anonymous/i18n/th.po | 4 +- addons/portal_anonymous/i18n/tr.po | 4 +- addons/portal_anonymous/i18n/zh_CN.po | 6 +- addons/portal_claim/i18n/cs.po | 4 +- addons/portal_claim/i18n/de.po | 4 +- addons/portal_claim/i18n/en_GB.po | 4 +- addons/portal_claim/i18n/es.po | 4 +- addons/portal_claim/i18n/fr.po | 4 +- addons/portal_claim/i18n/hr.po | 4 +- addons/portal_claim/i18n/hu.po | 4 +- addons/portal_claim/i18n/it.po | 4 +- addons/portal_claim/i18n/mk.po | 4 +- addons/portal_claim/i18n/nl.po | 6 +- addons/portal_claim/i18n/pl.po | 4 +- addons/portal_claim/i18n/pt.po | 4 +- addons/portal_claim/i18n/pt_BR.po | 4 +- addons/portal_claim/i18n/ro.po | 6 +- addons/portal_claim/i18n/sl.po | 4 +- addons/portal_claim/i18n/tr.po | 4 +- addons/portal_claim/i18n/zh_CN.po | 4 +- addons/portal_crm/i18n/bs.po | 4 +- addons/portal_crm/i18n/cs.po | 4 +- addons/portal_crm/i18n/de.po | 4 +- addons/portal_crm/i18n/es.po | 4 +- addons/portal_crm/i18n/fr.po | 4 +- addons/portal_crm/i18n/hr.po | 4 +- addons/portal_crm/i18n/hu.po | 4 +- addons/portal_crm/i18n/lt.po | 4 +- addons/portal_crm/i18n/mk.po | 4 +- addons/portal_crm/i18n/nl.po | 4 +- addons/portal_crm/i18n/pl.po | 4 +- addons/portal_crm/i18n/pt.po | 4 +- addons/portal_crm/i18n/pt_BR.po | 6 +- addons/portal_crm/i18n/ro.po | 6 +- addons/portal_crm/i18n/sl.po | 4 +- addons/portal_crm/i18n/sv.po | 4 +- addons/portal_crm/i18n/th.po | 4 +- addons/portal_crm/i18n/tr.po | 4 +- addons/portal_crm/i18n/zh_CN.po | 4 +- addons/portal_event/i18n/cs.po | 4 +- addons/portal_event/i18n/de.po | 4 +- addons/portal_event/i18n/es.po | 4 +- addons/portal_event/i18n/fr.po | 4 +- addons/portal_event/i18n/hr.po | 4 +- addons/portal_event/i18n/hu.po | 4 +- addons/portal_event/i18n/mk.po | 4 +- addons/portal_event/i18n/nl.po | 6 +- addons/portal_event/i18n/pt.po | 4 +- addons/portal_event/i18n/pt_BR.po | 4 +- addons/portal_event/i18n/ro.po | 6 +- addons/portal_event/i18n/sl.po | 4 +- addons/portal_event/i18n/sv.po | 4 +- addons/portal_event/i18n/tr.po | 4 +- addons/portal_event/i18n/zh_CN.po | 4 +- addons/portal_hr_employees/i18n/cs.po | 4 +- addons/portal_hr_employees/i18n/de.po | 4 +- addons/portal_hr_employees/i18n/es.po | 4 +- addons/portal_hr_employees/i18n/fr.po | 6 +- addons/portal_hr_employees/i18n/hr.po | 4 +- addons/portal_hr_employees/i18n/hu.po | 4 +- addons/portal_hr_employees/i18n/lt.po | 4 +- addons/portal_hr_employees/i18n/mk.po | 4 +- addons/portal_hr_employees/i18n/nl.po | 6 +- addons/portal_hr_employees/i18n/pl.po | 4 +- addons/portal_hr_employees/i18n/pt.po | 4 +- addons/portal_hr_employees/i18n/pt_BR.po | 6 +- addons/portal_hr_employees/i18n/ro.po | 6 +- addons/portal_hr_employees/i18n/sl.po | 4 +- addons/portal_hr_employees/i18n/th.po | 4 +- addons/portal_hr_employees/i18n/tr.po | 4 +- addons/portal_hr_employees/i18n/zh_CN.po | 6 +- addons/portal_project/i18n/cs.po | 4 +- addons/portal_project/i18n/de.po | 4 +- addons/portal_project/i18n/es.po | 4 +- addons/portal_project/i18n/fr.po | 4 +- addons/portal_project/i18n/hr.po | 4 +- addons/portal_project/i18n/hu.po | 4 +- addons/portal_project/i18n/it.po | 4 +- addons/portal_project/i18n/mk.po | 4 +- addons/portal_project/i18n/nl.po | 6 +- addons/portal_project/i18n/pl.po | 4 +- addons/portal_project/i18n/pt.po | 4 +- addons/portal_project/i18n/pt_BR.po | 6 +- addons/portal_project/i18n/ro.po | 6 +- addons/portal_project/i18n/sl.po | 4 +- addons/portal_project/i18n/sv.po | 4 +- addons/portal_project/i18n/tr.po | 4 +- addons/portal_project/i18n/zh_CN.po | 8 +- addons/portal_project_issue/i18n/cs.po | 4 +- addons/portal_project_issue/i18n/de.po | 4 +- addons/portal_project_issue/i18n/en_GB.po | 4 +- addons/portal_project_issue/i18n/es.po | 4 +- addons/portal_project_issue/i18n/fr.po | 6 +- addons/portal_project_issue/i18n/hr.po | 4 +- addons/portal_project_issue/i18n/hu.po | 4 +- addons/portal_project_issue/i18n/it.po | 4 +- addons/portal_project_issue/i18n/mk.po | 4 +- addons/portal_project_issue/i18n/nl.po | 4 +- addons/portal_project_issue/i18n/pl.po | 4 +- addons/portal_project_issue/i18n/pt.po | 4 +- addons/portal_project_issue/i18n/pt_BR.po | 4 +- addons/portal_project_issue/i18n/ro.po | 6 +- addons/portal_project_issue/i18n/sl.po | 4 +- addons/portal_project_issue/i18n/sv.po | 4 +- addons/portal_project_issue/i18n/tr.po | 4 +- addons/portal_project_issue/i18n/zh_CN.po | 10 +- addons/portal_sale/i18n/cs.po | 4 +- addons/portal_sale/i18n/de.po | 4 +- addons/portal_sale/i18n/es.po | 4 +- addons/portal_sale/i18n/es_MX.po | 4 +- addons/portal_sale/i18n/fi.po | 4 +- addons/portal_sale/i18n/fr.po | 6 +- addons/portal_sale/i18n/hr.po | 4 +- addons/portal_sale/i18n/hu.po | 4 +- addons/portal_sale/i18n/lt.po | 4 +- addons/portal_sale/i18n/mk.po | 4 +- addons/portal_sale/i18n/mn.po | 4 +- addons/portal_sale/i18n/nl.po | 6 +- addons/portal_sale/i18n/pl.po | 4 +- addons/portal_sale/i18n/pt.po | 4 +- addons/portal_sale/i18n/pt_BR.po | 4 +- addons/portal_sale/i18n/ro.po | 6 +- addons/portal_sale/i18n/ru.po | 4 +- addons/portal_sale/i18n/sl.po | 4 +- addons/portal_sale/i18n/sv.po | 4 +- addons/portal_sale/i18n/tr.po | 4 +- addons/portal_sale/i18n/zh_CN.po | 4 +- addons/process/i18n/ar.po | 4 +- addons/process/i18n/bg.po | 4 +- addons/process/i18n/bs.po | 4 +- addons/process/i18n/ca.po | 4 +- addons/process/i18n/cs.po | 4 +- addons/process/i18n/da.po | 4 +- addons/process/i18n/de.po | 4 +- addons/process/i18n/el.po | 4 +- addons/process/i18n/es.po | 4 +- addons/process/i18n/es_AR.po | 4 +- addons/process/i18n/es_CL.po | 4 +- addons/process/i18n/es_CR.po | 4 +- addons/process/i18n/et.po | 4 +- addons/process/i18n/fi.po | 2 +- addons/process/i18n/fr.po | 4 +- addons/process/i18n/gl.po | 4 +- addons/process/i18n/hi.po | 4 +- addons/process/i18n/hr.po | 2 +- addons/process/i18n/hu.po | 4 +- addons/process/i18n/id.po | 4 +- addons/process/i18n/it.po | 4 +- addons/process/i18n/ja.po | 4 +- addons/process/i18n/ko.po | 4 +- addons/process/i18n/lt.po | 4 +- addons/process/i18n/mk.po | 4 +- addons/process/i18n/mn.po | 4 +- addons/process/i18n/nl.po | 4 +- addons/process/i18n/nl_BE.po | 4 +- addons/process/i18n/pl.po | 4 +- addons/process/i18n/pt.po | 4 +- addons/process/i18n/pt_BR.po | 4 +- addons/process/i18n/ro.po | 6 +- addons/process/i18n/ru.po | 4 +- addons/process/i18n/sk.po | 4 +- addons/process/i18n/sl.po | 4 +- addons/process/i18n/sq.po | 4 +- addons/process/i18n/sr.po | 4 +- addons/process/i18n/sr@latin.po | 4 +- addons/process/i18n/sv.po | 4 +- addons/process/i18n/tlh.po | 4 +- addons/process/i18n/tr.po | 4 +- addons/process/i18n/uk.po | 4 +- addons/process/i18n/vi.po | 4 +- addons/process/i18n/zh_CN.po | 4 +- addons/process/i18n/zh_TW.po | 4 +- addons/procurement/i18n/ar.po | 4 +- addons/procurement/i18n/bg.po | 4 +- addons/procurement/i18n/bs.po | 4 +- addons/procurement/i18n/ca.po | 4 +- addons/procurement/i18n/cs.po | 4 +- addons/procurement/i18n/da.po | 4 +- addons/procurement/i18n/de.po | 4 +- addons/procurement/i18n/es.po | 4 +- addons/procurement/i18n/es_CL.po | 4 +- addons/procurement/i18n/es_CR.po | 4 +- addons/procurement/i18n/es_EC.po | 4 +- addons/procurement/i18n/et.po | 4 +- addons/procurement/i18n/fi.po | 4 +- addons/procurement/i18n/fr.po | 4 +- addons/procurement/i18n/gl.po | 4 +- addons/procurement/i18n/hr.po | 2 +- addons/procurement/i18n/hu.po | 4 +- addons/procurement/i18n/id.po | 4 +- addons/procurement/i18n/it.po | 4 +- addons/procurement/i18n/ja.po | 4 +- addons/procurement/i18n/lt.po | 4 +- addons/procurement/i18n/mk.po | 4 +- addons/procurement/i18n/mn.po | 4 +- addons/procurement/i18n/nb.po | 4 +- addons/procurement/i18n/nl.po | 6 +- addons/procurement/i18n/pl.po | 4 +- addons/procurement/i18n/pt.po | 4 +- addons/procurement/i18n/pt_BR.po | 6 +- addons/procurement/i18n/ro.po | 6 +- addons/procurement/i18n/ru.po | 4 +- addons/procurement/i18n/sl.po | 4 +- addons/procurement/i18n/sr.po | 4 +- addons/procurement/i18n/sr@latin.po | 4 +- addons/procurement/i18n/sv.po | 4 +- addons/procurement/i18n/tr.po | 4 +- addons/procurement/i18n/vi.po | 4 +- addons/procurement/i18n/zh_CN.po | 4 +- addons/product/i18n/ar.po | 4 +- addons/product/i18n/bg.po | 4 +- addons/product/i18n/bs.po | 4 +- addons/product/i18n/ca.po | 4 +- addons/product/i18n/cs.po | 4 +- addons/product/i18n/da.po | 4 +- addons/product/i18n/de.po | 4 +- addons/product/i18n/el.po | 4 +- addons/product/i18n/es.po | 4 +- addons/product/i18n/es_AR.po | 4 +- addons/product/i18n/es_CL.po | 4 +- addons/product/i18n/es_CR.po | 4 +- addons/product/i18n/es_EC.po | 4 +- addons/product/i18n/es_PY.po | 4 +- addons/product/i18n/et.po | 4 +- addons/product/i18n/eu.po | 4 +- addons/product/i18n/fi.po | 2 +- addons/product/i18n/fr.po | 4 +- addons/product/i18n/gl.po | 4 +- addons/product/i18n/hr.po | 4 +- addons/product/i18n/hu.po | 4 +- addons/product/i18n/id.po | 4 +- addons/product/i18n/it.po | 4 +- addons/product/i18n/ja.po | 4 +- addons/product/i18n/ko.po | 4 +- addons/product/i18n/lo.po | 4 +- addons/product/i18n/lt.po | 4 +- addons/product/i18n/lv.po | 4 +- addons/product/i18n/mk.po | 4 +- addons/product/i18n/mn.po | 4 +- addons/product/i18n/nb.po | 4 +- addons/product/i18n/nl.po | 4 +- addons/product/i18n/nl_BE.po | 4 +- addons/product/i18n/pl.po | 4 +- addons/product/i18n/pt.po | 4 +- addons/product/i18n/pt_BR.po | 4 +- addons/product/i18n/ro.po | 4 +- addons/product/i18n/ru.po | 4 +- addons/product/i18n/sk.po | 4 +- addons/product/i18n/sl.po | 4 +- addons/product/i18n/sq.po | 4 +- addons/product/i18n/sr.po | 4 +- addons/product/i18n/sr@latin.po | 4 +- addons/product/i18n/sv.po | 4 +- addons/product/i18n/th.po | 4 +- addons/product/i18n/tlh.po | 4 +- addons/product/i18n/tr.po | 4 +- addons/product/i18n/uk.po | 4 +- addons/product/i18n/vi.po | 4 +- addons/product/i18n/zh_CN.po | 15 +- addons/product/i18n/zh_TW.po | 4 +- addons/product_expiry/i18n/ar.po | 4 +- addons/product_expiry/i18n/bs.po | 4 +- addons/product_expiry/i18n/ca.po | 4 +- addons/product_expiry/i18n/cs.po | 4 +- addons/product_expiry/i18n/da.po | 4 +- addons/product_expiry/i18n/de.po | 4 +- addons/product_expiry/i18n/el.po | 4 +- addons/product_expiry/i18n/es.po | 4 +- addons/product_expiry/i18n/es_CR.po | 4 +- addons/product_expiry/i18n/es_EC.po | 4 +- addons/product_expiry/i18n/et.po | 4 +- addons/product_expiry/i18n/fi.po | 4 +- addons/product_expiry/i18n/fr.po | 6 +- addons/product_expiry/i18n/gl.po | 4 +- addons/product_expiry/i18n/hr.po | 4 +- addons/product_expiry/i18n/hu.po | 4 +- addons/product_expiry/i18n/it.po | 4 +- addons/product_expiry/i18n/ja.po | 4 +- addons/product_expiry/i18n/mk.po | 4 +- addons/product_expiry/i18n/mn.po | 4 +- addons/product_expiry/i18n/nl.po | 4 +- addons/product_expiry/i18n/pl.po | 4 +- addons/product_expiry/i18n/pt.po | 4 +- addons/product_expiry/i18n/pt_BR.po | 4 +- addons/product_expiry/i18n/ro.po | 6 +- addons/product_expiry/i18n/ru.po | 4 +- addons/product_expiry/i18n/sl.po | 4 +- addons/product_expiry/i18n/sr.po | 4 +- addons/product_expiry/i18n/sr@latin.po | 4 +- addons/product_expiry/i18n/sv.po | 4 +- addons/product_expiry/i18n/tr.po | 4 +- addons/product_expiry/i18n/vi.po | 4 +- addons/product_expiry/i18n/zh_CN.po | 21 +- addons/product_expiry/i18n/zh_TW.po | 4 +- addons/product_manufacturer/i18n/ar.po | 4 +- addons/product_manufacturer/i18n/bg.po | 4 +- addons/product_manufacturer/i18n/bs.po | 4 +- addons/product_manufacturer/i18n/ca.po | 4 +- addons/product_manufacturer/i18n/cs.po | 4 +- addons/product_manufacturer/i18n/da.po | 4 +- addons/product_manufacturer/i18n/de.po | 4 +- addons/product_manufacturer/i18n/el.po | 4 +- addons/product_manufacturer/i18n/es.po | 4 +- addons/product_manufacturer/i18n/es_CR.po | 4 +- addons/product_manufacturer/i18n/es_EC.po | 4 +- addons/product_manufacturer/i18n/et.po | 4 +- addons/product_manufacturer/i18n/fi.po | 4 +- addons/product_manufacturer/i18n/fr.po | 4 +- addons/product_manufacturer/i18n/gl.po | 4 +- addons/product_manufacturer/i18n/hr.po | 4 +- addons/product_manufacturer/i18n/hu.po | 4 +- addons/product_manufacturer/i18n/it.po | 4 +- addons/product_manufacturer/i18n/ja.po | 4 +- addons/product_manufacturer/i18n/lt.po | 4 +- addons/product_manufacturer/i18n/mk.po | 4 +- addons/product_manufacturer/i18n/mn.po | 4 +- addons/product_manufacturer/i18n/nb.po | 4 +- addons/product_manufacturer/i18n/nl.po | 4 +- addons/product_manufacturer/i18n/pl.po | 4 +- addons/product_manufacturer/i18n/pt.po | 4 +- addons/product_manufacturer/i18n/pt_BR.po | 4 +- addons/product_manufacturer/i18n/ro.po | 6 +- addons/product_manufacturer/i18n/ru.po | 4 +- addons/product_manufacturer/i18n/sl.po | 4 +- addons/product_manufacturer/i18n/sr.po | 4 +- addons/product_manufacturer/i18n/sr@latin.po | 4 +- addons/product_manufacturer/i18n/sv.po | 4 +- addons/product_manufacturer/i18n/tr.po | 4 +- addons/product_manufacturer/i18n/zh_CN.po | 4 +- addons/product_manufacturer/i18n/zh_TW.po | 4 +- addons/product_margin/i18n/ar.po | 4 +- addons/product_margin/i18n/bg.po | 4 +- addons/product_margin/i18n/bs.po | 4 +- addons/product_margin/i18n/ca.po | 4 +- addons/product_margin/i18n/cs.po | 4 +- addons/product_margin/i18n/da.po | 4 +- addons/product_margin/i18n/de.po | 4 +- addons/product_margin/i18n/el.po | 4 +- addons/product_margin/i18n/es.po | 4 +- addons/product_margin/i18n/es_AR.po | 4 +- addons/product_margin/i18n/es_CR.po | 4 +- addons/product_margin/i18n/es_EC.po | 4 +- addons/product_margin/i18n/et.po | 4 +- addons/product_margin/i18n/fi.po | 4 +- addons/product_margin/i18n/fr.po | 4 +- addons/product_margin/i18n/gl.po | 4 +- addons/product_margin/i18n/gu.po | 4 +- addons/product_margin/i18n/hr.po | 4 +- addons/product_margin/i18n/hu.po | 4 +- addons/product_margin/i18n/id.po | 4 +- addons/product_margin/i18n/it.po | 4 +- addons/product_margin/i18n/ja.po | 4 +- addons/product_margin/i18n/ko.po | 4 +- addons/product_margin/i18n/lt.po | 4 +- addons/product_margin/i18n/mk.po | 4 +- addons/product_margin/i18n/nl.po | 6 +- addons/product_margin/i18n/nl_BE.po | 4 +- addons/product_margin/i18n/pl.po | 4 +- addons/product_margin/i18n/pt.po | 4 +- addons/product_margin/i18n/pt_BR.po | 4 +- addons/product_margin/i18n/ro.po | 6 +- addons/product_margin/i18n/ru.po | 4 +- addons/product_margin/i18n/sl.po | 4 +- addons/product_margin/i18n/sq.po | 4 +- addons/product_margin/i18n/sr.po | 4 +- addons/product_margin/i18n/sr@latin.po | 4 +- addons/product_margin/i18n/sv.po | 4 +- addons/product_margin/i18n/tlh.po | 4 +- addons/product_margin/i18n/tr.po | 4 +- addons/product_margin/i18n/uk.po | 4 +- addons/product_margin/i18n/vi.po | 4 +- addons/product_margin/i18n/zh_CN.po | 14 +- addons/product_margin/i18n/zh_TW.po | 4 +- addons/product_visible_discount/i18n/ar.po | 4 +- addons/product_visible_discount/i18n/bg.po | 4 +- addons/product_visible_discount/i18n/bs.po | 4 +- addons/product_visible_discount/i18n/ca.po | 4 +- addons/product_visible_discount/i18n/cs.po | 4 +- addons/product_visible_discount/i18n/da.po | 4 +- addons/product_visible_discount/i18n/de.po | 4 +- addons/product_visible_discount/i18n/el.po | 4 +- addons/product_visible_discount/i18n/es.po | 4 +- addons/product_visible_discount/i18n/es_CR.po | 4 +- addons/product_visible_discount/i18n/es_EC.po | 4 +- addons/product_visible_discount/i18n/et.po | 4 +- addons/product_visible_discount/i18n/fi.po | 4 +- addons/product_visible_discount/i18n/fr.po | 4 +- addons/product_visible_discount/i18n/gl.po | 4 +- addons/product_visible_discount/i18n/hr.po | 4 +- addons/product_visible_discount/i18n/hu.po | 4 +- addons/product_visible_discount/i18n/it.po | 4 +- addons/product_visible_discount/i18n/ja.po | 4 +- addons/product_visible_discount/i18n/lt.po | 4 +- addons/product_visible_discount/i18n/mk.po | 4 +- addons/product_visible_discount/i18n/mn.po | 4 +- addons/product_visible_discount/i18n/nl.po | 4 +- addons/product_visible_discount/i18n/pl.po | 4 +- addons/product_visible_discount/i18n/pt.po | 4 +- addons/product_visible_discount/i18n/pt_BR.po | 4 +- addons/product_visible_discount/i18n/ro.po | 6 +- addons/product_visible_discount/i18n/ru.po | 4 +- addons/product_visible_discount/i18n/sl.po | 4 +- addons/product_visible_discount/i18n/sr.po | 4 +- .../product_visible_discount/i18n/sr@latin.po | 4 +- addons/product_visible_discount/i18n/sv.po | 4 +- addons/product_visible_discount/i18n/tr.po | 4 +- addons/product_visible_discount/i18n/vi.po | 4 +- addons/product_visible_discount/i18n/zh_CN.po | 4 +- addons/project/i18n/ar.po | 4 +- addons/project/i18n/bg.po | 4 +- addons/project/i18n/bs.po | 4 +- addons/project/i18n/ca.po | 4 +- addons/project/i18n/cs.po | 4 +- addons/project/i18n/da.po | 4 +- addons/project/i18n/de.po | 4 +- addons/project/i18n/el.po | 4 +- addons/project/i18n/es.po | 4 +- addons/project/i18n/es_AR.po | 4 +- addons/project/i18n/es_CO.po | 4 +- addons/project/i18n/es_CR.po | 4 +- addons/project/i18n/es_EC.po | 4 +- addons/project/i18n/es_MX.po | 4 +- addons/project/i18n/es_PY.po | 4 +- addons/project/i18n/et.po | 4 +- addons/project/i18n/eu.po | 4 +- addons/project/i18n/fi.po | 2 +- addons/project/i18n/fr.po | 4 +- addons/project/i18n/gl.po | 4 +- addons/project/i18n/gu.po | 4 +- addons/project/i18n/hr.po | 4 +- addons/project/i18n/hu.po | 4 +- addons/project/i18n/id.po | 4 +- addons/project/i18n/it.po | 4 +- addons/project/i18n/ja.po | 4 +- addons/project/i18n/ko.po | 4 +- addons/project/i18n/lt.po | 4 +- addons/project/i18n/lv.po | 4 +- addons/project/i18n/mk.po | 4 +- addons/project/i18n/mn.po | 4 +- addons/project/i18n/nb.po | 4 +- addons/project/i18n/nl.po | 6 +- addons/project/i18n/nl_BE.po | 4 +- addons/project/i18n/pl.po | 2 +- addons/project/i18n/pt.po | 4 +- addons/project/i18n/pt_BR.po | 4 +- addons/project/i18n/ro.po | 4 +- addons/project/i18n/ru.po | 4 +- addons/project/i18n/sk.po | 4 +- addons/project/i18n/sl.po | 6 +- addons/project/i18n/sq.po | 4 +- addons/project/i18n/sv.po | 4 +- addons/project/i18n/th.po | 4 +- addons/project/i18n/tlh.po | 4 +- addons/project/i18n/tr.po | 4 +- addons/project/i18n/uk.po | 4 +- addons/project/i18n/vi.po | 4 +- addons/project/i18n/zh_CN.po | 4 +- addons/project/i18n/zh_TW.po | 4 +- addons/project_gtd/i18n/ar.po | 4 +- addons/project_gtd/i18n/bg.po | 4 +- addons/project_gtd/i18n/bs.po | 4 +- addons/project_gtd/i18n/ca.po | 4 +- addons/project_gtd/i18n/cs.po | 4 +- addons/project_gtd/i18n/da.po | 4 +- addons/project_gtd/i18n/de.po | 4 +- addons/project_gtd/i18n/el.po | 4 +- addons/project_gtd/i18n/es.po | 4 +- addons/project_gtd/i18n/es_AR.po | 4 +- addons/project_gtd/i18n/es_CR.po | 4 +- addons/project_gtd/i18n/es_EC.po | 4 +- addons/project_gtd/i18n/et.po | 4 +- addons/project_gtd/i18n/fi.po | 4 +- addons/project_gtd/i18n/fr.po | 4 +- addons/project_gtd/i18n/gl.po | 4 +- addons/project_gtd/i18n/hr.po | 4 +- addons/project_gtd/i18n/hu.po | 4 +- addons/project_gtd/i18n/id.po | 4 +- addons/project_gtd/i18n/it.po | 4 +- addons/project_gtd/i18n/ja.po | 4 +- addons/project_gtd/i18n/ko.po | 4 +- addons/project_gtd/i18n/lt.po | 4 +- addons/project_gtd/i18n/lv.po | 4 +- addons/project_gtd/i18n/mk.po | 4 +- addons/project_gtd/i18n/mn.po | 4 +- addons/project_gtd/i18n/nl.po | 6 +- addons/project_gtd/i18n/nl_BE.po | 4 +- addons/project_gtd/i18n/pl.po | 2 +- addons/project_gtd/i18n/pt.po | 4 +- addons/project_gtd/i18n/pt_BR.po | 6 +- addons/project_gtd/i18n/ro.po | 6 +- addons/project_gtd/i18n/ru.po | 4 +- addons/project_gtd/i18n/sl.po | 4 +- addons/project_gtd/i18n/sq.po | 4 +- addons/project_gtd/i18n/sv.po | 4 +- addons/project_gtd/i18n/tlh.po | 4 +- addons/project_gtd/i18n/tr.po | 4 +- addons/project_gtd/i18n/uk.po | 4 +- addons/project_gtd/i18n/vi.po | 4 +- addons/project_gtd/i18n/zh_CN.po | 4 +- addons/project_gtd/i18n/zh_TW.po | 4 +- addons/project_issue/i18n/ar.po | 4 +- addons/project_issue/i18n/bs.po | 4 +- addons/project_issue/i18n/ca.po | 4 +- addons/project_issue/i18n/cs.po | 4 +- addons/project_issue/i18n/da.po | 4 +- addons/project_issue/i18n/de.po | 4 +- addons/project_issue/i18n/es.po | 4 +- addons/project_issue/i18n/es_CR.po | 4 +- addons/project_issue/i18n/fi.po | 2 +- addons/project_issue/i18n/fr.po | 4 +- addons/project_issue/i18n/hr.po | 4 +- addons/project_issue/i18n/hu.po | 4 +- addons/project_issue/i18n/it.po | 4 +- addons/project_issue/i18n/ja.po | 4 +- addons/project_issue/i18n/lt.po | 4 +- addons/project_issue/i18n/lv.po | 4 +- addons/project_issue/i18n/mk.po | 4 +- addons/project_issue/i18n/mn.po | 4 +- addons/project_issue/i18n/nb.po | 4 +- addons/project_issue/i18n/nl.po | 6 +- addons/project_issue/i18n/nl_BE.po | 4 +- addons/project_issue/i18n/pl.po | 4 +- addons/project_issue/i18n/pt.po | 4 +- addons/project_issue/i18n/pt_BR.po | 4 +- addons/project_issue/i18n/ro.po | 6 +- addons/project_issue/i18n/ru.po | 4 +- addons/project_issue/i18n/sk.po | 4 +- addons/project_issue/i18n/sl.po | 6 +- addons/project_issue/i18n/sv.po | 4 +- addons/project_issue/i18n/tr.po | 4 +- addons/project_issue/i18n/zh_CN.po | 4 +- addons/project_issue/i18n/zh_TW.po | 4 +- addons/project_issue_sheet/i18n/ar.po | 4 +- addons/project_issue_sheet/i18n/ca.po | 4 +- addons/project_issue_sheet/i18n/cs.po | 4 +- addons/project_issue_sheet/i18n/da.po | 4 +- addons/project_issue_sheet/i18n/de.po | 4 +- addons/project_issue_sheet/i18n/es.po | 4 +- addons/project_issue_sheet/i18n/es_CR.po | 4 +- addons/project_issue_sheet/i18n/fi.po | 4 +- addons/project_issue_sheet/i18n/fr.po | 4 +- addons/project_issue_sheet/i18n/gl.po | 4 +- addons/project_issue_sheet/i18n/hr.po | 4 +- addons/project_issue_sheet/i18n/hu.po | 4 +- addons/project_issue_sheet/i18n/it.po | 4 +- addons/project_issue_sheet/i18n/ja.po | 4 +- addons/project_issue_sheet/i18n/lv.po | 4 +- addons/project_issue_sheet/i18n/mk.po | 4 +- addons/project_issue_sheet/i18n/mn.po | 4 +- addons/project_issue_sheet/i18n/nl.po | 6 +- addons/project_issue_sheet/i18n/pl.po | 4 +- addons/project_issue_sheet/i18n/pt.po | 4 +- addons/project_issue_sheet/i18n/pt_BR.po | 4 +- addons/project_issue_sheet/i18n/ro.po | 6 +- addons/project_issue_sheet/i18n/ru.po | 4 +- addons/project_issue_sheet/i18n/sl.po | 4 +- addons/project_issue_sheet/i18n/sv.po | 4 +- addons/project_issue_sheet/i18n/tr.po | 4 +- addons/project_issue_sheet/i18n/zh_CN.po | 4 +- addons/project_long_term/i18n/ar.po | 4 +- addons/project_long_term/i18n/ca.po | 4 +- addons/project_long_term/i18n/cs.po | 4 +- addons/project_long_term/i18n/da.po | 4 +- addons/project_long_term/i18n/de.po | 4 +- addons/project_long_term/i18n/es.po | 4 +- addons/project_long_term/i18n/es_CR.po | 4 +- addons/project_long_term/i18n/es_EC.po | 4 +- addons/project_long_term/i18n/es_MX.po | 4 +- addons/project_long_term/i18n/fi.po | 4 +- addons/project_long_term/i18n/fr.po | 4 +- addons/project_long_term/i18n/hr.po | 4 +- addons/project_long_term/i18n/hu.po | 4 +- addons/project_long_term/i18n/it.po | 4 +- addons/project_long_term/i18n/ja.po | 4 +- addons/project_long_term/i18n/lv.po | 4 +- addons/project_long_term/i18n/mk.po | 4 +- addons/project_long_term/i18n/mn.po | 4 +- addons/project_long_term/i18n/nl.po | 6 +- addons/project_long_term/i18n/pl.po | 4 +- addons/project_long_term/i18n/pt.po | 4 +- addons/project_long_term/i18n/pt_BR.po | 4 +- addons/project_long_term/i18n/ro.po | 6 +- addons/project_long_term/i18n/ru.po | 4 +- addons/project_long_term/i18n/sl.po | 6 +- addons/project_long_term/i18n/sv.po | 4 +- addons/project_long_term/i18n/tr.po | 4 +- addons/project_long_term/i18n/zh_CN.po | 6 +- addons/project_mrp/i18n/ar.po | 4 +- addons/project_mrp/i18n/bg.po | 4 +- addons/project_mrp/i18n/bs.po | 4 +- addons/project_mrp/i18n/ca.po | 4 +- addons/project_mrp/i18n/cs.po | 4 +- addons/project_mrp/i18n/da.po | 4 +- addons/project_mrp/i18n/de.po | 4 +- addons/project_mrp/i18n/el.po | 4 +- addons/project_mrp/i18n/es.po | 4 +- addons/project_mrp/i18n/es_AR.po | 4 +- addons/project_mrp/i18n/es_CR.po | 4 +- addons/project_mrp/i18n/es_EC.po | 4 +- addons/project_mrp/i18n/et.po | 4 +- addons/project_mrp/i18n/fi.po | 4 +- addons/project_mrp/i18n/fr.po | 6 +- addons/project_mrp/i18n/gl.po | 4 +- addons/project_mrp/i18n/gu.po | 4 +- addons/project_mrp/i18n/hr.po | 4 +- addons/project_mrp/i18n/hu.po | 4 +- addons/project_mrp/i18n/id.po | 4 +- addons/project_mrp/i18n/it.po | 4 +- addons/project_mrp/i18n/ja.po | 4 +- addons/project_mrp/i18n/ko.po | 4 +- addons/project_mrp/i18n/lt.po | 4 +- addons/project_mrp/i18n/lv.po | 4 +- addons/project_mrp/i18n/mk.po | 4 +- addons/project_mrp/i18n/mn.po | 4 +- addons/project_mrp/i18n/nb.po | 4 +- addons/project_mrp/i18n/nl.po | 6 +- addons/project_mrp/i18n/nl_BE.po | 4 +- addons/project_mrp/i18n/pl.po | 2 +- addons/project_mrp/i18n/pt.po | 4 +- addons/project_mrp/i18n/pt_BR.po | 4 +- addons/project_mrp/i18n/ro.po | 6 +- addons/project_mrp/i18n/ru.po | 4 +- addons/project_mrp/i18n/sl.po | 47 +-- addons/project_mrp/i18n/sq.po | 4 +- addons/project_mrp/i18n/sv.po | 4 +- addons/project_mrp/i18n/tlh.po | 4 +- addons/project_mrp/i18n/tr.po | 4 +- addons/project_mrp/i18n/uk.po | 4 +- addons/project_mrp/i18n/vi.po | 4 +- addons/project_mrp/i18n/zh_CN.po | 6 +- addons/project_mrp/i18n/zh_TW.po | 4 +- addons/project_timesheet/i18n/ar.po | 4 +- addons/project_timesheet/i18n/bg.po | 4 +- addons/project_timesheet/i18n/bs.po | 4 +- addons/project_timesheet/i18n/ca.po | 4 +- addons/project_timesheet/i18n/cs.po | 4 +- addons/project_timesheet/i18n/da.po | 4 +- addons/project_timesheet/i18n/de.po | 4 +- addons/project_timesheet/i18n/el.po | 4 +- addons/project_timesheet/i18n/es.po | 4 +- addons/project_timesheet/i18n/es_AR.po | 4 +- addons/project_timesheet/i18n/es_CR.po | 4 +- addons/project_timesheet/i18n/et.po | 4 +- addons/project_timesheet/i18n/fi.po | 4 +- addons/project_timesheet/i18n/fr.po | 4 +- addons/project_timesheet/i18n/gl.po | 4 +- addons/project_timesheet/i18n/hr.po | 4 +- addons/project_timesheet/i18n/hu.po | 4 +- addons/project_timesheet/i18n/id.po | 4 +- addons/project_timesheet/i18n/it.po | 4 +- addons/project_timesheet/i18n/ja.po | 4 +- addons/project_timesheet/i18n/ko.po | 4 +- addons/project_timesheet/i18n/lt.po | 4 +- addons/project_timesheet/i18n/lv.po | 4 +- addons/project_timesheet/i18n/mk.po | 4 +- addons/project_timesheet/i18n/mn.po | 4 +- addons/project_timesheet/i18n/nl.po | 6 +- addons/project_timesheet/i18n/nl_BE.po | 4 +- addons/project_timesheet/i18n/pl.po | 2 +- addons/project_timesheet/i18n/pt.po | 4 +- addons/project_timesheet/i18n/pt_BR.po | 4 +- addons/project_timesheet/i18n/ro.po | 6 +- addons/project_timesheet/i18n/ru.po | 4 +- addons/project_timesheet/i18n/sl.po | 4 +- addons/project_timesheet/i18n/sq.po | 4 +- addons/project_timesheet/i18n/sv.po | 4 +- addons/project_timesheet/i18n/tlh.po | 4 +- addons/project_timesheet/i18n/tr.po | 4 +- addons/project_timesheet/i18n/uk.po | 4 +- addons/project_timesheet/i18n/vi.po | 4 +- addons/project_timesheet/i18n/zh_CN.po | 6 +- addons/project_timesheet/i18n/zh_TW.po | 4 +- addons/purchase/i18n/ar.po | 4 +- addons/purchase/i18n/bg.po | 4 +- addons/purchase/i18n/bs.po | 4 +- addons/purchase/i18n/ca.po | 4 +- addons/purchase/i18n/cs.po | 4 +- addons/purchase/i18n/da.po | 4 +- addons/purchase/i18n/de.po | 4 +- addons/purchase/i18n/el.po | 4 +- addons/purchase/i18n/en_GB.po | 4 +- addons/purchase/i18n/es.po | 4 +- addons/purchase/i18n/es_AR.po | 4 +- addons/purchase/i18n/es_BO.po | 4 +- addons/purchase/i18n/es_CL.po | 4 +- addons/purchase/i18n/es_CO.po | 4 +- addons/purchase/i18n/es_CR.po | 4 +- addons/purchase/i18n/es_EC.po | 4 +- addons/purchase/i18n/es_MX.po | 4 +- addons/purchase/i18n/et.po | 4 +- addons/purchase/i18n/fi.po | 2 +- addons/purchase/i18n/fr.po | 4 +- addons/purchase/i18n/gl.po | 4 +- addons/purchase/i18n/hr.po | 4 +- addons/purchase/i18n/hu.po | 4 +- addons/purchase/i18n/id.po | 4 +- addons/purchase/i18n/it.po | 6 +- addons/purchase/i18n/ja.po | 4 +- addons/purchase/i18n/ko.po | 4 +- addons/purchase/i18n/lt.po | 4 +- addons/purchase/i18n/lv.po | 4 +- addons/purchase/i18n/mk.po | 4 +- addons/purchase/i18n/mn.po | 4 +- addons/purchase/i18n/nb.po | 4 +- addons/purchase/i18n/nl.po | 4 +- addons/purchase/i18n/nl_BE.po | 4 +- addons/purchase/i18n/pl.po | 2 +- addons/purchase/i18n/pt.po | 4 +- addons/purchase/i18n/pt_BR.po | 6 +- addons/purchase/i18n/ro.po | 4 +- addons/purchase/i18n/ru.po | 4 +- addons/purchase/i18n/sk.po | 4 +- addons/purchase/i18n/sl.po | 4 +- addons/purchase/i18n/sq.po | 4 +- addons/purchase/i18n/sr.po | 4 +- addons/purchase/i18n/sr@latin.po | 4 +- addons/purchase/i18n/sv.po | 4 +- addons/purchase/i18n/th.po | 4 +- addons/purchase/i18n/tlh.po | 4 +- addons/purchase/i18n/tr.po | 4 +- addons/purchase/i18n/uk.po | 4 +- addons/purchase/i18n/vi.po | 4 +- addons/purchase/i18n/zh_CN.po | 8 +- addons/purchase/i18n/zh_TW.po | 4 +- addons/purchase_analytic_plans/i18n/ar.po | 4 +- addons/purchase_analytic_plans/i18n/bg.po | 4 +- addons/purchase_analytic_plans/i18n/bs.po | 4 +- addons/purchase_analytic_plans/i18n/ca.po | 4 +- addons/purchase_analytic_plans/i18n/cs.po | 4 +- addons/purchase_analytic_plans/i18n/da.po | 4 +- addons/purchase_analytic_plans/i18n/de.po | 4 +- addons/purchase_analytic_plans/i18n/el.po | 4 +- addons/purchase_analytic_plans/i18n/en_GB.po | 4 +- addons/purchase_analytic_plans/i18n/es.po | 4 +- addons/purchase_analytic_plans/i18n/es_AR.po | 4 +- addons/purchase_analytic_plans/i18n/es_CR.po | 4 +- addons/purchase_analytic_plans/i18n/et.po | 4 +- addons/purchase_analytic_plans/i18n/fi.po | 4 +- addons/purchase_analytic_plans/i18n/fr.po | 4 +- addons/purchase_analytic_plans/i18n/gl.po | 4 +- addons/purchase_analytic_plans/i18n/hr.po | 4 +- addons/purchase_analytic_plans/i18n/hu.po | 4 +- addons/purchase_analytic_plans/i18n/id.po | 4 +- addons/purchase_analytic_plans/i18n/it.po | 4 +- addons/purchase_analytic_plans/i18n/ja.po | 4 +- addons/purchase_analytic_plans/i18n/ko.po | 4 +- addons/purchase_analytic_plans/i18n/lt.po | 4 +- addons/purchase_analytic_plans/i18n/mk.po | 4 +- addons/purchase_analytic_plans/i18n/mn.po | 4 +- addons/purchase_analytic_plans/i18n/nl.po | 4 +- addons/purchase_analytic_plans/i18n/nl_BE.po | 4 +- addons/purchase_analytic_plans/i18n/pl.po | 4 +- addons/purchase_analytic_plans/i18n/pt.po | 4 +- addons/purchase_analytic_plans/i18n/pt_BR.po | 4 +- addons/purchase_analytic_plans/i18n/ro.po | 4 +- addons/purchase_analytic_plans/i18n/ru.po | 4 +- addons/purchase_analytic_plans/i18n/sl.po | 4 +- addons/purchase_analytic_plans/i18n/sq.po | 4 +- addons/purchase_analytic_plans/i18n/sr.po | 4 +- .../purchase_analytic_plans/i18n/sr@latin.po | 4 +- addons/purchase_analytic_plans/i18n/sv.po | 4 +- addons/purchase_analytic_plans/i18n/tlh.po | 4 +- addons/purchase_analytic_plans/i18n/tr.po | 4 +- addons/purchase_analytic_plans/i18n/uk.po | 4 +- addons/purchase_analytic_plans/i18n/ur.po | 4 +- addons/purchase_analytic_plans/i18n/vi.po | 4 +- addons/purchase_analytic_plans/i18n/zh_CN.po | 4 +- addons/purchase_analytic_plans/i18n/zh_TW.po | 4 +- addons/purchase_double_validation/i18n/ar.po | 4 +- addons/purchase_double_validation/i18n/bg.po | 4 +- addons/purchase_double_validation/i18n/bs.po | 4 +- addons/purchase_double_validation/i18n/ca.po | 4 +- addons/purchase_double_validation/i18n/cs.po | 4 +- addons/purchase_double_validation/i18n/da.po | 4 +- addons/purchase_double_validation/i18n/de.po | 4 +- addons/purchase_double_validation/i18n/es.po | 4 +- .../purchase_double_validation/i18n/es_CR.po | 4 +- .../purchase_double_validation/i18n/es_EC.po | 4 +- addons/purchase_double_validation/i18n/fi.po | 4 +- addons/purchase_double_validation/i18n/fr.po | 4 +- addons/purchase_double_validation/i18n/gl.po | 4 +- addons/purchase_double_validation/i18n/hr.po | 4 +- addons/purchase_double_validation/i18n/hu.po | 4 +- addons/purchase_double_validation/i18n/it.po | 4 +- addons/purchase_double_validation/i18n/ja.po | 4 +- addons/purchase_double_validation/i18n/lt.po | 4 +- addons/purchase_double_validation/i18n/mk.po | 4 +- addons/purchase_double_validation/i18n/mn.po | 4 +- addons/purchase_double_validation/i18n/nl.po | 6 +- addons/purchase_double_validation/i18n/pl.po | 2 +- addons/purchase_double_validation/i18n/pt.po | 4 +- .../purchase_double_validation/i18n/pt_BR.po | 4 +- addons/purchase_double_validation/i18n/ro.po | 6 +- addons/purchase_double_validation/i18n/ru.po | 4 +- addons/purchase_double_validation/i18n/sl.po | 4 +- addons/purchase_double_validation/i18n/sv.po | 4 +- addons/purchase_double_validation/i18n/tr.po | 4 +- .../purchase_double_validation/i18n/zh_CN.po | 4 +- addons/purchase_requisition/i18n/ar.po | 4 +- addons/purchase_requisition/i18n/bg.po | 4 +- addons/purchase_requisition/i18n/bs.po | 4 +- addons/purchase_requisition/i18n/ca.po | 4 +- addons/purchase_requisition/i18n/cs.po | 4 +- addons/purchase_requisition/i18n/da.po | 4 +- addons/purchase_requisition/i18n/de.po | 4 +- addons/purchase_requisition/i18n/es.po | 4 +- addons/purchase_requisition/i18n/es_CR.po | 4 +- addons/purchase_requisition/i18n/fi.po | 10 +- addons/purchase_requisition/i18n/fr.po | 6 +- addons/purchase_requisition/i18n/hr.po | 4 +- addons/purchase_requisition/i18n/hu.po | 4 +- addons/purchase_requisition/i18n/id.po | 4 +- addons/purchase_requisition/i18n/it.po | 4 +- addons/purchase_requisition/i18n/ja.po | 4 +- addons/purchase_requisition/i18n/ko.po | 4 +- addons/purchase_requisition/i18n/mk.po | 4 +- addons/purchase_requisition/i18n/mn.po | 4 +- addons/purchase_requisition/i18n/nb.po | 4 +- addons/purchase_requisition/i18n/nl.po | 6 +- addons/purchase_requisition/i18n/pl.po | 4 +- addons/purchase_requisition/i18n/pt.po | 4 +- addons/purchase_requisition/i18n/pt_BR.po | 4 +- addons/purchase_requisition/i18n/ro.po | 4 +- addons/purchase_requisition/i18n/ru.po | 4 +- addons/purchase_requisition/i18n/sl.po | 4 +- addons/purchase_requisition/i18n/sv.po | 4 +- addons/purchase_requisition/i18n/tr.po | 4 +- addons/purchase_requisition/i18n/zh_CN.po | 6 +- addons/report_intrastat/i18n/ar.po | 4 +- addons/report_intrastat/i18n/bg.po | 4 +- addons/report_intrastat/i18n/bs.po | 4 +- addons/report_intrastat/i18n/ca.po | 4 +- addons/report_intrastat/i18n/cs.po | 4 +- addons/report_intrastat/i18n/da.po | 4 +- addons/report_intrastat/i18n/de.po | 4 +- addons/report_intrastat/i18n/es.po | 4 +- addons/report_intrastat/i18n/es_AR.po | 4 +- addons/report_intrastat/i18n/es_CR.po | 4 +- addons/report_intrastat/i18n/et.po | 4 +- addons/report_intrastat/i18n/fi.po | 4 +- addons/report_intrastat/i18n/fr.po | 4 +- addons/report_intrastat/i18n/hr.po | 4 +- addons/report_intrastat/i18n/hu.po | 4 +- addons/report_intrastat/i18n/id.po | 4 +- addons/report_intrastat/i18n/it.po | 4 +- addons/report_intrastat/i18n/ja.po | 4 +- addons/report_intrastat/i18n/ko.po | 4 +- addons/report_intrastat/i18n/lt.po | 4 +- addons/report_intrastat/i18n/mk.po | 4 +- addons/report_intrastat/i18n/mn.po | 4 +- addons/report_intrastat/i18n/nl.po | 4 +- addons/report_intrastat/i18n/nl_BE.po | 4 +- addons/report_intrastat/i18n/pl.po | 4 +- addons/report_intrastat/i18n/pt.po | 4 +- addons/report_intrastat/i18n/pt_BR.po | 4 +- addons/report_intrastat/i18n/ro.po | 4 +- addons/report_intrastat/i18n/ru.po | 4 +- addons/report_intrastat/i18n/sl.po | 4 +- addons/report_intrastat/i18n/sq.po | 4 +- addons/report_intrastat/i18n/sv.po | 4 +- addons/report_intrastat/i18n/tlh.po | 4 +- addons/report_intrastat/i18n/tr.po | 4 +- addons/report_intrastat/i18n/uk.po | 4 +- addons/report_intrastat/i18n/vi.po | 4 +- addons/report_intrastat/i18n/zh_CN.po | 4 +- addons/report_intrastat/i18n/zh_TW.po | 4 +- addons/report_webkit/i18n/ar.po | 4 +- addons/report_webkit/i18n/bg.po | 4 +- addons/report_webkit/i18n/ca.po | 4 +- addons/report_webkit/i18n/cs.po | 4 +- addons/report_webkit/i18n/da.po | 4 +- addons/report_webkit/i18n/de.po | 4 +- addons/report_webkit/i18n/es.po | 4 +- addons/report_webkit/i18n/es_CR.po | 4 +- addons/report_webkit/i18n/fi.po | 4 +- addons/report_webkit/i18n/fr.po | 6 +- addons/report_webkit/i18n/hr.po | 4 +- addons/report_webkit/i18n/hu.po | 4 +- addons/report_webkit/i18n/it.po | 4 +- addons/report_webkit/i18n/ja.po | 4 +- addons/report_webkit/i18n/mk.po | 4 +- addons/report_webkit/i18n/mn.po | 4 +- addons/report_webkit/i18n/nl.po | 6 +- addons/report_webkit/i18n/pl.po | 2 +- addons/report_webkit/i18n/pt.po | 4 +- addons/report_webkit/i18n/pt_BR.po | 4 +- addons/report_webkit/i18n/ro.po | 6 +- addons/report_webkit/i18n/ru.po | 4 +- addons/report_webkit/i18n/sl.po | 4 +- addons/report_webkit/i18n/sv.po | 4 +- addons/report_webkit/i18n/tr.po | 4 +- addons/report_webkit/i18n/zh_CN.po | 6 +- addons/resource/i18n/ar.po | 4 +- addons/resource/i18n/bg.po | 4 +- addons/resource/i18n/bs.po | 4 +- addons/resource/i18n/ca.po | 4 +- addons/resource/i18n/cs.po | 4 +- addons/resource/i18n/da.po | 4 +- addons/resource/i18n/de.po | 4 +- addons/resource/i18n/es.po | 4 +- addons/resource/i18n/es_CR.po | 4 +- addons/resource/i18n/es_EC.po | 4 +- addons/resource/i18n/et.po | 4 +- addons/resource/i18n/fi.po | 4 +- addons/resource/i18n/fr.po | 4 +- addons/resource/i18n/gl.po | 4 +- addons/resource/i18n/hr.po | 4 +- addons/resource/i18n/hu.po | 4 +- addons/resource/i18n/it.po | 4 +- addons/resource/i18n/ja.po | 4 +- addons/resource/i18n/lt.po | 4 +- addons/resource/i18n/mk.po | 4 +- addons/resource/i18n/mn.po | 4 +- addons/resource/i18n/nl.po | 6 +- addons/resource/i18n/pl.po | 2 +- addons/resource/i18n/pt.po | 4 +- addons/resource/i18n/pt_BR.po | 6 +- addons/resource/i18n/ro.po | 6 +- addons/resource/i18n/ru.po | 4 +- addons/resource/i18n/sl.po | 4 +- addons/resource/i18n/sv.po | 4 +- addons/resource/i18n/tr.po | 4 +- addons/resource/i18n/vi.po | 4 +- addons/resource/i18n/zh_CN.po | 6 +- addons/sale/i18n/ar.po | 4 +- addons/sale/i18n/bg.po | 4 +- addons/sale/i18n/bs.po | 4 +- addons/sale/i18n/ca.po | 4 +- addons/sale/i18n/cs.po | 4 +- addons/sale/i18n/da.po | 4 +- addons/sale/i18n/de.po | 4 +- addons/sale/i18n/el.po | 4 +- addons/sale/i18n/es.po | 4 +- addons/sale/i18n/es_AR.po | 4 +- addons/sale/i18n/es_BO.po | 4 +- addons/sale/i18n/es_CL.po | 4 +- addons/sale/i18n/es_CR.po | 4 +- addons/sale/i18n/es_EC.po | 4 +- addons/sale/i18n/es_MX.po | 4 +- addons/sale/i18n/et.po | 4 +- addons/sale/i18n/eu.po | 4 +- addons/sale/i18n/fi.po | 4 +- addons/sale/i18n/fr.po | 4 +- addons/sale/i18n/gl.po | 4 +- addons/sale/i18n/hi.po | 4 +- addons/sale/i18n/hr.po | 4 +- addons/sale/i18n/hu.po | 143 +++++---- addons/sale/i18n/id.po | 4 +- addons/sale/i18n/is.po | 4 +- addons/sale/i18n/it.po | 4 +- addons/sale/i18n/ja.po | 4 +- addons/sale/i18n/ko.po | 4 +- addons/sale/i18n/lo.po | 4 +- addons/sale/i18n/lt.po | 4 +- addons/sale/i18n/lv.po | 4 +- addons/sale/i18n/mk.po | 4 +- addons/sale/i18n/mn.po | 4 +- addons/sale/i18n/nb.po | 4 +- addons/sale/i18n/nl.po | 4 +- addons/sale/i18n/nl_BE.po | 4 +- addons/sale/i18n/oc.po | 4 +- addons/sale/i18n/pl.po | 2 +- addons/sale/i18n/pt.po | 4 +- addons/sale/i18n/pt_BR.po | 6 +- addons/sale/i18n/ro.po | 6 +- addons/sale/i18n/ru.po | 4 +- addons/sale/i18n/sk.po | 4 +- addons/sale/i18n/sl.po | 4 +- addons/sale/i18n/sq.po | 4 +- addons/sale/i18n/sr.po | 4 +- addons/sale/i18n/sr@latin.po | 4 +- addons/sale/i18n/sv.po | 4 +- addons/sale/i18n/th.po | 4 +- addons/sale/i18n/tlh.po | 4 +- addons/sale/i18n/tr.po | 4 +- addons/sale/i18n/uk.po | 4 +- addons/sale/i18n/vi.po | 4 +- addons/sale/i18n/zh_CN.po | 95 +++++- addons/sale/i18n/zh_TW.po | 4 +- addons/sale_analytic_plans/i18n/ar.po | 4 +- addons/sale_analytic_plans/i18n/bg.po | 4 +- addons/sale_analytic_plans/i18n/bs.po | 4 +- addons/sale_analytic_plans/i18n/ca.po | 4 +- addons/sale_analytic_plans/i18n/cs.po | 4 +- addons/sale_analytic_plans/i18n/da.po | 4 +- addons/sale_analytic_plans/i18n/de.po | 4 +- addons/sale_analytic_plans/i18n/el.po | 4 +- addons/sale_analytic_plans/i18n/en_GB.po | 4 +- addons/sale_analytic_plans/i18n/es.po | 4 +- addons/sale_analytic_plans/i18n/es_AR.po | 4 +- addons/sale_analytic_plans/i18n/es_CL.po | 4 +- addons/sale_analytic_plans/i18n/es_CO.po | 4 +- addons/sale_analytic_plans/i18n/es_CR.po | 4 +- addons/sale_analytic_plans/i18n/et.po | 4 +- addons/sale_analytic_plans/i18n/fi.po | 4 +- addons/sale_analytic_plans/i18n/fr.po | 4 +- addons/sale_analytic_plans/i18n/gl.po | 4 +- addons/sale_analytic_plans/i18n/hr.po | 4 +- addons/sale_analytic_plans/i18n/hu.po | 4 +- addons/sale_analytic_plans/i18n/id.po | 4 +- addons/sale_analytic_plans/i18n/it.po | 4 +- addons/sale_analytic_plans/i18n/ja.po | 4 +- addons/sale_analytic_plans/i18n/ko.po | 4 +- addons/sale_analytic_plans/i18n/lt.po | 4 +- addons/sale_analytic_plans/i18n/mk.po | 4 +- addons/sale_analytic_plans/i18n/mn.po | 4 +- addons/sale_analytic_plans/i18n/nb.po | 4 +- addons/sale_analytic_plans/i18n/nl.po | 4 +- addons/sale_analytic_plans/i18n/nl_BE.po | 4 +- addons/sale_analytic_plans/i18n/oc.po | 4 +- addons/sale_analytic_plans/i18n/pl.po | 2 +- addons/sale_analytic_plans/i18n/pt.po | 4 +- addons/sale_analytic_plans/i18n/pt_BR.po | 4 +- addons/sale_analytic_plans/i18n/ro.po | 6 +- addons/sale_analytic_plans/i18n/ru.po | 4 +- addons/sale_analytic_plans/i18n/sk.po | 4 +- addons/sale_analytic_plans/i18n/sl.po | 4 +- addons/sale_analytic_plans/i18n/sq.po | 4 +- addons/sale_analytic_plans/i18n/sr.po | 4 +- addons/sale_analytic_plans/i18n/sr@latin.po | 4 +- addons/sale_analytic_plans/i18n/sv.po | 4 +- addons/sale_analytic_plans/i18n/tlh.po | 4 +- addons/sale_analytic_plans/i18n/tr.po | 4 +- addons/sale_analytic_plans/i18n/uk.po | 4 +- addons/sale_analytic_plans/i18n/vi.po | 4 +- addons/sale_analytic_plans/i18n/zh_CN.po | 4 +- addons/sale_analytic_plans/i18n/zh_TW.po | 4 +- addons/sale_crm/i18n/ar.po | 4 +- addons/sale_crm/i18n/bg.po | 4 +- addons/sale_crm/i18n/bs.po | 4 +- addons/sale_crm/i18n/ca.po | 4 +- addons/sale_crm/i18n/cs.po | 4 +- addons/sale_crm/i18n/da.po | 4 +- addons/sale_crm/i18n/de.po | 4 +- addons/sale_crm/i18n/el.po | 4 +- addons/sale_crm/i18n/es.po | 4 +- addons/sale_crm/i18n/es_AR.po | 4 +- addons/sale_crm/i18n/es_CL.po | 4 +- addons/sale_crm/i18n/es_CR.po | 4 +- addons/sale_crm/i18n/et.po | 4 +- addons/sale_crm/i18n/fi.po | 4 +- addons/sale_crm/i18n/fr.po | 4 +- addons/sale_crm/i18n/gl.po | 4 +- addons/sale_crm/i18n/hr.po | 4 +- addons/sale_crm/i18n/hu.po | 4 +- addons/sale_crm/i18n/id.po | 4 +- addons/sale_crm/i18n/it.po | 4 +- addons/sale_crm/i18n/ja.po | 4 +- addons/sale_crm/i18n/ko.po | 4 +- addons/sale_crm/i18n/lt.po | 4 +- addons/sale_crm/i18n/lv.po | 4 +- addons/sale_crm/i18n/mk.po | 4 +- addons/sale_crm/i18n/mn.po | 4 +- addons/sale_crm/i18n/nb.po | 4 +- addons/sale_crm/i18n/nl.po | 6 +- addons/sale_crm/i18n/nl_BE.po | 4 +- addons/sale_crm/i18n/pl.po | 4 +- addons/sale_crm/i18n/pt.po | 4 +- addons/sale_crm/i18n/pt_BR.po | 6 +- addons/sale_crm/i18n/ro.po | 6 +- addons/sale_crm/i18n/ru.po | 4 +- addons/sale_crm/i18n/sk.po | 4 +- addons/sale_crm/i18n/sl.po | 4 +- addons/sale_crm/i18n/sq.po | 4 +- addons/sale_crm/i18n/sv.po | 4 +- addons/sale_crm/i18n/tlh.po | 4 +- addons/sale_crm/i18n/tr.po | 4 +- addons/sale_crm/i18n/uk.po | 4 +- addons/sale_crm/i18n/vi.po | 4 +- addons/sale_crm/i18n/zh_CN.po | 6 +- addons/sale_crm/i18n/zh_TW.po | 4 +- addons/sale_journal/i18n/ar.po | 4 +- addons/sale_journal/i18n/bg.po | 4 +- addons/sale_journal/i18n/bs.po | 4 +- addons/sale_journal/i18n/ca.po | 4 +- addons/sale_journal/i18n/cs.po | 4 +- addons/sale_journal/i18n/da.po | 4 +- addons/sale_journal/i18n/de.po | 4 +- addons/sale_journal/i18n/el.po | 4 +- addons/sale_journal/i18n/es.po | 4 +- addons/sale_journal/i18n/es_AR.po | 4 +- addons/sale_journal/i18n/es_CL.po | 4 +- addons/sale_journal/i18n/es_CR.po | 4 +- addons/sale_journal/i18n/et.po | 4 +- addons/sale_journal/i18n/fi.po | 4 +- addons/sale_journal/i18n/fr.po | 6 +- addons/sale_journal/i18n/gl.po | 4 +- addons/sale_journal/i18n/hr.po | 4 +- addons/sale_journal/i18n/hu.po | 4 +- addons/sale_journal/i18n/id.po | 4 +- addons/sale_journal/i18n/it.po | 4 +- addons/sale_journal/i18n/ja.po | 4 +- addons/sale_journal/i18n/ko.po | 4 +- addons/sale_journal/i18n/lt.po | 4 +- addons/sale_journal/i18n/lv.po | 4 +- addons/sale_journal/i18n/mk.po | 4 +- addons/sale_journal/i18n/mn.po | 4 +- addons/sale_journal/i18n/nb.po | 4 +- addons/sale_journal/i18n/nl.po | 6 +- addons/sale_journal/i18n/nl_BE.po | 4 +- addons/sale_journal/i18n/pl.po | 4 +- addons/sale_journal/i18n/pt.po | 4 +- addons/sale_journal/i18n/pt_BR.po | 4 +- addons/sale_journal/i18n/ro.po | 6 +- addons/sale_journal/i18n/ru.po | 4 +- addons/sale_journal/i18n/sk.po | 4 +- addons/sale_journal/i18n/sl.po | 4 +- addons/sale_journal/i18n/sq.po | 4 +- addons/sale_journal/i18n/sv.po | 4 +- addons/sale_journal/i18n/tlh.po | 4 +- addons/sale_journal/i18n/tr.po | 4 +- addons/sale_journal/i18n/uk.po | 4 +- addons/sale_journal/i18n/vi.po | 4 +- addons/sale_journal/i18n/zh_CN.po | 4 +- addons/sale_journal/i18n/zh_TW.po | 4 +- addons/sale_margin/i18n/ar.po | 4 +- addons/sale_margin/i18n/bg.po | 4 +- addons/sale_margin/i18n/bs.po | 4 +- addons/sale_margin/i18n/ca.po | 4 +- addons/sale_margin/i18n/cs.po | 4 +- addons/sale_margin/i18n/da.po | 4 +- addons/sale_margin/i18n/de.po | 4 +- addons/sale_margin/i18n/el.po | 4 +- addons/sale_margin/i18n/es.po | 4 +- addons/sale_margin/i18n/es_CL.po | 4 +- addons/sale_margin/i18n/es_CR.po | 4 +- addons/sale_margin/i18n/et.po | 4 +- addons/sale_margin/i18n/fi.po | 4 +- addons/sale_margin/i18n/fr.po | 6 +- addons/sale_margin/i18n/hr.po | 4 +- addons/sale_margin/i18n/hu.po | 4 +- addons/sale_margin/i18n/it.po | 4 +- addons/sale_margin/i18n/ja.po | 4 +- addons/sale_margin/i18n/mk.po | 4 +- addons/sale_margin/i18n/mn.po | 4 +- addons/sale_margin/i18n/nb.po | 4 +- addons/sale_margin/i18n/nl.po | 4 +- addons/sale_margin/i18n/pl.po | 4 +- addons/sale_margin/i18n/pt.po | 4 +- addons/sale_margin/i18n/pt_BR.po | 4 +- addons/sale_margin/i18n/ro.po | 6 +- addons/sale_margin/i18n/ru.po | 4 +- addons/sale_margin/i18n/sk.po | 4 +- addons/sale_margin/i18n/sl.po | 4 +- addons/sale_margin/i18n/sv.po | 4 +- addons/sale_margin/i18n/tr.po | 4 +- addons/sale_margin/i18n/zh_CN.po | 4 +- addons/sale_mrp/i18n/ar.po | 4 +- addons/sale_mrp/i18n/bg.po | 4 +- addons/sale_mrp/i18n/bs.po | 4 +- addons/sale_mrp/i18n/ca.po | 4 +- addons/sale_mrp/i18n/cs.po | 4 +- addons/sale_mrp/i18n/da.po | 4 +- addons/sale_mrp/i18n/de.po | 4 +- addons/sale_mrp/i18n/es.po | 4 +- addons/sale_mrp/i18n/es_CL.po | 4 +- addons/sale_mrp/i18n/es_CR.po | 4 +- addons/sale_mrp/i18n/et.po | 4 +- addons/sale_mrp/i18n/fi.po | 2 +- addons/sale_mrp/i18n/fr.po | 4 +- addons/sale_mrp/i18n/gl.po | 4 +- addons/sale_mrp/i18n/hr.po | 4 +- addons/sale_mrp/i18n/hu.po | 4 +- addons/sale_mrp/i18n/it.po | 4 +- addons/sale_mrp/i18n/ja.po | 4 +- addons/sale_mrp/i18n/lt.po | 4 +- addons/sale_mrp/i18n/mk.po | 4 +- addons/sale_mrp/i18n/mn.po | 4 +- addons/sale_mrp/i18n/nb.po | 4 +- addons/sale_mrp/i18n/nl.po | 4 +- addons/sale_mrp/i18n/nl_BE.po | 4 +- addons/sale_mrp/i18n/pl.po | 4 +- addons/sale_mrp/i18n/pt.po | 4 +- addons/sale_mrp/i18n/pt_BR.po | 4 +- addons/sale_mrp/i18n/ro.po | 6 +- addons/sale_mrp/i18n/ru.po | 4 +- addons/sale_mrp/i18n/sl.po | 4 +- addons/sale_mrp/i18n/sr@latin.po | 4 +- addons/sale_mrp/i18n/sv.po | 4 +- addons/sale_mrp/i18n/tr.po | 4 +- addons/sale_mrp/i18n/zh_CN.po | 4 +- addons/sale_order_dates/i18n/ar.po | 4 +- addons/sale_order_dates/i18n/bg.po | 4 +- addons/sale_order_dates/i18n/bs.po | 4 +- addons/sale_order_dates/i18n/ca.po | 4 +- addons/sale_order_dates/i18n/cs.po | 4 +- addons/sale_order_dates/i18n/da.po | 4 +- addons/sale_order_dates/i18n/de.po | 4 +- addons/sale_order_dates/i18n/el.po | 4 +- addons/sale_order_dates/i18n/es.po | 4 +- addons/sale_order_dates/i18n/es_CL.po | 4 +- addons/sale_order_dates/i18n/es_CR.po | 4 +- addons/sale_order_dates/i18n/fi.po | 4 +- addons/sale_order_dates/i18n/fr.po | 6 +- addons/sale_order_dates/i18n/gl.po | 4 +- addons/sale_order_dates/i18n/hr.po | 4 +- addons/sale_order_dates/i18n/hu.po | 4 +- addons/sale_order_dates/i18n/id.po | 4 +- addons/sale_order_dates/i18n/it.po | 4 +- addons/sale_order_dates/i18n/ja.po | 4 +- addons/sale_order_dates/i18n/mk.po | 4 +- addons/sale_order_dates/i18n/mn.po | 4 +- addons/sale_order_dates/i18n/nb.po | 4 +- addons/sale_order_dates/i18n/nl.po | 4 +- addons/sale_order_dates/i18n/pl.po | 4 +- addons/sale_order_dates/i18n/pt.po | 4 +- addons/sale_order_dates/i18n/pt_BR.po | 4 +- addons/sale_order_dates/i18n/ro.po | 6 +- addons/sale_order_dates/i18n/ru.po | 4 +- addons/sale_order_dates/i18n/sk.po | 4 +- addons/sale_order_dates/i18n/sl.po | 4 +- addons/sale_order_dates/i18n/sr@latin.po | 4 +- addons/sale_order_dates/i18n/sv.po | 4 +- addons/sale_order_dates/i18n/tr.po | 4 +- addons/sale_order_dates/i18n/zh_CN.po | 4 +- addons/sale_stock/i18n/ar.po | 4 +- addons/sale_stock/i18n/bg.po | 4 +- addons/sale_stock/i18n/bs.po | 4 +- addons/sale_stock/i18n/ca.po | 4 +- addons/sale_stock/i18n/cs.po | 4 +- addons/sale_stock/i18n/da.po | 4 +- addons/sale_stock/i18n/de.po | 4 +- addons/sale_stock/i18n/el.po | 4 +- addons/sale_stock/i18n/es.po | 4 +- addons/sale_stock/i18n/et.po | 4 +- addons/sale_stock/i18n/fi.po | 2 +- addons/sale_stock/i18n/fr.po | 6 +- addons/sale_stock/i18n/gl.po | 4 +- addons/sale_stock/i18n/hr.po | 4 +- addons/sale_stock/i18n/hu.po | 4 +- addons/sale_stock/i18n/id.po | 4 +- addons/sale_stock/i18n/is.po | 4 +- addons/sale_stock/i18n/it.po | 4 +- addons/sale_stock/i18n/ja.po | 4 +- addons/sale_stock/i18n/ko.po | 4 +- addons/sale_stock/i18n/lo.po | 4 +- addons/sale_stock/i18n/lt.po | 4 +- addons/sale_stock/i18n/lv.po | 4 +- addons/sale_stock/i18n/mk.po | 4 +- addons/sale_stock/i18n/mn.po | 4 +- addons/sale_stock/i18n/nb.po | 4 +- addons/sale_stock/i18n/nl.po | 6 +- addons/sale_stock/i18n/oc.po | 4 +- addons/sale_stock/i18n/pl.po | 4 +- addons/sale_stock/i18n/pt.po | 4 +- addons/sale_stock/i18n/pt_BR.po | 6 +- addons/sale_stock/i18n/ro.po | 6 +- addons/sale_stock/i18n/ru.po | 4 +- addons/sale_stock/i18n/sk.po | 4 +- addons/sale_stock/i18n/sl.po | 4 +- addons/sale_stock/i18n/sq.po | 4 +- addons/sale_stock/i18n/sr.po | 4 +- addons/sale_stock/i18n/sr@latin.po | 4 +- addons/sale_stock/i18n/sv.po | 4 +- addons/sale_stock/i18n/th.po | 4 +- addons/sale_stock/i18n/tlh.po | 4 +- addons/sale_stock/i18n/tr.po | 4 +- addons/sale_stock/i18n/uk.po | 4 +- addons/sale_stock/i18n/vi.po | 4 +- addons/sale_stock/i18n/zh_CN.po | 4 +- addons/sale_stock/i18n/zh_TW.po | 4 +- addons/share/i18n/ar.po | 4 +- addons/share/i18n/bg.po | 4 +- addons/share/i18n/bs.po | 4 +- addons/share/i18n/ca.po | 4 +- addons/share/i18n/cs.po | 4 +- addons/share/i18n/da.po | 4 +- addons/share/i18n/de.po | 4 +- addons/share/i18n/es.po | 4 +- addons/share/i18n/es_CR.po | 4 +- addons/share/i18n/et.po | 4 +- addons/share/i18n/fi.po | 4 +- addons/share/i18n/fr.po | 4 +- addons/share/i18n/gl.po | 4 +- addons/share/i18n/hr.po | 4 +- addons/share/i18n/hu.po | 4 +- addons/share/i18n/it.po | 4 +- addons/share/i18n/ja.po | 4 +- addons/share/i18n/lt.po | 4 +- addons/share/i18n/mk.po | 4 +- addons/share/i18n/mn.po | 4 +- addons/share/i18n/nl.po | 4 +- addons/share/i18n/pl.po | 19 +- addons/share/i18n/pt.po | 4 +- addons/share/i18n/pt_BR.po | 4 +- addons/share/i18n/ro.po | 6 +- addons/share/i18n/ru.po | 4 +- addons/share/i18n/sl.po | 4 +- addons/share/i18n/sv.po | 4 +- addons/share/i18n/th.po | 2 +- addons/share/i18n/tr.po | 4 +- addons/share/i18n/zh_CN.po | 4 +- addons/stock/i18n/ar.po | 4 +- addons/stock/i18n/bg.po | 4 +- addons/stock/i18n/bs.po | 4 +- addons/stock/i18n/ca.po | 4 +- addons/stock/i18n/cs.po | 4 +- addons/stock/i18n/da.po | 4 +- addons/stock/i18n/de.po | 4 +- addons/stock/i18n/el.po | 4 +- addons/stock/i18n/es.po | 4 +- addons/stock/i18n/es_AR.po | 4 +- addons/stock/i18n/es_BO.po | 4 +- addons/stock/i18n/es_CL.po | 4 +- addons/stock/i18n/es_CR.po | 4 +- addons/stock/i18n/es_DO.po | 4 +- addons/stock/i18n/es_EC.po | 4 +- addons/stock/i18n/es_MX.po | 4 +- addons/stock/i18n/es_VE.po | 4 +- addons/stock/i18n/et.po | 4 +- addons/stock/i18n/fi.po | 2 +- addons/stock/i18n/fr.po | 4 +- addons/stock/i18n/gl.po | 4 +- addons/stock/i18n/hr.po | 4 +- addons/stock/i18n/hu.po | 4 +- addons/stock/i18n/id.po | 4 +- addons/stock/i18n/it.po | 4 +- addons/stock/i18n/ja.po | 4 +- addons/stock/i18n/ko.po | 4 +- addons/stock/i18n/lt.po | 4 +- addons/stock/i18n/lv.po | 4 +- addons/stock/i18n/mk.po | 4 +- addons/stock/i18n/mn.po | 4 +- addons/stock/i18n/nb.po | 4 +- addons/stock/i18n/nl.po | 4 +- addons/stock/i18n/nl_BE.po | 4 +- addons/stock/i18n/pl.po | 4 +- addons/stock/i18n/pt.po | 4 +- addons/stock/i18n/pt_BR.po | 6 +- addons/stock/i18n/ro.po | 4 +- addons/stock/i18n/ru.po | 4 +- addons/stock/i18n/sl.po | 2 +- addons/stock/i18n/sq.po | 4 +- addons/stock/i18n/sr.po | 4 +- addons/stock/i18n/sr@latin.po | 4 +- addons/stock/i18n/sv.po | 4 +- addons/stock/i18n/th.po | 4 +- addons/stock/i18n/tlh.po | 4 +- addons/stock/i18n/tr.po | 4 +- addons/stock/i18n/uk.po | 4 +- addons/stock/i18n/vi.po | 4 +- addons/stock/i18n/zh_CN.po | 4 +- addons/stock/i18n/zh_TW.po | 4 +- addons/stock_invoice_directly/i18n/ar.po | 4 +- addons/stock_invoice_directly/i18n/bg.po | 4 +- addons/stock_invoice_directly/i18n/bs.po | 4 +- addons/stock_invoice_directly/i18n/ca.po | 4 +- addons/stock_invoice_directly/i18n/cs.po | 4 +- addons/stock_invoice_directly/i18n/da.po | 4 +- addons/stock_invoice_directly/i18n/de.po | 4 +- addons/stock_invoice_directly/i18n/el.po | 4 +- addons/stock_invoice_directly/i18n/en_GB.po | 4 +- addons/stock_invoice_directly/i18n/es.po | 4 +- addons/stock_invoice_directly/i18n/es_AR.po | 4 +- addons/stock_invoice_directly/i18n/es_CL.po | 4 +- addons/stock_invoice_directly/i18n/es_CR.po | 4 +- addons/stock_invoice_directly/i18n/et.po | 4 +- addons/stock_invoice_directly/i18n/fi.po | 4 +- addons/stock_invoice_directly/i18n/fr.po | 4 +- addons/stock_invoice_directly/i18n/gl.po | 4 +- addons/stock_invoice_directly/i18n/hr.po | 4 +- addons/stock_invoice_directly/i18n/hu.po | 4 +- addons/stock_invoice_directly/i18n/id.po | 4 +- addons/stock_invoice_directly/i18n/it.po | 4 +- addons/stock_invoice_directly/i18n/ja.po | 4 +- addons/stock_invoice_directly/i18n/ko.po | 4 +- addons/stock_invoice_directly/i18n/lt.po | 4 +- addons/stock_invoice_directly/i18n/lv.po | 4 +- addons/stock_invoice_directly/i18n/mk.po | 4 +- addons/stock_invoice_directly/i18n/mn.po | 4 +- addons/stock_invoice_directly/i18n/nb.po | 4 +- addons/stock_invoice_directly/i18n/nl.po | 4 +- addons/stock_invoice_directly/i18n/nl_BE.po | 4 +- addons/stock_invoice_directly/i18n/oc.po | 4 +- addons/stock_invoice_directly/i18n/pl.po | 4 +- addons/stock_invoice_directly/i18n/pt.po | 4 +- addons/stock_invoice_directly/i18n/pt_BR.po | 4 +- addons/stock_invoice_directly/i18n/ro.po | 6 +- addons/stock_invoice_directly/i18n/ru.po | 4 +- addons/stock_invoice_directly/i18n/sl.po | 4 +- addons/stock_invoice_directly/i18n/sq.po | 4 +- addons/stock_invoice_directly/i18n/sr.po | 4 +- .../stock_invoice_directly/i18n/sr@latin.po | 4 +- addons/stock_invoice_directly/i18n/sv.po | 4 +- addons/stock_invoice_directly/i18n/tr.po | 4 +- addons/stock_invoice_directly/i18n/uk.po | 4 +- addons/stock_invoice_directly/i18n/vi.po | 4 +- addons/stock_invoice_directly/i18n/zh_CN.po | 4 +- addons/stock_invoice_directly/i18n/zh_TW.po | 4 +- addons/stock_location/i18n/ar.po | 4 +- addons/stock_location/i18n/bg.po | 4 +- addons/stock_location/i18n/bs.po | 4 +- addons/stock_location/i18n/ca.po | 4 +- addons/stock_location/i18n/cs.po | 4 +- addons/stock_location/i18n/da.po | 4 +- addons/stock_location/i18n/de.po | 4 +- addons/stock_location/i18n/el.po | 4 +- addons/stock_location/i18n/es.po | 4 +- addons/stock_location/i18n/es_AR.po | 4 +- addons/stock_location/i18n/es_CL.po | 4 +- addons/stock_location/i18n/es_CR.po | 4 +- addons/stock_location/i18n/et.po | 4 +- addons/stock_location/i18n/fi.po | 4 +- addons/stock_location/i18n/fr.po | 4 +- addons/stock_location/i18n/gl.po | 4 +- addons/stock_location/i18n/hr.po | 4 +- addons/stock_location/i18n/hu.po | 4 +- addons/stock_location/i18n/id.po | 4 +- addons/stock_location/i18n/it.po | 4 +- addons/stock_location/i18n/ja.po | 4 +- addons/stock_location/i18n/ko.po | 4 +- addons/stock_location/i18n/lt.po | 4 +- addons/stock_location/i18n/lv.po | 4 +- addons/stock_location/i18n/mk.po | 4 +- addons/stock_location/i18n/mn.po | 4 +- addons/stock_location/i18n/nb.po | 4 +- addons/stock_location/i18n/nl.po | 4 +- addons/stock_location/i18n/nl_BE.po | 4 +- addons/stock_location/i18n/pl.po | 4 +- addons/stock_location/i18n/pt.po | 4 +- addons/stock_location/i18n/pt_BR.po | 4 +- addons/stock_location/i18n/ro.po | 6 +- addons/stock_location/i18n/ru.po | 4 +- addons/stock_location/i18n/sl.po | 4 +- addons/stock_location/i18n/sq.po | 4 +- addons/stock_location/i18n/sv.po | 4 +- addons/stock_location/i18n/th.po | 4 +- addons/stock_location/i18n/tlh.po | 4 +- addons/stock_location/i18n/tr.po | 4 +- addons/stock_location/i18n/uk.po | 4 +- addons/stock_location/i18n/vi.po | 4 +- addons/stock_location/i18n/zh_CN.po | 6 +- addons/stock_location/i18n/zh_TW.po | 4 +- addons/stock_no_autopicking/i18n/ar.po | 4 +- addons/stock_no_autopicking/i18n/bg.po | 4 +- addons/stock_no_autopicking/i18n/bs.po | 4 +- addons/stock_no_autopicking/i18n/ca.po | 4 +- addons/stock_no_autopicking/i18n/cs.po | 4 +- addons/stock_no_autopicking/i18n/da.po | 4 +- addons/stock_no_autopicking/i18n/de.po | 4 +- addons/stock_no_autopicking/i18n/el.po | 4 +- addons/stock_no_autopicking/i18n/es.po | 4 +- addons/stock_no_autopicking/i18n/es_AR.po | 4 +- addons/stock_no_autopicking/i18n/es_CL.po | 4 +- addons/stock_no_autopicking/i18n/es_CR.po | 4 +- addons/stock_no_autopicking/i18n/et.po | 4 +- addons/stock_no_autopicking/i18n/fi.po | 4 +- addons/stock_no_autopicking/i18n/fr.po | 4 +- addons/stock_no_autopicking/i18n/gl.po | 4 +- addons/stock_no_autopicking/i18n/hr.po | 4 +- addons/stock_no_autopicking/i18n/hu.po | 4 +- addons/stock_no_autopicking/i18n/id.po | 4 +- addons/stock_no_autopicking/i18n/it.po | 4 +- addons/stock_no_autopicking/i18n/ja.po | 4 +- addons/stock_no_autopicking/i18n/ko.po | 4 +- addons/stock_no_autopicking/i18n/lt.po | 4 +- addons/stock_no_autopicking/i18n/lv.po | 4 +- addons/stock_no_autopicking/i18n/mk.po | 4 +- addons/stock_no_autopicking/i18n/mn.po | 4 +- addons/stock_no_autopicking/i18n/nl.po | 4 +- addons/stock_no_autopicking/i18n/nl_BE.po | 4 +- addons/stock_no_autopicking/i18n/oc.po | 4 +- addons/stock_no_autopicking/i18n/pl.po | 4 +- addons/stock_no_autopicking/i18n/pt.po | 4 +- addons/stock_no_autopicking/i18n/pt_BR.po | 4 +- addons/stock_no_autopicking/i18n/ro.po | 6 +- addons/stock_no_autopicking/i18n/ru.po | 4 +- addons/stock_no_autopicking/i18n/sl.po | 4 +- addons/stock_no_autopicking/i18n/sq.po | 4 +- addons/stock_no_autopicking/i18n/sr@latin.po | 4 +- addons/stock_no_autopicking/i18n/sv.po | 4 +- addons/stock_no_autopicking/i18n/tlh.po | 4 +- addons/stock_no_autopicking/i18n/tr.po | 4 +- addons/stock_no_autopicking/i18n/uk.po | 4 +- addons/stock_no_autopicking/i18n/vi.po | 4 +- addons/stock_no_autopicking/i18n/zh_CN.po | 4 +- addons/stock_no_autopicking/i18n/zh_TW.po | 4 +- addons/subscription/i18n/ar.po | 4 +- addons/subscription/i18n/bg.po | 4 +- addons/subscription/i18n/bs.po | 4 +- addons/subscription/i18n/ca.po | 4 +- addons/subscription/i18n/cs.po | 4 +- addons/subscription/i18n/da.po | 4 +- addons/subscription/i18n/de.po | 4 +- addons/subscription/i18n/es.po | 4 +- addons/subscription/i18n/es_AR.po | 4 +- addons/subscription/i18n/es_CR.po | 4 +- addons/subscription/i18n/et.po | 4 +- addons/subscription/i18n/fi.po | 4 +- addons/subscription/i18n/fr.po | 4 +- addons/subscription/i18n/gl.po | 4 +- addons/subscription/i18n/hr.po | 4 +- addons/subscription/i18n/hu.po | 4 +- addons/subscription/i18n/id.po | 4 +- addons/subscription/i18n/it.po | 4 +- addons/subscription/i18n/ja.po | 4 +- addons/subscription/i18n/ko.po | 4 +- addons/subscription/i18n/lt.po | 4 +- addons/subscription/i18n/mk.po | 4 +- addons/subscription/i18n/nl.po | 4 +- addons/subscription/i18n/nl_BE.po | 4 +- addons/subscription/i18n/pl.po | 4 +- addons/subscription/i18n/pt.po | 4 +- addons/subscription/i18n/pt_BR.po | 4 +- addons/subscription/i18n/ro.po | 6 +- addons/subscription/i18n/ru.po | 4 +- addons/subscription/i18n/sl.po | 4 +- addons/subscription/i18n/sq.po | 4 +- addons/subscription/i18n/sv.po | 4 +- addons/subscription/i18n/tlh.po | 4 +- addons/subscription/i18n/tr.po | 4 +- addons/subscription/i18n/uk.po | 4 +- addons/subscription/i18n/vi.po | 4 +- addons/subscription/i18n/zh_CN.po | 4 +- addons/subscription/i18n/zh_TW.po | 4 +- addons/survey/i18n/ar.po | 4 +- addons/survey/i18n/bg.po | 4 +- addons/survey/i18n/ca.po | 4 +- addons/survey/i18n/cs.po | 4 +- addons/survey/i18n/da.po | 4 +- addons/survey/i18n/de.po | 4 +- addons/survey/i18n/es.po | 4 +- addons/survey/i18n/es_CR.po | 4 +- addons/survey/i18n/et.po | 4 +- addons/survey/i18n/fi.po | 4 +- addons/survey/i18n/fr.po | 6 +- addons/survey/i18n/gl.po | 4 +- addons/survey/i18n/hr.po | 4 +- addons/survey/i18n/hu.po | 4 +- addons/survey/i18n/it.po | 4 +- addons/survey/i18n/ja.po | 4 +- addons/survey/i18n/mk.po | 4 +- addons/survey/i18n/mn.po | 4 +- addons/survey/i18n/nl.po | 4 +- addons/survey/i18n/pl.po | 4 +- addons/survey/i18n/pt.po | 4 +- addons/survey/i18n/pt_BR.po | 4 +- addons/survey/i18n/ro.po | 6 +- addons/survey/i18n/ru.po | 4 +- addons/survey/i18n/sl.po | 161 ++++++---- addons/survey/i18n/sr.po | 4 +- addons/survey/i18n/sr@latin.po | 4 +- addons/survey/i18n/sv.po | 4 +- addons/survey/i18n/tr.po | 4 +- addons/survey/i18n/zh_CN.po | 32 +- addons/warning/i18n/ar.po | 4 +- addons/warning/i18n/bg.po | 4 +- addons/warning/i18n/bs.po | 4 +- addons/warning/i18n/ca.po | 4 +- addons/warning/i18n/cs.po | 4 +- addons/warning/i18n/da.po | 4 +- addons/warning/i18n/de.po | 4 +- addons/warning/i18n/el.po | 4 +- addons/warning/i18n/es.po | 4 +- addons/warning/i18n/es_AR.po | 4 +- addons/warning/i18n/es_CR.po | 4 +- addons/warning/i18n/et.po | 4 +- addons/warning/i18n/fi.po | 2 +- addons/warning/i18n/fr.po | 4 +- addons/warning/i18n/gl.po | 4 +- addons/warning/i18n/hr.po | 4 +- addons/warning/i18n/hu.po | 4 +- addons/warning/i18n/id.po | 4 +- addons/warning/i18n/it.po | 4 +- addons/warning/i18n/ja.po | 4 +- addons/warning/i18n/ko.po | 4 +- addons/warning/i18n/lt.po | 4 +- addons/warning/i18n/mk.po | 4 +- addons/warning/i18n/mn.po | 4 +- addons/warning/i18n/nb.po | 4 +- addons/warning/i18n/nl.po | 6 +- addons/warning/i18n/nl_BE.po | 4 +- addons/warning/i18n/pl.po | 4 +- addons/warning/i18n/pt.po | 4 +- addons/warning/i18n/pt_BR.po | 4 +- addons/warning/i18n/ro.po | 4 +- addons/warning/i18n/ru.po | 4 +- addons/warning/i18n/sl.po | 4 +- addons/warning/i18n/sq.po | 4 +- addons/warning/i18n/sr.po | 4 +- addons/warning/i18n/sr@latin.po | 4 +- addons/warning/i18n/sv.po | 4 +- addons/warning/i18n/th.po | 4 +- addons/warning/i18n/tlh.po | 4 +- addons/warning/i18n/tr.po | 4 +- addons/warning/i18n/uk.po | 4 +- addons/warning/i18n/vi.po | 4 +- addons/warning/i18n/zh_CN.po | 6 +- addons/warning/i18n/zh_TW.po | 4 +- addons/web_linkedin/i18n/cs.po | 4 +- addons/web_linkedin/i18n/de.po | 4 +- addons/web_linkedin/i18n/es.po | 4 +- addons/web_linkedin/i18n/fr.po | 4 +- addons/web_linkedin/i18n/hr.po | 4 +- addons/web_linkedin/i18n/hu.po | 4 +- addons/web_linkedin/i18n/it.po | 4 +- addons/web_linkedin/i18n/mk.po | 4 +- addons/web_linkedin/i18n/mn.po | 4 +- addons/web_linkedin/i18n/nl.po | 4 +- addons/web_linkedin/i18n/pl.po | 4 +- addons/web_linkedin/i18n/pt.po | 4 +- addons/web_linkedin/i18n/pt_BR.po | 6 +- addons/web_linkedin/i18n/ro.po | 6 +- addons/web_linkedin/i18n/sl.po | 4 +- addons/web_linkedin/i18n/tr.po | 4 +- addons/web_linkedin/i18n/zh_CN.po | 6 +- addons/web_shortcuts/i18n/bs.po | 4 +- addons/web_shortcuts/i18n/cs.po | 4 +- addons/web_shortcuts/i18n/da.po | 4 +- addons/web_shortcuts/i18n/de.po | 4 +- addons/web_shortcuts/i18n/el.po | 4 +- addons/web_shortcuts/i18n/en_GB.po | 4 +- addons/web_shortcuts/i18n/es.po | 4 +- addons/web_shortcuts/i18n/fi.po | 4 +- addons/web_shortcuts/i18n/fr.po | 4 +- addons/web_shortcuts/i18n/hr.po | 4 +- addons/web_shortcuts/i18n/hu.po | 4 +- addons/web_shortcuts/i18n/it.po | 4 +- addons/web_shortcuts/i18n/lt.po | 4 +- addons/web_shortcuts/i18n/mk.po | 4 +- addons/web_shortcuts/i18n/mn.po | 4 +- addons/web_shortcuts/i18n/nl.po | 4 +- addons/web_shortcuts/i18n/pl.po | 4 +- addons/web_shortcuts/i18n/pt.po | 4 +- addons/web_shortcuts/i18n/pt_BR.po | 4 +- addons/web_shortcuts/i18n/ro.po | 6 +- addons/web_shortcuts/i18n/ru.po | 4 +- addons/web_shortcuts/i18n/sl.po | 4 +- addons/web_shortcuts/i18n/sv.po | 4 +- addons/web_shortcuts/i18n/th.po | 4 +- addons/web_shortcuts/i18n/tr.po | 4 +- addons/web_shortcuts/i18n/vi.po | 4 +- addons/web_shortcuts/i18n/zh_CN.po | 6 +- addons/web_shortcuts/i18n/zh_TW.po | 4 +- openerp/addons/base/i18n/ja.po | 14 +- 6130 files changed, 14218 insertions(+), 13504 deletions(-) diff --git a/addons/account/i18n/ar.po b/addons/account/i18n/ar.po index 14a4590fadc..56f578b2fc8 100644 --- a/addons/account/i18n/ar.po +++ b/addons/account/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-17 07:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:49+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/bg.po b/addons/account/i18n/bg.po index 277081f0b01..7f7d6a0e4b4 100644 --- a/addons/account/i18n/bg.po +++ b/addons/account/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:38+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:49+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/br.po b/addons/account/i18n/br.po index dea3b69761a..75e3f1252b4 100644 --- a/addons/account/i18n/br.po +++ b/addons/account/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:38+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:49+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/bs.po b/addons/account/i18n/bs.po index fba3bfb99f6..986ddce75c3 100644 --- a/addons/account/i18n/bs.po +++ b/addons/account/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:49+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ca.po b/addons/account/i18n/ca.po index b0c1852e8f9..ae168fcd035 100644 --- a/addons/account/i18n/ca.po +++ b/addons/account/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:39+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:49+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/cs.po b/addons/account/i18n/cs.po index 6123684d0cb..5aa3797c532 100644 --- a/addons/account/i18n/cs.po +++ b/addons/account/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-23 05:35+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:49+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/da.po b/addons/account/i18n/da.po index fdf27b04515..aa0a1be963d 100644 --- a/addons/account/i18n/da.po +++ b/addons/account/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:50+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:49+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/de.po b/addons/account/i18n/de.po index bce34503154..29f4464fdbb 100644 --- a/addons/account/i18n/de.po +++ b/addons/account/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-09 05:48+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:50+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/el.po b/addons/account/i18n/el.po index 412de8e68b7..369dfc3e74a 100644 --- a/addons/account/i18n/el.po +++ b/addons/account/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:40+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:50+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/en_GB.po b/addons/account/i18n/en_GB.po index c56dd4631be..254175cc03f 100644 --- a/addons/account/i18n/en_GB.po +++ b/addons/account/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:44+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:55+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/en_US.po b/addons/account/i18n/en_US.po index ef925faee83..eaa8c4c4ba2 100644 --- a/addons/account/i18n/en_US.po +++ b/addons/account/i18n/en_US.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:44+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:54+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es.po b/addons/account/i18n/es.po index 51d95bd2c67..9ff16c09f51 100644 --- a/addons/account/i18n/es.po +++ b/addons/account/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-24 06:37+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:53+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_AR.po b/addons/account/i18n/es_AR.po index 0f6a6a23764..5af8f494ed8 100644 --- a/addons/account/i18n/es_AR.po +++ b/addons/account/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:44+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:54+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_CL.po b/addons/account/i18n/es_CL.po index 7d4368a7798..612cd23dce7 100644 --- a/addons/account/i18n/es_CL.po +++ b/addons/account/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:44+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:55+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_CR.po b/addons/account/i18n/es_CR.po index 3cc2390fb46..0e74583d1dd 100644 --- a/addons/account/i18n/es_CR.po +++ b/addons/account/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:55+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_DO.po b/addons/account/i18n/es_DO.po index 0cf4a90ed1d..ca1d7debc85 100644 --- a/addons/account/i18n/es_DO.po +++ b/addons/account/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:44+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:55+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_EC.po b/addons/account/i18n/es_EC.po index 787fb47a78b..305f4ebb067 100644 --- a/addons/account/i18n/es_EC.po +++ b/addons/account/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:55+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_MX.po b/addons/account/i18n/es_MX.po index 62b5f82788b..7608e61928a 100644 --- a/addons/account/i18n/es_MX.po +++ b/addons/account/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:55+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_PY.po b/addons/account/i18n/es_PY.po index eee43a38842..041617d45c2 100644 --- a/addons/account/i18n/es_PY.po +++ b/addons/account/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_UY.po b/addons/account/i18n/es_UY.po index 0aa1df5566b..39d0afccdb5 100644 --- a/addons/account/i18n/es_UY.po +++ b/addons/account/i18n/es_UY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:55+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_VE.po b/addons/account/i18n/es_VE.po index 1a2f0457f10..77f64314696 100644 --- a/addons/account/i18n/es_VE.po +++ b/addons/account/i18n/es_VE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:44+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:54+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/et.po b/addons/account/i18n/et.po index e40961a854a..38d71649840 100644 --- a/addons/account/i18n/et.po +++ b/addons/account/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-11 05:29+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:49+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/eu.po b/addons/account/i18n/eu.po index d483db58205..c69a05ca6cd 100644 --- a/addons/account/i18n/eu.po +++ b/addons/account/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:38+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:49+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fa.po b/addons/account/i18n/fa.po index 85649cede97..e3a64f7bef3 100644 --- a/addons/account/i18n/fa.po +++ b/addons/account/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:42+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:52+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fa_AF.po b/addons/account/i18n/fa_AF.po index 8b09551dd06..9e7afa5c1d5 100644 --- a/addons/account/i18n/fa_AF.po +++ b/addons/account/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fi.po b/addons/account/i18n/fi.po index e9f09f79cb6..f663d09d37f 100644 --- a/addons/account/i18n/fi.po +++ b/addons/account/i18n/fi.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-14 22:29+0000\n" -"PO-Revision-Date: 2013-11-17 17:59+0000\n" +"PO-Revision-Date: 2013-11-20 19:09+0000\n" "Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:50+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account @@ -277,7 +277,7 @@ msgid "" "entries." msgstr "" "Tilityyppiä käytetään maakohtaisten virallisten raporttien luomiseen sekä " -"tilikauden lopetukseen ja uuden tilikauden avaukseen." +"tilikauden sulkemiseen ja uuden tilikauden avaukseen." #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 @@ -427,7 +427,7 @@ msgstr "Ostohyvitys" #. module: account #: selection:account.journal,type:0 msgid "Opening/Closing Situation" -msgstr "Avaus/päättäämistilanne" +msgstr "Avaus/sulkemistilanne" #. module: account #: help:account.journal,currency:0 @@ -968,6 +968,8 @@ msgid "" "Print Report with the currency column if the currency differs from the " "company currency." msgstr "" +"Tulosta raporttiin valuuttasarake, mikäli valuutta poikkeaa yrityksen " +"kotivaluutasta." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -1027,6 +1029,8 @@ msgid "" " opening/closing fiscal " "year process." msgstr "" +"Et voi täsmäyttää päiväkirjan vientejä, jos ne on luotu tilikauden avaus- " +"tai päätösvienteinä tilikauden avauksessa tai sulkemisessa." #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_new @@ -1217,7 +1221,7 @@ msgstr "Tilin nimi." #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "Avataan edellisen tilikauden päätöksen pohjalta" +msgstr "Avataan edellisen tilikauden sulkemisen pohjalta" #. module: account #: help:account.tax.code,notprintable:0 @@ -1239,7 +1243,7 @@ msgstr "Vaakasuora" #. module: account #: help:account.fiscalyear.close,fy_id:0 msgid "Select a Fiscal year to close" -msgstr "Valitse suljettava kirjanpitokausi" +msgstr "Valitse suljettava tilikausi" #. module: account #: help:account.account.template,user_type:0 @@ -1422,7 +1426,7 @@ msgstr "Muut" #. module: account #: view:account.subscription:0 msgid "Draft Subscription" -msgstr "" +msgstr "Rekisteröitymisehdotus" #. module: account #: view:account.account:0 @@ -1582,7 +1586,7 @@ msgstr "Laskun tila" #: model:ir.actions.act_window,name:account.action_account_open_closed_fiscalyear #: model:ir.ui.menu,name:account.menu_wizard_account_open_closed_fiscalyear msgid "Cancel Closing Entries" -msgstr "Hylkää päätösviennit" +msgstr "Peruuta tilinpäätösviennit" #. module: account #: view:account.bank.statement:0 @@ -1878,7 +1882,7 @@ msgstr "Analyyttisiä kuluja laskutettavaksi" #. module: account #: view:ir.sequence:0 msgid "Fiscal Year Sequence" -msgstr "Kirjanpitovuoden järjestys" +msgstr "Tilikauden numerointi" #. module: account #: field:account.config.settings,group_analytic_accounting:0 @@ -1933,6 +1937,8 @@ msgid "" "The journal must have centralized counterpart without the Skipping draft " "state option checked." msgstr "" +"Tällä päiväkirjalla pitää olla keskitetty vastapuoli ilman että ohitetaan " +"ehdotustilan mahdollinen tarkistaminen." #. module: account #: code:addons/account/account_move_line.py:854 @@ -2021,7 +2027,7 @@ msgstr "Analyyttisen kirjanpidon kartat" #. module: account #: report:account.overdue:0 msgid "Customer Ref:" -msgstr "Asiakkaan Viite:" +msgstr "Asiakkaan viite:" #. module: account #: help:account.tax,base_code_id:0 @@ -2053,7 +2059,7 @@ msgstr "Lasku vahvistettu" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "Maksa toimittajillesi sekillä" +msgstr "Maksa toimittajillesi šekillä" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -2393,8 +2399,8 @@ msgid "" "If you want the journal should be control at opening/closing, check this " "option" msgstr "" -"Jos haluat, että päiväkirjan pitäisi ohjata avaus/päätös-toimintaa, valitse " -"tämä vaihtoehto" +"Jos haluat, että päiväkirjan pitäisi ohjata päivittäistä kassan avaus-" +"/sulkemistoimintaa, valitse tämä vaihtoehto" #. module: account #: view:account.bank.statement:0 @@ -2486,7 +2492,7 @@ msgstr "SInulla ei ole käyttöoikeutta avata tätä %s päiväkirjaa !" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "" +msgstr "Tarkista toimittajalaskujen kokonaisarvo" #. module: account #: selection:account.invoice,state:0 @@ -2637,7 +2643,7 @@ msgstr "Tilikausi" #: help:accounting.report,fiscalyear_id:0 #: help:accounting.report,fiscalyear_id_cmp:0 msgid "Keep empty for all open fiscal year" -msgstr "Jätä tyhjäksi käyttääksesi kaikkia avoimia tilikausia" +msgstr "Jätä tyhjäksi kaikille avoimille tilikausille" #. module: account #: code:addons/account/account.py:653 @@ -2646,7 +2652,7 @@ msgid "" "You cannot change the type of account from 'Closed' to any other type as it " "contains journal items!" msgstr "" -"Et voi muuttaa tilityyppiä \"Suljettu\" muuhun tilaan, sillä se sisltää jo " +"Et voi muuttaa tilityyppiä \"Suljettu\" muuhun tilaan, sillä se sisältää jo " "päiväkirjavientejä!" #. module: account @@ -2710,7 +2716,7 @@ msgstr "Verokanta" #: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." -msgstr "Et vii luoda päiväkirjavientejä suljetulle tilille %s %s." +msgstr "Et voi luoda päiväkirjavientejä suljetulle tilille %s %s." #. module: account #: field:account.period.close,sure:0 @@ -2774,7 +2780,7 @@ msgstr "Peruskoodi" #. module: account #: help:account.invoice.tax,sequence:0 msgid "Gives the sequence order when displaying a list of invoice tax." -msgstr "" +msgstr "Antaa esitysjärjestyksen näytettäessä laskun verolistan" #. module: account #: field:account.tax,base_sign:0 @@ -2900,7 +2906,7 @@ msgstr "Analyyttinen tili" #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "Oletusarvoinen ostovero" #. module: account #: view:account.account:0 @@ -2932,7 +2938,7 @@ msgstr "Konfiguraatio virhe!" #: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." -msgstr "" +msgstr "Tila %s vahvistettu, päiväkirjaviennit on luotu." #. module: account #: field:account.invoice.report,price_average:0 @@ -2985,7 +2991,7 @@ msgstr "Viite" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Purchase Tax" -msgstr "" +msgstr "Ostovero" #. module: account #: help:account.move.line,tax_code_id:0 @@ -3122,7 +3128,7 @@ msgstr "" #: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." -msgstr "" +msgstr "Valitse jakso, joka kuuluu samalle yhtiölle." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all @@ -3135,7 +3141,7 @@ msgstr "Myynnit tileittäin" #: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "" +msgstr "Et voi poistaa tallennetun päiväkirjan vientiä \"%s\"." #. module: account #: help:account.tax,account_collected_id:0 @@ -3147,7 +3153,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_journal_id:0 msgid "Sale journal" -msgstr "" +msgstr "Myyntipäiväkirja" #. module: account #: code:addons/account/account.py:2346 @@ -3164,6 +3170,8 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" +"Tämä päiväkirja sisältää jo kirjauksia, joten et voi enää muuttaa sen " +"yrityskenttää." #. module: account #: code:addons/account/account.py:409 @@ -3182,7 +3190,7 @@ msgstr "Verokoodit" #. module: account #: view:account.account:0 msgid "Unrealized Gains and losses" -msgstr "" +msgstr "Toteutumattomat voitot ja tappiot" #. module: account #: model:ir.ui.menu,name:account.menu_account_customer @@ -3209,7 +3217,7 @@ msgstr "Elokuu" #. module: account #: field:accounting.report,debit_credit:0 msgid "Display Debit/Credit Columns" -msgstr "" +msgstr "Näytä Debet/Kredit-sarakkeet" #. module: account #: report:account.journal.period.print:0 @@ -3236,12 +3244,12 @@ msgstr "" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Täsmäyttämättömät tapahtumat" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 msgid "Only One Chart Template Available" -msgstr "" +msgstr "Vain yksi tilikarttamalli saatavilla" #. module: account #: view:account.chart.template:0 @@ -3254,7 +3262,7 @@ msgstr "Menotili" #: field:account.bank.statement,message_summary:0 #: field:account.invoice,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Yhteenveto" #. module: account #: help:account.invoice,period_id:0 @@ -3339,13 +3347,13 @@ msgstr "Alatilit" #: model:ir.actions.report.xml,name:account.account_account_balance #: model:ir.ui.menu,name:account.menu_general_Balance_report msgid "Trial Balance" -msgstr "" +msgstr "Koetase" #. module: account #: code:addons/account/account.py:431 #, python-format msgid "Unable to adapt the initial balance (negative value)." -msgstr "" +msgstr "Alkusaldot eivät kelpaa (negatiivinen arvo)." #. module: account #: selection:account.invoice,type:0 @@ -3364,7 +3372,7 @@ msgstr "Valitse tilikausi" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "" +msgstr "Päivämääräväli" #. module: account #: view:account.period:0 @@ -3380,12 +3388,12 @@ msgstr "Laskutusvaluutta" #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "" +msgstr "Kirjanpitoraportit" #. module: account #: field:account.payment.term,line_ids:0 msgid "Terms" -msgstr "Termit" +msgstr "Ehdot" #. module: account #: field:account.chart.template,tax_template_ids:0 @@ -3395,7 +3403,7 @@ msgstr "Veromallilista" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "" +msgstr "Myynti-/Ostopäiväkirja" #. module: account #: help:account.account,currency_mode:0 @@ -3416,7 +3424,7 @@ msgstr "" #: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." -msgstr "" +msgstr "Mallitilillä ei ole ylätilin koodia." #. module: account #: help:account.chart.template,code_digits:0 @@ -3427,12 +3435,12 @@ msgstr "Numeroiden määrä tilikoodissa" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "" +msgstr "Toimittajan maksuehdot" #. module: account #: view:account.fiscalyear:0 msgid "Search Fiscalyear" -msgstr "Hae kirjanpitovuosi" +msgstr "Hae tilikausi" #. module: account #: selection:account.tax,applicable_type:0 @@ -3500,12 +3508,12 @@ msgstr "Sähköinen tiedosto" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Täsmäytysviite" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 msgid "Company has a chart of accounts" -msgstr "" +msgstr "Yrityksellä on tilikartta" #. module: account #: model:ir.model,name:account.model_account_tax_code_template @@ -3605,7 +3613,7 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Account Period" -msgstr "" +msgstr "Tilikausi" #. module: account #: help:account.account,currency_id:0 @@ -3632,7 +3640,7 @@ msgstr "Tilikarttamallit" #. module: account #: view:account.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Tapahtumat" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile @@ -3766,7 +3774,7 @@ msgstr "Sulje jakso" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "Avaava välisaldo" #. module: account #: constraint:account.move.line:0 @@ -4169,7 +4177,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "" +msgstr "Tarkista toimittajalaskujen kokonaisarvo" #. module: account #: view:account.tax:0 @@ -4503,6 +4511,8 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Tätä maksuehtoa käytetään oletuehdon asemasta myyntitilauksilla ja " +"myyntilaskuilla." #. module: account #: view:account.config.settings:0 @@ -4641,7 +4651,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "" +msgstr "Toimitttajalaskujen numerointi" #. module: account #: code:addons/account/account_invoice.py:610 @@ -4700,7 +4710,7 @@ msgstr "Jätä tyhjäksi käyttääksesi nykyistä päivämäärää" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "Sulkeva välisaldo" #. module: account #: field:account.tax,base_code_id:0 @@ -4762,7 +4772,7 @@ msgstr "" #: code:addons/account/wizard/account_fiscalyear_close.py:41 #, python-format msgid "End of Fiscal Year Entry" -msgstr "Tilikauden päättymisen merkintä" +msgstr "Tilikauden päätöskirjaukset" #. module: account #: selection:account.move.line,state:0 @@ -5321,7 +5331,7 @@ msgstr "Saldo tilityypeittäin" #. module: account #: view:account.fiscalyear.close:0 msgid "Generate Fiscal Year Opening Entries" -msgstr "Luo merkinnät tilikauden avaukselle" +msgstr "Luo avauskirjaukset tilikaudelle" #. module: account #: model:res.groups,name:account.group_account_user @@ -5724,7 +5734,7 @@ msgstr "Sisällytä perusmäärään" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "Toimittajalaskun numero" #. module: account #: help:account.payment.term.line,days:0 @@ -5746,6 +5756,7 @@ msgstr "Määrän laskenta" #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" +"Suljetun jakson %s päiväkirjaan %s ei voi lisätä tai muuttaa kirjauksia." #. module: account #: view:account.journal:0 @@ -5917,7 +5928,7 @@ msgstr "Analyyttiset tilit" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "" +msgstr "Asiakaslaskut ja -hyvitykset" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -5983,6 +5994,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Tätä maksuehtoa käytetään oletusarvon asemasta ostotilauksilla ja " +"toimittajalaskuilla." #. module: account #: code:addons/account/account_invoice.py:474 @@ -6163,7 +6176,7 @@ msgstr "Maaliskuu" #: code:addons/account/account.py:1031 #, python-format msgid "You can not re-open a period which belongs to closed fiscal year" -msgstr "" +msgstr "Et voi avata uudelleen jaksoa, joka kuuluu suljetulle tilikaudelle" #. module: account #: report:account.analytic.account.journal:0 @@ -6567,7 +6580,7 @@ msgstr "" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 msgid "Select a fiscal year to close" -msgstr "Valitse suljettava kirjanpitovuosi" +msgstr "Valitse suljettava tilikausi" #. module: account #: help:account.chart.template,tax_template_ids:0 @@ -6645,7 +6658,7 @@ msgstr "Saatavat" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on closed account." -msgstr "" +msgstr "Et voi luoda päiväkirjatapahtumia suljetulle tilille." #. module: account #: code:addons/account/account_invoice.py:633 @@ -6783,6 +6796,7 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" +"Avaus/Päätösjaksoa ei ole määritelty, lup yksi jakso ja tee avausviennit." #. module: account #: help:account.tax.template,sequence:0 @@ -6975,6 +6989,8 @@ msgid "" "Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for " "2%." msgstr "" +"Maksuehdon prosentit annetaan desimaalilukuina väliltä 0 - 1. Esim.; 2% " +"kirjataan 0,02." #. module: account #: report:account.invoice:0 @@ -7118,7 +7134,7 @@ msgstr "Luo merkintä" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Cancel Fiscal Year Closing Entries" -msgstr "" +msgstr "Peruuta tilikauden päätöskirjaukset" #. module: account #: selection:account.account.type,report_type:0 @@ -7382,7 +7398,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "Hallitse asiakkaan maksuja" #. module: account #: help:report.invoice.created,origin:0 @@ -7416,7 +7432,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 msgid "Customer Invoices" -msgstr "Asiakas Laskutus" +msgstr "Asiakaslaskut" #. module: account #: view:account.tax:0 @@ -7552,7 +7568,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "Asiakasviite" #. module: account #: field:account.account.template,parent_id:0 @@ -7568,7 +7584,7 @@ msgstr "Hinta" #: view:account.bank.statement:0 #: field:account.bank.statement,closing_details_ids:0 msgid "Closing Cashbox Lines" -msgstr "" +msgstr "Suljetaan kassakoneyhteydet" #. module: account #: view:account.bank.statement:0 @@ -7645,9 +7661,9 @@ msgid "" "new counterpart but will share the same counterpart. This is used in fiscal " "year closing." msgstr "" -"Valitse määrittääksesi että jokainen merkintä tähän päiväkirjaan ei luo " -"uutta vastinetta vaan käyttää jaettua vastinetta. Tätä käytetään tilikauden " -"päätökseen." +"Valitse määrittääksesi, että yksikään merkintä tähän päiväkirjaan, ei luo " +"uutta vastapuolta vaan käyttävät yhteistä jaettua vastapuolta. Tätä " +"käytetään tilikauden päätökseen." #. module: account #: field:account.bank.statement,closing_date:0 @@ -7802,7 +7818,7 @@ msgstr "Laskun rivi" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "" +msgstr "Asiakas- ja toimittajahyvitykset" #. module: account #: field:account.financial.report,sign:0 @@ -8370,7 +8386,7 @@ msgstr "" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Partner Payment Term" -msgstr "Kumppani maksutermi" +msgstr "Kumppanin maksuehto" #. module: account #: help:account.move.reconcile,opening_reconciliation:0 @@ -8449,7 +8465,7 @@ msgstr "Maksu tilikirja" #. module: account #: view:account.config.settings:0 msgid "No Fiscal Year Defined for This Company" -msgstr "" +msgstr "Tälle yritykselle ei ole määritelty tilikautta" #. module: account #: view:account.invoice:0 @@ -8582,7 +8598,7 @@ msgstr "" #: 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 "Talouskantojen mallit" +msgstr "Verokantojen mallit" #. module: account #: view:account.entries.report:0 @@ -8778,7 +8794,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state msgid "Fiscalyear Close state" -msgstr "Kirjanpitovuoden sulkemisen tila" +msgstr "Tilikauden sulkemisen tila" #. module: account #: field:account.invoice.refund,journal_id:0 @@ -8801,6 +8817,8 @@ msgstr "Suodata käyttäen" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" +"Sulkeaksesi jakson, sinun pitää ensin tehdä tähän liittyvät " +"päiväkirjaviennit." #. module: account #: view:account.entries.report:0 @@ -8876,7 +8894,7 @@ msgstr "Tilin tyyppi sallittu (tyhjä ei kontrolleille)" #. module: account #: view:account.payment.term:0 msgid "Payment term explanation for the customer..." -msgstr "" +msgstr "Maksuehdon selite asiakkaalle..." #. module: account #: help:account.move.line,amount_residual:0 @@ -8907,7 +8925,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close msgid "Fiscalyear Close" -msgstr "Kirjanpitovuoden sulkeminen" +msgstr "Tilikauden sulkeminen" #. module: account #: sql_constraint:account.account:0 @@ -8991,7 +9009,7 @@ msgstr "Sekalaiset" #. module: account #: help:res.partner,debit:0 msgid "Total amount you have to pay to this supplier." -msgstr "Kokonaismaksun määrä joka sinun täytyy maksaa toimittajalle" +msgstr "Kokonaisarvo joka pitää maksaa toimittajalle." #. module: account #: model:process.node,name:account.process_node_analytic0 @@ -9045,7 +9063,7 @@ msgstr "Kulut" #. module: account #: help:account.chart,fiscalyear:0 msgid "Keep empty for all open fiscal years" -msgstr "Jätä tyhjäksi niin käytetään kaikkia avoimia kirjanpitovuosia" +msgstr "Jätä tyhjäksi kaikille avoimille tilikausille" #. module: account #: help:account.move.line,amount_currency:0 @@ -9208,7 +9226,7 @@ msgstr "" #. module: account #: field:account.config.settings,has_fiscal_year:0 msgid "Company has a fiscal year" -msgstr "" +msgstr "Yhtiöllä on tilikausi" #. module: account #: help:account.tax,child_depend:0 @@ -9299,7 +9317,7 @@ msgstr "Rekisteröiy maksu" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close states of Fiscal year and periods" -msgstr "" +msgstr "Sulje tilikauden ja jaksojen tilat" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 @@ -9491,7 +9509,7 @@ msgstr "Saatavien tilit" #. module: account #: field:account.config.settings,purchase_refund_sequence_prefix:0 msgid "Supplier credit note sequence" -msgstr "" +msgstr "Toimittajan hyvityslaskujen numerointi" #. module: account #: code:addons/account/wizard/account_state_open.py:37 @@ -9662,7 +9680,7 @@ msgstr "" #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "" +msgstr "Tällä asiakkaalle ei ole myöhässä olevia tapahtumia." #. module: account #: help:account.tax,account_paid_id:0 @@ -9739,7 +9757,7 @@ msgstr "" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "" +msgstr "Asiakas- ja toimittajalaskut" #. module: account #: model:process.node,note:account.process_node_paymententries0 @@ -9961,7 +9979,7 @@ msgstr "Analyyttisiltä tileiltä" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Konfiguroi tilikausi" #. module: account #: field:account.period,name:0 @@ -10038,7 +10056,7 @@ msgstr "" #. module: account #: field:account.period,special:0 msgid "Opening/Closing Period" -msgstr "Avaava/Sulkeva Jakso" +msgstr "Avaava/päättävä jakso" #. module: account #: field:account.account,currency_id:0 @@ -10322,7 +10340,7 @@ msgstr "Verolähde" #. module: account #: view:ir.sequence:0 msgid "Fiscal Year Sequences" -msgstr "Tilikausien sarjat" +msgstr "Tilikauden numeroinnit" #. module: account #: selection:account.financial.report,display_detail:0 @@ -10554,7 +10572,7 @@ msgstr "Laskun tila on valmis" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Hallitse asiakkaan maksuseurantaa" #. module: account #: model:ir.model,name:account.model_report_account_sales @@ -10718,7 +10736,7 @@ msgstr "Valinnainen toinen valuutta jos merkintä on monivaluuttainen." #: model:process.transition,note:account.process_transition_invoiceimport0 msgid "" "Import of the statement in the system from a supplier or customer invoice" -msgstr "" +msgstr "Tuo toimittaja- tai asiakaslaskulta ilmoitus/tieto järjestelmään" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing @@ -10866,6 +10884,8 @@ msgid "" "You cannot remove/deactivate an account which is set on a customer or " "supplier." msgstr "" +"Asiakkaalle tai toimittajalle asetettua tiliä ei voi poistaa tai muuttaa " +"sitä ei-aktiiviseksi." #. module: account #: model:ir.model,name:account.model_validate_account_move_lines @@ -10908,7 +10928,7 @@ msgstr "Laskuta verot manuaalisesti" #: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." -msgstr "" +msgstr "Toimittajan maksuehdossa ei ole maksuehtoriviä." #. module: account #: field:account.account,parent_right:0 @@ -10988,7 +11008,7 @@ msgstr "Helmikuu" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_closing:0 msgid "Closing Unit Numbers" -msgstr "" +msgstr "Suljetaan kassakoneen numerot" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -11045,7 +11065,7 @@ msgstr "Tuotemallin kustannustili" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "Asiakkaan maksuehto" #. module: account #: help:accounting.report,label_filter:0 diff --git a/addons/account/i18n/fr.po b/addons/account/i18n/fr.po index ca3b5a499d9..044e976e828 100644 --- a/addons/account/i18n/fr.po +++ b/addons/account/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-30 05:24+0000\n" -"X-Generator: Launchpad (build 16750)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:50+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fr_BE.po b/addons/account/i18n/fr_BE.po index 29f026f1d49..1878bcea0f2 100644 --- a/addons/account/i18n/fr_BE.po +++ b/addons/account/i18n/fr_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:44+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:54+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/gl.po b/addons/account/i18n/gl.po index db585d70f3a..071031a5bff 100644 --- a/addons/account/i18n/gl.po +++ b/addons/account/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:40+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:50+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/gu.po b/addons/account/i18n/gu.po index c56263bfc9a..34ac47efc7a 100644 --- a/addons/account/i18n/gu.po +++ b/addons/account/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:40+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:50+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/he.po b/addons/account/i18n/he.po index 5dc8b3adb3e..c19e0e91786 100644 --- a/addons/account/i18n/he.po +++ b/addons/account/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:40+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:50+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hi.po b/addons/account/i18n/hi.po index c9f49a8a1c3..7946662b326 100644 --- a/addons/account/i18n/hi.po +++ b/addons/account/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:40+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:50+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hr.po b/addons/account/i18n/hr.po index bdddeab5ac4..d21e6f39405 100644 --- a/addons/account/i18n/hr.po +++ b/addons/account/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-25 06:00+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:53+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hu.po b/addons/account/i18n/hu.po index e3c34760e14..2498c323f32 100644 --- a/addons/account/i18n/hu.po +++ b/addons/account/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:50+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/id.po b/addons/account/i18n/id.po index 2732165a3d0..bd04d19de68 100644 --- a/addons/account/i18n/id.po +++ b/addons/account/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:40+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:51+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/is.po b/addons/account/i18n/is.po index 4c9b2eeae9e..281b6153b47 100644 --- a/addons/account/i18n/is.po +++ b/addons/account/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:40+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:50+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/it.po b/addons/account/i18n/it.po index cf98dcd2157..1dbf556e475 100644 --- a/addons/account/i18n/it.po +++ b/addons/account/i18n/it.po @@ -9,14 +9,14 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-14 22:29+0000\n" "PO-Revision-Date: 2013-03-12 15:06+0000\n" -"Last-Translator: Leonardo Pistone - Agile BG - Domsense " -"\n" +"Last-Translator: Leonardo Pistone @ camptocamp " +"\n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:40+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:51+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ja.po b/addons/account/i18n/ja.po index e1c73a99fd8..02e872a7ee1 100644 --- a/addons/account/i18n/ja.po +++ b/addons/account/i18n/ja.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-15 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:51+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account diff --git a/addons/account/i18n/kab.po b/addons/account/i18n/kab.po index 9c3f058316f..c2dd33c2cb3 100644 --- a/addons/account/i18n/kab.po +++ b/addons/account/i18n/kab.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:41+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:51+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/kk.po b/addons/account/i18n/kk.po index aa506d9fb24..2baa9201582 100644 --- a/addons/account/i18n/kk.po +++ b/addons/account/i18n/kk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:41+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:51+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ko.po b/addons/account/i18n/ko.po index 85604874fb1..9b272d2c28a 100644 --- a/addons/account/i18n/ko.po +++ b/addons/account/i18n/ko.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-14 22:29+0000\n" "PO-Revision-Date: 2013-05-14 01:08+0000\n" -"Last-Translator: AhnJD \n" +"Last-Translator: AhnJD \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:41+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:51+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lo.po b/addons/account/i18n/lo.po index 4f3d7fe978b..b0c9957fc95 100644 --- a/addons/account/i18n/lo.po +++ b/addons/account/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:41+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:51+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lt.po b/addons/account/i18n/lt.po index 9e02e985cac..eef65c4ca25 100644 --- a/addons/account/i18n/lt.po +++ b/addons/account/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:41+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:51+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lv.po b/addons/account/i18n/lv.po index f30a9e6ec9f..2baa1cc5b5d 100644 --- a/addons/account/i18n/lv.po +++ b/addons/account/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:41+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:51+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/mk.po b/addons/account/i18n/mk.po index e51c10e40a0..ee9e579b1e0 100644 --- a/addons/account/i18n/mk.po +++ b/addons/account/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:41+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:51+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account diff --git a/addons/account/i18n/mn.po b/addons/account/i18n/mn.po index 8d9aab3f3dd..6941ef34822 100644 --- a/addons/account/i18n/mn.po +++ b/addons/account/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-25 05:43+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:52+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/nb.po b/addons/account/i18n/nb.po index 37b17b54209..2d6b84d7e31 100644 --- a/addons/account/i18n/nb.po +++ b/addons/account/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:41+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:52+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index 60598e5d130..abb26d45c73 100644 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-14 22:29+0000\n" -"PO-Revision-Date: 2013-11-16 12:52+0000\n" +"PO-Revision-Date: 2013-11-20 14:39+0000\n" "Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:49+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account @@ -1333,7 +1333,7 @@ msgstr "Toepasbaarheidsopties" #. module: account #: report:account.partner.balance:0 msgid "In dispute" -msgstr "Wordt betwist" +msgstr "Betwist" #. module: account #: view:account.journal:0 diff --git a/addons/account/i18n/nl_BE.po b/addons/account/i18n/nl_BE.po index db15db3dfce..371a02515c7 100644 --- a/addons/account/i18n/nl_BE.po +++ b/addons/account/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:55+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/oc.po b/addons/account/i18n/oc.po index cd1defaf5b6..39964a88882 100644 --- a/addons/account/i18n/oc.po +++ b/addons/account/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:41+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:52+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/pl.po b/addons/account/i18n/pl.po index 8513d996d99..f9b7003c6df 100644 --- a/addons/account/i18n/pl.po +++ b/addons/account/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:52+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account diff --git a/addons/account/i18n/pt.po b/addons/account/i18n/pt.po index 6a91ea90438..155551dd18a 100644 --- a/addons/account/i18n/pt.po +++ b/addons/account/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:52+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po index 02109d28fe0..d398d594d49 100644 --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-14 22:29+0000\n" "PO-Revision-Date: 2013-07-18 19:35+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:35+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:54+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ro.po b/addons/account/i18n/ro.po index 14fdc86fc0a..c3825673696 100644 --- a/addons/account/i18n/ro.po +++ b/addons/account/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:42+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:52+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:email.template,body_html:account.email_template_edi_invoice diff --git a/addons/account/i18n/ru.po b/addons/account/i18n/ru.po index 06739854344..62bd6ad60e2 100644 --- a/addons/account/i18n/ru.po +++ b/addons/account/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-23 05:52+0000\n" -"X-Generator: Launchpad (build 16737)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:52+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/si.po b/addons/account/i18n/si.po index 3cdfac02ef1..58c641d946e 100644 --- a/addons/account/i18n/si.po +++ b/addons/account/i18n/si.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:42+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:53+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sk.po b/addons/account/i18n/sk.po index cef04ee278b..b661a885471 100644 --- a/addons/account/i18n/sk.po +++ b/addons/account/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:42+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:53+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sl.po b/addons/account/i18n/sl.po index 78995b6c7bd..22a63e2ef1d 100644 --- a/addons/account/i18n/sl.po +++ b/addons/account/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-14 22:29+0000\n" -"PO-Revision-Date: 2013-11-06 14:13+0000\n" +"PO-Revision-Date: 2013-11-20 21:52+0000\n" "Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-07 05:50+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:53+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -1105,7 +1105,7 @@ msgstr "Razširjeni filtri..." #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal msgid "Centralizing Journal" -msgstr "Osrednji dnevnik" +msgstr "Zbir po dnevnikih in kontih" #. module: account #: selection:account.journal,type:0 @@ -1581,7 +1581,7 @@ msgstr "Status računa" #: model:ir.actions.act_window,name:account.action_account_open_closed_fiscalyear #: model:ir.ui.menu,name:account.menu_wizard_account_open_closed_fiscalyear msgid "Cancel Closing Entries" -msgstr "Preklic postavk" +msgstr "Preklic zaključnih postavk" #. module: account #: view:account.bank.statement:0 @@ -1751,7 +1751,7 @@ msgstr "Zaprto" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries msgid "Recurring Entries" -msgstr "Ponavljajoči vnosi" +msgstr "Ponavljajoče temeljnice" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template @@ -3311,7 +3311,7 @@ msgstr "Finačno računovodstvo" #. module: account #: model:ir.ui.menu,name:account.menu_account_report_pl msgid "Profit And Loss" -msgstr "Dobiček/Izguba" +msgstr "Izkaz poslovnega izida" #. module: account #: view:account.fiscal.position:0 @@ -3410,7 +3410,7 @@ msgstr "Seznam davčnih predlog" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "Prodaja/Nabava dneviki" +msgstr "Dnevniki prodaje/nabave" #. module: account #: help:account.account,currency_mode:0 @@ -4407,7 +4407,7 @@ msgstr "Dnevnik mora imeti privzeti debetni in kreditni konto." #: model:ir.actions.act_window,name:account.action_bank_tree #: model:ir.ui.menu,name:account.menu_action_bank_tree msgid "Setup your Bank Accounts" -msgstr "Nastavite bančne račune" +msgstr "Nastavitev bančnih računov" #. module: account #: xsl:account.transfer:0 @@ -4423,7 +4423,7 @@ msgstr "Sporočila in zgodovina sporočil" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "Analitični dnevnik" +msgstr "Dnevnik analitičnega knjigovodstva" #. module: account #: constraint:account.aged.trial.balance:0 @@ -7115,7 +7115,7 @@ msgstr "account.sequence.fiscalyear" #: model:ir.model,name:account.model_account_analytic_journal #: model:ir.ui.menu,name:account.account_analytic_journal_print msgid "Analytic Journal" -msgstr "Analitični dnevnik" +msgstr "Dnevnik analitičnega knjigovodstva" #. module: account #: view:account.entries.report:0 @@ -7316,7 +7316,7 @@ msgstr "Ohranite predznak salda" #: model:ir.actions.report.xml,name:account.account_vat_declaration #: model:ir.ui.menu,name:account.menu_account_vat_declaration msgid "Taxes Report" -msgstr "Poročilo o davkih" +msgstr "DDV-O obrazec" #. module: account #: selection:account.journal.period,state:0 @@ -7462,7 +7462,7 @@ msgstr "Davčno območje" #: model:ir.actions.report.xml,name:account.account_general_ledger_landscape #: model:ir.ui.menu,name:account.menu_general_ledger msgid "General Ledger" -msgstr "Glavna knjiga" +msgstr "Kartica glavne knjige" #. module: account #: model:process.transition,note:account.process_transition_paymentorderbank0 @@ -9527,7 +9527,7 @@ msgstr "Podatki o izdelku" #: view:account.move.line:0 #: model:ir.ui.menu,name:account.next_id_40 msgid "Analytic" -msgstr "Analitika" +msgstr "Analitično knjigovodstvo" #. module: account #: model:process.node,name:account.process_node_invoiceinvoice0 diff --git a/addons/account/i18n/sq.po b/addons/account/i18n/sq.po index 28609db1ea0..e026a91becb 100644 --- a/addons/account/i18n/sq.po +++ b/addons/account/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:38+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:48+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sr.po b/addons/account/i18n/sr.po index 8c7b16cb221..4aed3c7a535 100644 --- a/addons/account/i18n/sr.po +++ b/addons/account/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:42+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:52+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sr@latin.po b/addons/account/i18n/sr@latin.po index 25d68792f4a..e194ce94aa2 100644 --- a/addons/account/i18n/sr@latin.po +++ b/addons/account/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po index 0fef9c466a6..9986dc8919e 100644 --- a/addons/account/i18n/sv.po +++ b/addons/account/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-05 06:00+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:53+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ta.po b/addons/account/i18n/ta.po index c6e3d859e11..3d3c7d306df 100644 --- a/addons/account/i18n/ta.po +++ b/addons/account/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:43+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:53+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/te.po b/addons/account/i18n/te.po index 1ad0059c20a..cac27c6f4fa 100644 --- a/addons/account/i18n/te.po +++ b/addons/account/i18n/te.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:43+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:53+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/th.po b/addons/account/i18n/th.po index 12fd4a88922..ec1c2477236 100644 --- a/addons/account/i18n/th.po +++ b/addons/account/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:43+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:53+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/tlh.po b/addons/account/i18n/tlh.po index a54742bc5d5..2fe788b828c 100644 --- a/addons/account/i18n/tlh.po +++ b/addons/account/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:43+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:53+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po index 9accb6f5090..3767313b7d9 100644 --- a/addons/account/i18n/tr.po +++ b/addons/account/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-13 06:35+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:54+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: tr\n" #. module: account diff --git a/addons/account/i18n/ug.po b/addons/account/i18n/ug.po index b5e38eada63..3403381cc93 100644 --- a/addons/account/i18n/ug.po +++ b/addons/account/i18n/ug.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:43+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:54+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/uk.po b/addons/account/i18n/uk.po index 190b204e7c2..59731829cc3 100644 --- a/addons/account/i18n/uk.po +++ b/addons/account/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:43+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:54+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ur.po b/addons/account/i18n/ur.po index 6e5309d1de3..f44a4d8d137 100644 --- a/addons/account/i18n/ur.po +++ b/addons/account/i18n/ur.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:44+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:54+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/vi.po b/addons/account/i18n/vi.po index 15761820946..f4070ad6e2c 100644 --- a/addons/account/i18n/vi.po +++ b/addons/account/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:44+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:54+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_CN.po b/addons/account/i18n/zh_CN.po index 99d47039ac6..93716052ff7 100644 --- a/addons/account/i18n/zh_CN.po +++ b/addons/account/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 06:30+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:55+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_HK.po b/addons/account/i18n/zh_HK.po index 4a6bc7f526f..216842db9df 100644 --- a/addons/account/i18n/zh_HK.po +++ b/addons/account/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:44+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:54+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_TW.po b/addons/account/i18n/zh_TW.po index 73a45531610..a4c117e9617 100644 --- a/addons/account/i18n/zh_TW.po +++ b/addons/account/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:55+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account_accountant/i18n/ar.po b/addons/account_accountant/i18n/ar.po index ea0234c9498..2a07c9ba38b 100644 --- a/addons/account_accountant/i18n/ar.po +++ b/addons/account_accountant/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/az.po b/addons/account_accountant/i18n/az.po index 4d769c05e1d..58d2a49dbc3 100644 --- a/addons/account_accountant/i18n/az.po +++ b/addons/account_accountant/i18n/az.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bg.po b/addons/account_accountant/i18n/bg.po index 162231ce1f2..9ff9cd966bb 100644 --- a/addons/account_accountant/i18n/bg.po +++ b/addons/account_accountant/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bn.po b/addons/account_accountant/i18n/bn.po index 6786c1ec97c..3622922921d 100644 --- a/addons/account_accountant/i18n/bn.po +++ b/addons/account_accountant/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bs.po b/addons/account_accountant/i18n/bs.po index 8e2a982c230..54cf5227da7 100644 --- a/addons/account_accountant/i18n/bs.po +++ b/addons/account_accountant/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-07 05:03+0000\n" -"X-Generator: Launchpad (build 16721)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ca.po b/addons/account_accountant/i18n/ca.po index 99811a43b46..85945d35fe9 100644 --- a/addons/account_accountant/i18n/ca.po +++ b/addons/account_accountant/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/cs.po b/addons/account_accountant/i18n/cs.po index 3afab52e825..6e6c2e2a778 100644 --- a/addons/account_accountant/i18n/cs.po +++ b/addons/account_accountant/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/da.po b/addons/account_accountant/i18n/da.po index 3884bfbd56d..18f8f7686a5 100644 --- a/addons/account_accountant/i18n/da.po +++ b/addons/account_accountant/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-06 06:07+0000\n" -"X-Generator: Launchpad (build 16760)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/de.po b/addons/account_accountant/i18n/de.po index fb1fb9d5699..c7b4418b1a0 100644 --- a/addons/account_accountant/i18n/de.po +++ b/addons/account_accountant/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/el.po b/addons/account_accountant/i18n/el.po index 5f4b104a22e..e87be6ceceb 100644 --- a/addons/account_accountant/i18n/el.po +++ b/addons/account_accountant/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/en_GB.po b/addons/account_accountant/i18n/en_GB.po index 13c24b79227..0490aae3bb9 100644 --- a/addons/account_accountant/i18n/en_GB.po +++ b/addons/account_accountant/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es.po b/addons/account_accountant/i18n/es.po index b3815ab5474..2e6d7000af8 100644 --- a/addons/account_accountant/i18n/es.po +++ b/addons/account_accountant/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_AR.po b/addons/account_accountant/i18n/es_AR.po index 77d95efb6d6..c9b1e145fdf 100644 --- a/addons/account_accountant/i18n/es_AR.po +++ b/addons/account_accountant/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-08 06:18+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_CO.po b/addons/account_accountant/i18n/es_CO.po index 40b2e893851..5d33a48dda2 100644 --- a/addons/account_accountant/i18n/es_CO.po +++ b/addons/account_accountant/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_CR.po b/addons/account_accountant/i18n/es_CR.po index b7cb2800367..95d42cfb4a3 100644 --- a/addons/account_accountant/i18n/es_CR.po +++ b/addons/account_accountant/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_DO.po b/addons/account_accountant/i18n/es_DO.po index 3dca2ae09cc..d0c0a3ff3ec 100644 --- a/addons/account_accountant/i18n/es_DO.po +++ b/addons/account_accountant/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_EC.po b/addons/account_accountant/i18n/es_EC.po index 615fa526383..11ab5a27012 100644 --- a/addons/account_accountant/i18n/es_EC.po +++ b/addons/account_accountant/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_MX.po b/addons/account_accountant/i18n/es_MX.po index d214e60a84e..162cbb7230b 100644 --- a/addons/account_accountant/i18n/es_MX.po +++ b/addons/account_accountant/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_PY.po b/addons/account_accountant/i18n/es_PY.po index 71817a93965..3346e628b00 100644 --- a/addons/account_accountant/i18n/es_PY.po +++ b/addons/account_accountant/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/et.po b/addons/account_accountant/i18n/et.po index b84537ea03b..62083eb27c5 100644 --- a/addons/account_accountant/i18n/et.po +++ b/addons/account_accountant/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 05:25+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fa.po b/addons/account_accountant/i18n/fa.po index a0604593d41..5e1229f73b0 100644 --- a/addons/account_accountant/i18n/fa.po +++ b/addons/account_accountant/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fi.po b/addons/account_accountant/i18n/fi.po index 6d135186fef..677b861d05a 100644 --- a/addons/account_accountant/i18n/fi.po +++ b/addons/account_accountant/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-01 06:27+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fr.po b/addons/account_accountant/i18n/fr.po index d2a51a893a4..abbd879e50c 100644 --- a/addons/account_accountant/i18n/fr.po +++ b/addons/account_accountant/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/gl.po b/addons/account_accountant/i18n/gl.po index 685bc4ca5cb..167a22a804d 100644 --- a/addons/account_accountant/i18n/gl.po +++ b/addons/account_accountant/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/he.po b/addons/account_accountant/i18n/he.po index 68da3a5733d..7dc4dabdd98 100644 --- a/addons/account_accountant/i18n/he.po +++ b/addons/account_accountant/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hi.po b/addons/account_accountant/i18n/hi.po index 59d26f4469a..881f32382b5 100644 --- a/addons/account_accountant/i18n/hi.po +++ b/addons/account_accountant/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hr.po b/addons/account_accountant/i18n/hr.po index fc7fee74855..c0d70fab116 100644 --- a/addons/account_accountant/i18n/hr.po +++ b/addons/account_accountant/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hu.po b/addons/account_accountant/i18n/hu.po index 948d61cf0c7..08faf11c3c4 100644 --- a/addons/account_accountant/i18n/hu.po +++ b/addons/account_accountant/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/id.po b/addons/account_accountant/i18n/id.po index 8f3c4b4cfb2..7f45dcd09c5 100644 --- a/addons/account_accountant/i18n/id.po +++ b/addons/account_accountant/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/it.po b/addons/account_accountant/i18n/it.po index 4d36940e35e..1570770cd69 100644 --- a/addons/account_accountant/i18n/it.po +++ b/addons/account_accountant/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ja.po b/addons/account_accountant/i18n/ja.po index 30b59ce6a09..9f0a7562ddf 100644 --- a/addons/account_accountant/i18n/ja.po +++ b/addons/account_accountant/i18n/ja.po @@ -14,10 +14,10 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "会計メニューを開く" diff --git a/addons/account_accountant/i18n/ko.po b/addons/account_accountant/i18n/ko.po index 357a504a1c9..8c55062bce5 100644 --- a/addons/account_accountant/i18n/ko.po +++ b/addons/account_accountant/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lo.po b/addons/account_accountant/i18n/lo.po index 049b4e72f35..7593e3aa500 100644 --- a/addons/account_accountant/i18n/lo.po +++ b/addons/account_accountant/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lt.po b/addons/account_accountant/i18n/lt.po index 41520c960e9..c13b95bb0ee 100644 --- a/addons/account_accountant/i18n/lt.po +++ b/addons/account_accountant/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lv.po b/addons/account_accountant/i18n/lv.po index f36dfa0370c..7fb6572c565 100644 --- a/addons/account_accountant/i18n/lv.po +++ b/addons/account_accountant/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/mk.po b/addons/account_accountant/i18n/mk.po index 948f5ae0f28..cab62617128 100644 --- a/addons/account_accountant/i18n/mk.po +++ b/addons/account_accountant/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/mn.po b/addons/account_accountant/i18n/mn.po index b9c09f282af..41cad9d0b2d 100644 --- a/addons/account_accountant/i18n/mn.po +++ b/addons/account_accountant/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nb.po b/addons/account_accountant/i18n/nb.po index 760af8ae5c8..29ddf065970 100644 --- a/addons/account_accountant/i18n/nb.po +++ b/addons/account_accountant/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nl.po b/addons/account_accountant/i18n/nl.po index dd668db1372..c04f5a45316 100644 --- a/addons/account_accountant/i18n/nl.po +++ b/addons/account_accountant/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nl_BE.po b/addons/account_accountant/i18n/nl_BE.po index 0afea7e8465..aea2fd7c85c 100644 --- a/addons/account_accountant/i18n/nl_BE.po +++ b/addons/account_accountant/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/oc.po b/addons/account_accountant/i18n/oc.po index d0a4744a183..8ae56a13469 100644 --- a/addons/account_accountant/i18n/oc.po +++ b/addons/account_accountant/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pl.po b/addons/account_accountant/i18n/pl.po index 647c7284915..68972c1dc62 100644 --- a/addons/account_accountant/i18n/pl.po +++ b/addons/account_accountant/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pt.po b/addons/account_accountant/i18n/pt.po index 75b008263bd..f2d198a51c0 100644 --- a/addons/account_accountant/i18n/pt.po +++ b/addons/account_accountant/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pt_BR.po b/addons/account_accountant/i18n/pt_BR.po index bf5851c2f32..5e1f1f06e90 100644 --- a/addons/account_accountant/i18n/pt_BR.po +++ b/addons/account_accountant/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-19 19:16+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-20 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ro.po b/addons/account_accountant/i18n/ro.po index 575a818cdcd..d3b84aa283a 100644 --- a/addons/account_accountant/i18n/ro.po +++ b/addons/account_accountant/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-07 16:18+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ru.po b/addons/account_accountant/i18n/ru.po index a4c6ef10cda..292cadab1fa 100644 --- a/addons/account_accountant/i18n/ru.po +++ b/addons/account_accountant/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sk.po b/addons/account_accountant/i18n/sk.po index c1a1d11a828..b4ed99f2b8c 100644 --- a/addons/account_accountant/i18n/sk.po +++ b/addons/account_accountant/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sl.po b/addons/account_accountant/i18n/sl.po index 0e4b75df772..d51ab59ad6c 100644 --- a/addons/account_accountant/i18n/sl.po +++ b/addons/account_accountant/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sq.po b/addons/account_accountant/i18n/sq.po index 645d0102735..eee0eb8e2a7 100644 --- a/addons/account_accountant/i18n/sq.po +++ b/addons/account_accountant/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sr.po b/addons/account_accountant/i18n/sr.po index 60141f4b3a9..14cf70798ea 100644 --- a/addons/account_accountant/i18n/sr.po +++ b/addons/account_accountant/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sr@latin.po b/addons/account_accountant/i18n/sr@latin.po index 14f4a1c4c68..96630e1c4f2 100644 --- a/addons/account_accountant/i18n/sr@latin.po +++ b/addons/account_accountant/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sv.po b/addons/account_accountant/i18n/sv.po index af71c4d1f46..b2e0d339c46 100644 --- a/addons/account_accountant/i18n/sv.po +++ b/addons/account_accountant/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:45+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ta.po b/addons/account_accountant/i18n/ta.po index f4459ba1487..8e10eed6986 100644 --- a/addons/account_accountant/i18n/ta.po +++ b/addons/account_accountant/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/th.po b/addons/account_accountant/i18n/th.po index 239b0ed257c..ca9bfada9a5 100644 --- a/addons/account_accountant/i18n/th.po +++ b/addons/account_accountant/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/tr.po b/addons/account_accountant/i18n/tr.po index 4888b942344..ee826aa4451 100644 --- a/addons/account_accountant/i18n/tr.po +++ b/addons/account_accountant/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/uk.po b/addons/account_accountant/i18n/uk.po index 55c3dfc88e6..93bc9a137ea 100644 --- a/addons/account_accountant/i18n/uk.po +++ b/addons/account_accountant/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/vi.po b/addons/account_accountant/i18n/vi.po index 85e6aec08fe..2f93d6041e1 100644 --- a/addons/account_accountant/i18n/vi.po +++ b/addons/account_accountant/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/zh_CN.po b/addons/account_accountant/i18n/zh_CN.po index 34f854ffb88..b9486d40cc1 100644 --- a/addons/account_accountant/i18n/zh_CN.po +++ b/addons/account_accountant/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-08-09 15:04+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-10 05:37+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/zh_TW.po b/addons/account_accountant/i18n/zh_TW.po index 5cf48c8bfe5..73de1acae1c 100644 --- a/addons/account_accountant/i18n/zh_TW.po +++ b/addons/account_accountant/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_analytic_analysis/i18n/ar.po b/addons/account_analytic_analysis/i18n/ar.po index d73dedd1abe..71a21249b7d 100644 --- a/addons/account_analytic_analysis/i18n/ar.po +++ b/addons/account_analytic_analysis/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/bg.po b/addons/account_analytic_analysis/i18n/bg.po index 2a6322a7da3..26b315f29e1 100644 --- a/addons/account_analytic_analysis/i18n/bg.po +++ b/addons/account_analytic_analysis/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/bs.po b/addons/account_analytic_analysis/i18n/bs.po index 7f6547b99a4..c28ac32c6ce 100644 --- a/addons/account_analytic_analysis/i18n/bs.po +++ b/addons/account_analytic_analysis/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ca.po b/addons/account_analytic_analysis/i18n/ca.po index 6e41c10a870..52409c36a1a 100644 --- a/addons/account_analytic_analysis/i18n/ca.po +++ b/addons/account_analytic_analysis/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/cs.po b/addons/account_analytic_analysis/i18n/cs.po index 7413b531277..299c6aceb9d 100644 --- a/addons/account_analytic_analysis/i18n/cs.po +++ b/addons/account_analytic_analysis/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/da.po b/addons/account_analytic_analysis/i18n/da.po index 83bc6cdecd7..bcc4ae2016a 100644 --- a/addons/account_analytic_analysis/i18n/da.po +++ b/addons/account_analytic_analysis/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:50+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/de.po b/addons/account_analytic_analysis/i18n/de.po index 6b61421fd0d..83813222ffc 100644 --- a/addons/account_analytic_analysis/i18n/de.po +++ b/addons/account_analytic_analysis/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-09 05:48+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/el.po b/addons/account_analytic_analysis/i18n/el.po index aa611707925..f812b05c333 100644 --- a/addons/account_analytic_analysis/i18n/el.po +++ b/addons/account_analytic_analysis/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/en_GB.po b/addons/account_analytic_analysis/i18n/en_GB.po index 26bb2191fae..47aa85fa2e3 100644 --- a/addons/account_analytic_analysis/i18n/en_GB.po +++ b/addons/account_analytic_analysis/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es.po b/addons/account_analytic_analysis/i18n/es.po index b4144d96eac..b2f02bda748 100644 --- a/addons/account_analytic_analysis/i18n/es.po +++ b/addons/account_analytic_analysis/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_AR.po b/addons/account_analytic_analysis/i18n/es_AR.po index f61a79222d5..d47b5bc5433 100644 --- a/addons/account_analytic_analysis/i18n/es_AR.po +++ b/addons/account_analytic_analysis/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_CR.po b/addons/account_analytic_analysis/i18n/es_CR.po index cc879a243c9..18ec8e29705 100644 --- a/addons/account_analytic_analysis/i18n/es_CR.po +++ b/addons/account_analytic_analysis/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_EC.po b/addons/account_analytic_analysis/i18n/es_EC.po index 3020564b5a3..26bb39d4272 100644 --- a/addons/account_analytic_analysis/i18n/es_EC.po +++ b/addons/account_analytic_analysis/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_MX.po b/addons/account_analytic_analysis/i18n/es_MX.po index fc596501be3..24ef17fb4ac 100644 --- a/addons/account_analytic_analysis/i18n/es_MX.po +++ b/addons/account_analytic_analysis/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_PY.po b/addons/account_analytic_analysis/i18n/es_PY.po index cdc8d4aa9e6..96d6c09ef9b 100644 --- a/addons/account_analytic_analysis/i18n/es_PY.po +++ b/addons/account_analytic_analysis/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/et.po b/addons/account_analytic_analysis/i18n/et.po index 43d8ac9ac54..5ead8a7c62c 100644 --- a/addons/account_analytic_analysis/i18n/et.po +++ b/addons/account_analytic_analysis/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fa.po b/addons/account_analytic_analysis/i18n/fa.po index d8275679fd3..2a60e4cb14f 100644 --- a/addons/account_analytic_analysis/i18n/fa.po +++ b/addons/account_analytic_analysis/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fi.po b/addons/account_analytic_analysis/i18n/fi.po index bcf64e10097..c1d2cf6e124 100644 --- a/addons/account_analytic_analysis/i18n/fi.po +++ b/addons/account_analytic_analysis/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fr.po b/addons/account_analytic_analysis/i18n/fr.po index fe82f0cc688..f81aa40184f 100644 --- a/addons/account_analytic_analysis/i18n/fr.po +++ b/addons/account_analytic_analysis/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/gl.po b/addons/account_analytic_analysis/i18n/gl.po index a807326fb58..da689f0f736 100644 --- a/addons/account_analytic_analysis/i18n/gl.po +++ b/addons/account_analytic_analysis/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/gu.po b/addons/account_analytic_analysis/i18n/gu.po index a5c3b2c817b..a1febd840ee 100644 --- a/addons/account_analytic_analysis/i18n/gu.po +++ b/addons/account_analytic_analysis/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/hr.po b/addons/account_analytic_analysis/i18n/hr.po index a076d99990a..2b03a2c0d12 100644 --- a/addons/account_analytic_analysis/i18n/hr.po +++ b/addons/account_analytic_analysis/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:24+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/hu.po b/addons/account_analytic_analysis/i18n/hu.po index 21840e8a6fc..6ac2aed4763 100644 --- a/addons/account_analytic_analysis/i18n/hu.po +++ b/addons/account_analytic_analysis/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:37+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/id.po b/addons/account_analytic_analysis/i18n/id.po index 32f42ab8296..e3cd28b06e7 100644 --- a/addons/account_analytic_analysis/i18n/id.po +++ b/addons/account_analytic_analysis/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/it.po b/addons/account_analytic_analysis/i18n/it.po index c289491a7d8..e421dd9a236 100644 --- a/addons/account_analytic_analysis/i18n/it.po +++ b/addons/account_analytic_analysis/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ja.po b/addons/account_analytic_analysis/i18n/ja.po index 999abe1ffb4..ceedf136691 100644 --- a/addons/account_analytic_analysis/i18n/ja.po +++ b/addons/account_analytic_analysis/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-29 05:14+0000\n" -"X-Generator: Launchpad (build 16818)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ko.po b/addons/account_analytic_analysis/i18n/ko.po index cae8107bd51..dc1f32bd5cf 100644 --- a/addons/account_analytic_analysis/i18n/ko.po +++ b/addons/account_analytic_analysis/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/lt.po b/addons/account_analytic_analysis/i18n/lt.po index 626d061474f..c3aa29aa590 100644 --- a/addons/account_analytic_analysis/i18n/lt.po +++ b/addons/account_analytic_analysis/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/lv.po b/addons/account_analytic_analysis/i18n/lv.po index 67e2d151975..9642a6fde93 100644 --- a/addons/account_analytic_analysis/i18n/lv.po +++ b/addons/account_analytic_analysis/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/mk.po b/addons/account_analytic_analysis/i18n/mk.po index bee1dcb4190..dfbc03fa43b 100644 --- a/addons/account_analytic_analysis/i18n/mk.po +++ b/addons/account_analytic_analysis/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/mn.po b/addons/account_analytic_analysis/i18n/mn.po index eb05945cc77..7ffe0123f8b 100644 --- a/addons/account_analytic_analysis/i18n/mn.po +++ b/addons/account_analytic_analysis/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nb.po b/addons/account_analytic_analysis/i18n/nb.po index 7d15d48845f..26fdb0e989c 100644 --- a/addons/account_analytic_analysis/i18n/nb.po +++ b/addons/account_analytic_analysis/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nl.po b/addons/account_analytic_analysis/i18n/nl.po index a5f3cb02312..fc60d0c6239 100644 --- a/addons/account_analytic_analysis/i18n/nl.po +++ b/addons/account_analytic_analysis/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-24 06:37+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nl_BE.po b/addons/account_analytic_analysis/i18n/nl_BE.po index ec93074c3bc..13d16290e46 100644 --- a/addons/account_analytic_analysis/i18n/nl_BE.po +++ b/addons/account_analytic_analysis/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/oc.po b/addons/account_analytic_analysis/i18n/oc.po index 4f493be8dc6..7267abe8239 100644 --- a/addons/account_analytic_analysis/i18n/oc.po +++ b/addons/account_analytic_analysis/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pl.po b/addons/account_analytic_analysis/i18n/pl.po index 621c46b5e02..f1c2e0adbbc 100644 --- a/addons/account_analytic_analysis/i18n/pl.po +++ b/addons/account_analytic_analysis/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/pt.po b/addons/account_analytic_analysis/i18n/pt.po index 952a843dbe3..308d8f9d904 100644 --- a/addons/account_analytic_analysis/i18n/pt.po +++ b/addons/account_analytic_analysis/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pt_BR.po b/addons/account_analytic_analysis/i18n/pt_BR.po index 065d82ff917..d410faaedfe 100644 --- a/addons/account_analytic_analysis/i18n/pt_BR.po +++ b/addons/account_analytic_analysis/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 19:35+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:35+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ro.po b/addons/account_analytic_analysis/i18n/ro.po index ad1aef5de94..8acbf52dd17 100644 --- a/addons/account_analytic_analysis/i18n/ro.po +++ b/addons/account_analytic_analysis/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:08+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ru.po b/addons/account_analytic_analysis/i18n/ru.po index 6c4e1207674..2125f186750 100644 --- a/addons/account_analytic_analysis/i18n/ru.po +++ b/addons/account_analytic_analysis/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-06 05:04+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sl.po b/addons/account_analytic_analysis/i18n/sl.po index 932d4dc57b0..ea524c36047 100644 --- a/addons/account_analytic_analysis/i18n/sl.po +++ b/addons/account_analytic_analysis/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sq.po b/addons/account_analytic_analysis/i18n/sq.po index e1bafd9cc82..fbfa580639c 100644 --- a/addons/account_analytic_analysis/i18n/sq.po +++ b/addons/account_analytic_analysis/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sr.po b/addons/account_analytic_analysis/i18n/sr.po index 7a6f4fb8ba5..401a84a3f61 100644 --- a/addons/account_analytic_analysis/i18n/sr.po +++ b/addons/account_analytic_analysis/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sr@latin.po b/addons/account_analytic_analysis/i18n/sr@latin.po index f64e3752e12..a25906aa356 100644 --- a/addons/account_analytic_analysis/i18n/sr@latin.po +++ b/addons/account_analytic_analysis/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sv.po b/addons/account_analytic_analysis/i18n/sv.po index b0803dcb56b..612951147d3 100644 --- a/addons/account_analytic_analysis/i18n/sv.po +++ b/addons/account_analytic_analysis/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/tlh.po b/addons/account_analytic_analysis/i18n/tlh.po index f3c08d53e1e..2ffb0bb822f 100644 --- a/addons/account_analytic_analysis/i18n/tlh.po +++ b/addons/account_analytic_analysis/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/tr.po b/addons/account_analytic_analysis/i18n/tr.po index 44ec72f7a92..e18b9bb8a33 100644 --- a/addons/account_analytic_analysis/i18n/tr.po +++ b/addons/account_analytic_analysis/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: tr\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/uk.po b/addons/account_analytic_analysis/i18n/uk.po index 072c27890bd..bd614922ed7 100644 --- a/addons/account_analytic_analysis/i18n/uk.po +++ b/addons/account_analytic_analysis/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/vi.po b/addons/account_analytic_analysis/i18n/vi.po index 19718c3f5fa..014e495a8a8 100644 --- a/addons/account_analytic_analysis/i18n/vi.po +++ b/addons/account_analytic_analysis/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/zh_CN.po b/addons/account_analytic_analysis/i18n/zh_CN.po index 0f60a7aadb0..18d5f3cb378 100644 --- a/addons/account_analytic_analysis/i18n/zh_CN.po +++ b/addons/account_analytic_analysis/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 06:30+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -260,7 +260,7 @@ msgstr "尚未开票,创建" #. module: account_analytic_analysis #: model:res.groups,name:account_analytic_analysis.group_template_required msgid "Mandatory use of templates in contracts" -msgstr "" +msgstr "强制采用模板制订合同" #. module: account_analytic_analysis #: help:account.analytic.account,last_worked_invoiced_date:0 @@ -505,6 +505,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击创建合同模板。\n" +"

\n" +" 模板用于预先规范合同/项目内容,从而销售人员可以快速配置合同条款及条件。\n" +"

\n" +" " #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user @@ -521,7 +527,7 @@ msgstr "合同" msgid "" "Allows you to set the template field as required when creating an analytic " "account or a contract." -msgstr "" +msgstr "创建成本管理分析或合同时,允许按照需要设置模板域。" #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_invoiced:0 @@ -555,6 +561,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击创建新合同。\n" +"

\n" +" 用合同跟踪任务,事务,时间计划或发票的完结,费用及/或销售订单。OpenERP " +"将按销售人员自动提醒管理合同续签。\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,toinvoice_total:0 @@ -599,7 +612,7 @@ msgstr "最近开票日期" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Units Remaining" -msgstr "" +msgstr "单位保留" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_hr_tree_invoiced_all @@ -614,6 +627,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 此处显示可以根据合同向顾客发单的时间计划及采购项目。若想记录创建新的发单活动,你应该使用时间计划菜单。\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 @@ -636,7 +653,7 @@ msgid "" "Expectation of remaining income for this contract. Computed as the sum of " "remaining subtotals which, in turn, are computed as the maximum between " "'(Estimation - Invoiced)' and 'To Invoice' amounts" -msgstr "" +msgstr "合同预期剩余收入。按照剩余总值,即“预记账”和“应记账”两项的较大者。" #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue @@ -647,7 +664,7 @@ msgstr "要续签的合同" #. module: account_analytic_analysis #: help:account.analytic.account,toinvoice_total:0 msgid " Sum of everything that could be invoiced for this contract." -msgstr "" +msgstr " 该合同可以记账项目的汇总。" #. module: account_analytic_analysis #: field:account.analytic.account,theorical_margin:0 @@ -667,7 +684,7 @@ msgstr "计算公式为:发票金额 - 总成本" #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_est:0 msgid "Estimation of Hours to Invoice" -msgstr "" +msgstr "预期记账时数" #. module: account_analytic_analysis #: field:account.analytic.account,fix_price_invoices:0 @@ -691,12 +708,12 @@ msgstr "" #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "销售.配置.设置" #. module: account_analytic_analysis #: field:sale.config.settings,group_template_required:0 msgid "Mandatory use of templates." -msgstr "" +msgstr "强制采用模板。" #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.template_of_contract_action @@ -785,3 +802,6 @@ msgstr "合计" #~ " 合同使用价目表价格\n" #~ " 产品设置应用到每个员工\n" #~ " 指定客户发票价格率。" + +#~ msgid "Units Done" +#~ msgstr "已完成单元。" diff --git a/addons/account_analytic_analysis/i18n/zh_TW.po b/addons/account_analytic_analysis/i18n/zh_TW.po index 95e0f4134d7..4086d84cec9 100644 --- a/addons/account_analytic_analysis/i18n/zh_TW.po +++ b/addons/account_analytic_analysis/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_default/i18n/ar.po b/addons/account_analytic_default/i18n/ar.po index 95216bc212e..1a3f00285d0 100644 --- a/addons/account_analytic_default/i18n/ar.po +++ b/addons/account_analytic_default/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/bg.po b/addons/account_analytic_default/i18n/bg.po index ae21f5b5b45..2fe25d74f2b 100644 --- a/addons/account_analytic_default/i18n/bg.po +++ b/addons/account_analytic_default/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/bs.po b/addons/account_analytic_default/i18n/bs.po index 99023ca4875..313173800d1 100644 --- a/addons/account_analytic_default/i18n/bs.po +++ b/addons/account_analytic_default/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-29 05:14+0000\n" -"X-Generator: Launchpad (build 16818)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ca.po b/addons/account_analytic_default/i18n/ca.po index c9f89e19eca..28b69c4d54b 100644 --- a/addons/account_analytic_default/i18n/ca.po +++ b/addons/account_analytic_default/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/cs.po b/addons/account_analytic_default/i18n/cs.po index 91fe675af1c..847cbd880c8 100644 --- a/addons/account_analytic_default/i18n/cs.po +++ b/addons/account_analytic_default/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/da.po b/addons/account_analytic_default/i18n/da.po index d8a714c22c0..996f60ecaed 100644 --- a/addons/account_analytic_default/i18n/da.po +++ b/addons/account_analytic_default/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/de.po b/addons/account_analytic_default/i18n/de.po index 8eff4bd0ca0..0084254cef5 100644 --- a/addons/account_analytic_default/i18n/de.po +++ b/addons/account_analytic_default/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/el.po b/addons/account_analytic_default/i18n/el.po index bc20714ffea..5d5ae243219 100644 --- a/addons/account_analytic_default/i18n/el.po +++ b/addons/account_analytic_default/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/en_GB.po b/addons/account_analytic_default/i18n/en_GB.po index 21d458882e5..1da847f2fc4 100644 --- a/addons/account_analytic_default/i18n/en_GB.po +++ b/addons/account_analytic_default/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es.po b/addons/account_analytic_default/i18n/es.po index e5bb58f90e5..9a93abdf78a 100644 --- a/addons/account_analytic_default/i18n/es.po +++ b/addons/account_analytic_default/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_AR.po b/addons/account_analytic_default/i18n/es_AR.po index 05f79344561..383ef96f4b4 100644 --- a/addons/account_analytic_default/i18n/es_AR.po +++ b/addons/account_analytic_default/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_CR.po b/addons/account_analytic_default/i18n/es_CR.po index 4746f2417ed..a1a5457d02a 100644 --- a/addons/account_analytic_default/i18n/es_CR.po +++ b/addons/account_analytic_default/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_EC.po b/addons/account_analytic_default/i18n/es_EC.po index 156a1f146b4..19885463b4f 100644 --- a/addons/account_analytic_default/i18n/es_EC.po +++ b/addons/account_analytic_default/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_MX.po b/addons/account_analytic_default/i18n/es_MX.po index 11eafcad8e3..95b879333fc 100644 --- a/addons/account_analytic_default/i18n/es_MX.po +++ b/addons/account_analytic_default/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_PY.po b/addons/account_analytic_default/i18n/es_PY.po index 4a870758265..42e1d6df1f1 100644 --- a/addons/account_analytic_default/i18n/es_PY.po +++ b/addons/account_analytic_default/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/et.po b/addons/account_analytic_default/i18n/et.po index 6202dd5905e..318875fec9f 100644 --- a/addons/account_analytic_default/i18n/et.po +++ b/addons/account_analytic_default/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fa.po b/addons/account_analytic_default/i18n/fa.po index 77195fb043c..9d3fba1eed6 100644 --- a/addons/account_analytic_default/i18n/fa.po +++ b/addons/account_analytic_default/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fi.po b/addons/account_analytic_default/i18n/fi.po index 5e176f12077..fce0f5c1a03 100644 --- a/addons/account_analytic_default/i18n/fi.po +++ b/addons/account_analytic_default/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fr.po b/addons/account_analytic_default/i18n/fr.po index b1d2667244d..543c9dbf8ef 100644 --- a/addons/account_analytic_default/i18n/fr.po +++ b/addons/account_analytic_default/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/gl.po b/addons/account_analytic_default/i18n/gl.po index de8e5704ae8..e37145b77c3 100644 --- a/addons/account_analytic_default/i18n/gl.po +++ b/addons/account_analytic_default/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/gu.po b/addons/account_analytic_default/i18n/gu.po index 88d48b9544e..5f71963412e 100644 --- a/addons/account_analytic_default/i18n/gu.po +++ b/addons/account_analytic_default/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/hr.po b/addons/account_analytic_default/i18n/hr.po index 376af7a888a..8c632e8d9e2 100644 --- a/addons/account_analytic_default/i18n/hr.po +++ b/addons/account_analytic_default/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-17 05:59+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/hu.po b/addons/account_analytic_default/i18n/hu.po index 088e9223c4a..30897f329a3 100644 --- a/addons/account_analytic_default/i18n/hu.po +++ b/addons/account_analytic_default/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/id.po b/addons/account_analytic_default/i18n/id.po index 3a5e283993e..daf2beff08d 100644 --- a/addons/account_analytic_default/i18n/id.po +++ b/addons/account_analytic_default/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/it.po b/addons/account_analytic_default/i18n/it.po index d5b5f03980f..b3caf954726 100644 --- a/addons/account_analytic_default/i18n/it.po +++ b/addons/account_analytic_default/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ja.po b/addons/account_analytic_default/i18n/ja.po index a6c994b3bb6..2e64f2bf0b4 100644 --- a/addons/account_analytic_default/i18n/ja.po +++ b/addons/account_analytic_default/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ko.po b/addons/account_analytic_default/i18n/ko.po index 3cb6c9d4550..647efb923ad 100644 --- a/addons/account_analytic_default/i18n/ko.po +++ b/addons/account_analytic_default/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/lt.po b/addons/account_analytic_default/i18n/lt.po index de0193b1975..06d16d6f60e 100644 --- a/addons/account_analytic_default/i18n/lt.po +++ b/addons/account_analytic_default/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/lv.po b/addons/account_analytic_default/i18n/lv.po index b32826f13ce..f9ce2026211 100644 --- a/addons/account_analytic_default/i18n/lv.po +++ b/addons/account_analytic_default/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/mk.po b/addons/account_analytic_default/i18n/mk.po index af511c68851..a1e2a9e845c 100644 --- a/addons/account_analytic_default/i18n/mk.po +++ b/addons/account_analytic_default/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/mn.po b/addons/account_analytic_default/i18n/mn.po index 0f7dcf0c55c..d43f1e1484e 100644 --- a/addons/account_analytic_default/i18n/mn.po +++ b/addons/account_analytic_default/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nb.po b/addons/account_analytic_default/i18n/nb.po index 9f6b00d4171..7fc49a97eb6 100644 --- a/addons/account_analytic_default/i18n/nb.po +++ b/addons/account_analytic_default/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nl.po b/addons/account_analytic_default/i18n/nl.po index 6e02f173933..ab6c7e80583 100644 --- a/addons/account_analytic_default/i18n/nl.po +++ b/addons/account_analytic_default/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-08-01 11:00+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-02 05:58+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nl_BE.po b/addons/account_analytic_default/i18n/nl_BE.po index 067a90258da..a12fa3799ed 100644 --- a/addons/account_analytic_default/i18n/nl_BE.po +++ b/addons/account_analytic_default/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/oc.po b/addons/account_analytic_default/i18n/oc.po index 6d57ac90811..8bda8aae412 100644 --- a/addons/account_analytic_default/i18n/oc.po +++ b/addons/account_analytic_default/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pl.po b/addons/account_analytic_default/i18n/pl.po index 97fd5b8705f..aebfbece53c 100644 --- a/addons/account_analytic_default/i18n/pl.po +++ b/addons/account_analytic_default/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/pt.po b/addons/account_analytic_default/i18n/pt.po index 5e01e36dd6f..3bf186e395a 100644 --- a/addons/account_analytic_default/i18n/pt.po +++ b/addons/account_analytic_default/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pt_BR.po b/addons/account_analytic_default/i18n/pt_BR.po index 5e68a726328..7e3e7679f35 100644 --- a/addons/account_analytic_default/i18n/pt_BR.po +++ b/addons/account_analytic_default/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ro.po b/addons/account_analytic_default/i18n/ro.po index 6eea113c6f5..1a33df5dea2 100644 --- a/addons/account_analytic_default/i18n/ro.po +++ b/addons/account_analytic_default/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-07 17:34+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ru.po b/addons/account_analytic_default/i18n/ru.po index 4f15b19accf..e8271f70b57 100644 --- a/addons/account_analytic_default/i18n/ru.po +++ b/addons/account_analytic_default/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sk.po b/addons/account_analytic_default/i18n/sk.po index f51ba505528..670d7e1ca44 100644 --- a/addons/account_analytic_default/i18n/sk.po +++ b/addons/account_analytic_default/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sl.po b/addons/account_analytic_default/i18n/sl.po index 4befeedc298..1aff3747dbc 100644 --- a/addons/account_analytic_default/i18n/sl.po +++ b/addons/account_analytic_default/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sq.po b/addons/account_analytic_default/i18n/sq.po index 2a2742d2cde..1d6839ef821 100644 --- a/addons/account_analytic_default/i18n/sq.po +++ b/addons/account_analytic_default/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:56+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sr.po b/addons/account_analytic_default/i18n/sr.po index ea0cc96820c..271e65455d3 100644 --- a/addons/account_analytic_default/i18n/sr.po +++ b/addons/account_analytic_default/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sr@latin.po b/addons/account_analytic_default/i18n/sr@latin.po index df4272cc746..5dc4f54a0b9 100644 --- a/addons/account_analytic_default/i18n/sr@latin.po +++ b/addons/account_analytic_default/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sv.po b/addons/account_analytic_default/i18n/sv.po index 99d88ba42a9..8af59455628 100644 --- a/addons/account_analytic_default/i18n/sv.po +++ b/addons/account_analytic_default/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/tlh.po b/addons/account_analytic_default/i18n/tlh.po index c22a6de22ae..6380bdf7afc 100644 --- a/addons/account_analytic_default/i18n/tlh.po +++ b/addons/account_analytic_default/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/tr.po b/addons/account_analytic_default/i18n/tr.po index 99bdaa93b97..c6ae1da9bac 100644 --- a/addons/account_analytic_default/i18n/tr.po +++ b/addons/account_analytic_default/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/uk.po b/addons/account_analytic_default/i18n/uk.po index 9555460d059..6b3cecf6847 100644 --- a/addons/account_analytic_default/i18n/uk.po +++ b/addons/account_analytic_default/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/vi.po b/addons/account_analytic_default/i18n/vi.po index 7f4294659e3..2f59c484887 100644 --- a/addons/account_analytic_default/i18n/vi.po +++ b/addons/account_analytic_default/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/zh_CN.po b/addons/account_analytic_default/i18n/zh_CN.po index a4819a33a5e..7058825290a 100644 --- a/addons/account_analytic_default/i18n/zh_CN.po +++ b/addons/account_analytic_default/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-03 14:32+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -40,7 +40,7 @@ msgid "" "Select a product which will use analytic account specified in analytic " "default (e.g. create new customer invoice or Sales order if we select this " "product, it will automatically take this as an analytic account)" -msgstr "" +msgstr "选择一个产品用于默认分析指定的成本管理分析(例如:根据所选产品创建新客户单据或销售订单,系统将自动照此进行成本管理分析)" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking @@ -64,7 +64,7 @@ msgid "" "Select a partner which will use analytic account specified in analytic " "default (e.g. create new customer invoice or Sales order if we select this " "partner, it will automatically take this as an analytic account)" -msgstr "" +msgstr "选择一个伙伴用于默认分析指定的成本管理分析(例如:根据所选伙伴创建新客户单据或销售订单,系统将自动照此进行成本管理分析)" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -117,7 +117,7 @@ msgid "" "Select a company which will use analytic account specified in analytic " "default (e.g. create new customer invoice or Sales order if we select this " "company, it will automatically take this as an analytic account)" -msgstr "" +msgstr "选择一个公司用于默认分析指定的成本管理分析(例如:根据所选公司创建新客户单据或销售订单,系统将自动照此进行成本管理分析)" #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_default/i18n/zh_TW.po b/addons/account_analytic_default/i18n/zh_TW.po index bcfdade959c..3a95c32b129 100644 --- a/addons/account_analytic_default/i18n/zh_TW.po +++ b/addons/account_analytic_default/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_plans/i18n/ar.po b/addons/account_analytic_plans/i18n/ar.po index c3dea03578e..be9a3a7dac1 100644 --- a/addons/account_analytic_plans/i18n/ar.po +++ b/addons/account_analytic_plans/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/bg.po b/addons/account_analytic_plans/i18n/bg.po index adc8c5310f5..c2b0b67a830 100644 --- a/addons/account_analytic_plans/i18n/bg.po +++ b/addons/account_analytic_plans/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/bs.po b/addons/account_analytic_plans/i18n/bs.po index 628bc521b5c..d06b2ad4d66 100644 --- a/addons/account_analytic_plans/i18n/bs.po +++ b/addons/account_analytic_plans/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-29 05:14+0000\n" -"X-Generator: Launchpad (build 16818)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ca.po b/addons/account_analytic_plans/i18n/ca.po index caff5c75aaa..68d607d5758 100644 --- a/addons/account_analytic_plans/i18n/ca.po +++ b/addons/account_analytic_plans/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/cs.po b/addons/account_analytic_plans/i18n/cs.po index f0375300345..d51e6b79087 100644 --- a/addons/account_analytic_plans/i18n/cs.po +++ b/addons/account_analytic_plans/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/da.po b/addons/account_analytic_plans/i18n/da.po index 03eb5b7510c..142ed53148d 100644 --- a/addons/account_analytic_plans/i18n/da.po +++ b/addons/account_analytic_plans/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/de.po b/addons/account_analytic_plans/i18n/de.po index b088fa167f0..fe9a559d940 100644 --- a/addons/account_analytic_plans/i18n/de.po +++ b/addons/account_analytic_plans/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/el.po b/addons/account_analytic_plans/i18n/el.po index e1eab0693d5..3cb827686bc 100644 --- a/addons/account_analytic_plans/i18n/el.po +++ b/addons/account_analytic_plans/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/en_GB.po b/addons/account_analytic_plans/i18n/en_GB.po index b5d5237ae14..4844f9d1fe0 100644 --- a/addons/account_analytic_plans/i18n/en_GB.po +++ b/addons/account_analytic_plans/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es.po b/addons/account_analytic_plans/i18n/es.po index 3d231d78270..dae5c757f04 100644 --- a/addons/account_analytic_plans/i18n/es.po +++ b/addons/account_analytic_plans/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_AR.po b/addons/account_analytic_plans/i18n/es_AR.po index 043fe97a407..7fe25fee77b 100644 --- a/addons/account_analytic_plans/i18n/es_AR.po +++ b/addons/account_analytic_plans/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_CR.po b/addons/account_analytic_plans/i18n/es_CR.po index 09660ea8efa..0c6372c0c32 100644 --- a/addons/account_analytic_plans/i18n/es_CR.po +++ b/addons/account_analytic_plans/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_EC.po b/addons/account_analytic_plans/i18n/es_EC.po index 8664516b0e8..8e6e00fe2ca 100644 --- a/addons/account_analytic_plans/i18n/es_EC.po +++ b/addons/account_analytic_plans/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_MX.po b/addons/account_analytic_plans/i18n/es_MX.po index 080aaaf4c82..601074c1308 100644 --- a/addons/account_analytic_plans/i18n/es_MX.po +++ b/addons/account_analytic_plans/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_PY.po b/addons/account_analytic_plans/i18n/es_PY.po index e0deebabafe..cd8ca1363d2 100644 --- a/addons/account_analytic_plans/i18n/es_PY.po +++ b/addons/account_analytic_plans/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/et.po b/addons/account_analytic_plans/i18n/et.po index 02ca1f39dd1..b96eabbdde5 100644 --- a/addons/account_analytic_plans/i18n/et.po +++ b/addons/account_analytic_plans/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fa.po b/addons/account_analytic_plans/i18n/fa.po index abb8240dfd0..aafdb3bdd39 100644 --- a/addons/account_analytic_plans/i18n/fa.po +++ b/addons/account_analytic_plans/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fi.po b/addons/account_analytic_plans/i18n/fi.po index e750048c24b..08612f533d7 100644 --- a/addons/account_analytic_plans/i18n/fi.po +++ b/addons/account_analytic_plans/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fr.po b/addons/account_analytic_plans/i18n/fr.po index 59e5f486c28..11dac07f447 100644 --- a/addons/account_analytic_plans/i18n/fr.po +++ b/addons/account_analytic_plans/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/gl.po b/addons/account_analytic_plans/i18n/gl.po index d43d5de864a..e5d2d5c0026 100644 --- a/addons/account_analytic_plans/i18n/gl.po +++ b/addons/account_analytic_plans/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/gu.po b/addons/account_analytic_plans/i18n/gu.po index ddc955a19be..0acde87d775 100644 --- a/addons/account_analytic_plans/i18n/gu.po +++ b/addons/account_analytic_plans/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/hr.po b/addons/account_analytic_plans/i18n/hr.po index 29ad2c81c81..ac1c0bad303 100644 --- a/addons/account_analytic_plans/i18n/hr.po +++ b/addons/account_analytic_plans/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/hu.po b/addons/account_analytic_plans/i18n/hu.po index c986f193a15..59f66dcddb5 100644 --- a/addons/account_analytic_plans/i18n/hu.po +++ b/addons/account_analytic_plans/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/id.po b/addons/account_analytic_plans/i18n/id.po index 12735ef3e86..f018c17c17d 100644 --- a/addons/account_analytic_plans/i18n/id.po +++ b/addons/account_analytic_plans/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/it.po b/addons/account_analytic_plans/i18n/it.po index a67d0810274..dcc132fd916 100644 --- a/addons/account_analytic_plans/i18n/it.po +++ b/addons/account_analytic_plans/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ja.po b/addons/account_analytic_plans/i18n/ja.po index 07f64bb9dae..b6eca45e432 100644 --- a/addons/account_analytic_plans/i18n/ja.po +++ b/addons/account_analytic_plans/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ko.po b/addons/account_analytic_plans/i18n/ko.po index 01354939ebd..e2f5773ed4a 100644 --- a/addons/account_analytic_plans/i18n/ko.po +++ b/addons/account_analytic_plans/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/lt.po b/addons/account_analytic_plans/i18n/lt.po index 6d3869aeb77..542c047580d 100644 --- a/addons/account_analytic_plans/i18n/lt.po +++ b/addons/account_analytic_plans/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/lv.po b/addons/account_analytic_plans/i18n/lv.po index 1430126642f..06db746c7d3 100644 --- a/addons/account_analytic_plans/i18n/lv.po +++ b/addons/account_analytic_plans/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/mk.po b/addons/account_analytic_plans/i18n/mk.po index 3115329ee62..c684aa0532d 100644 --- a/addons/account_analytic_plans/i18n/mk.po +++ b/addons/account_analytic_plans/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/mn.po b/addons/account_analytic_plans/i18n/mn.po index 144a8b44023..26bc4ed5cce 100644 --- a/addons/account_analytic_plans/i18n/mn.po +++ b/addons/account_analytic_plans/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nb.po b/addons/account_analytic_plans/i18n/nb.po index 1e9c7d704b6..7cff5ccd437 100644 --- a/addons/account_analytic_plans/i18n/nb.po +++ b/addons/account_analytic_plans/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nl.po b/addons/account_analytic_plans/i18n/nl.po index c5bc10b3cb5..7ba65d077d3 100644 --- a/addons/account_analytic_plans/i18n/nl.po +++ b/addons/account_analytic_plans/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-04-12 21:27+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nl_BE.po b/addons/account_analytic_plans/i18n/nl_BE.po index 5adba498177..11f0bc984a5 100644 --- a/addons/account_analytic_plans/i18n/nl_BE.po +++ b/addons/account_analytic_plans/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/oc.po b/addons/account_analytic_plans/i18n/oc.po index d8bdfa86fda..4c65ef13c77 100644 --- a/addons/account_analytic_plans/i18n/oc.po +++ b/addons/account_analytic_plans/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pl.po b/addons/account_analytic_plans/i18n/pl.po index ee71b7ee13d..410568638b4 100644 --- a/addons/account_analytic_plans/i18n/pl.po +++ b/addons/account_analytic_plans/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/pt.po b/addons/account_analytic_plans/i18n/pt.po index fcaf77012ce..2bb8aa7e86f 100644 --- a/addons/account_analytic_plans/i18n/pt.po +++ b/addons/account_analytic_plans/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pt_BR.po b/addons/account_analytic_plans/i18n/pt_BR.po index 81c304284d2..911aa04f653 100644 --- a/addons/account_analytic_plans/i18n/pt_BR.po +++ b/addons/account_analytic_plans/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ro.po b/addons/account_analytic_plans/i18n/ro.po index 1e5574aaaf9..1eae48487c8 100644 --- a/addons/account_analytic_plans/i18n/ro.po +++ b/addons/account_analytic_plans/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-11 22:25+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ru.po b/addons/account_analytic_plans/i18n/ru.po index 09e9b701b6e..f704750dae9 100644 --- a/addons/account_analytic_plans/i18n/ru.po +++ b/addons/account_analytic_plans/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sl.po b/addons/account_analytic_plans/i18n/sl.po index fd87f439856..87b7d3e7f5e 100644 --- a/addons/account_analytic_plans/i18n/sl.po +++ b/addons/account_analytic_plans/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-19 04:55+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sq.po b/addons/account_analytic_plans/i18n/sq.po index 3f8061d92f9..5a150655123 100644 --- a/addons/account_analytic_plans/i18n/sq.po +++ b/addons/account_analytic_plans/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sr.po b/addons/account_analytic_plans/i18n/sr.po index f25545640f9..4f2b5b423ac 100644 --- a/addons/account_analytic_plans/i18n/sr.po +++ b/addons/account_analytic_plans/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sr@latin.po b/addons/account_analytic_plans/i18n/sr@latin.po index ecc1f5143c3..a2123f12bec 100644 --- a/addons/account_analytic_plans/i18n/sr@latin.po +++ b/addons/account_analytic_plans/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sv.po b/addons/account_analytic_plans/i18n/sv.po index 04049f6acd2..fc9c08d8f5e 100644 --- a/addons/account_analytic_plans/i18n/sv.po +++ b/addons/account_analytic_plans/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/tlh.po b/addons/account_analytic_plans/i18n/tlh.po index c8ed3999be7..779e00d0f3d 100644 --- a/addons/account_analytic_plans/i18n/tlh.po +++ b/addons/account_analytic_plans/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/tr.po b/addons/account_analytic_plans/i18n/tr.po index ae0b2fe51e3..84170284479 100644 --- a/addons/account_analytic_plans/i18n/tr.po +++ b/addons/account_analytic_plans/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: tr\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/uk.po b/addons/account_analytic_plans/i18n/uk.po index 1721e7f64b3..235b0249476 100644 --- a/addons/account_analytic_plans/i18n/uk.po +++ b/addons/account_analytic_plans/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/vi.po b/addons/account_analytic_plans/i18n/vi.po index 5781479b41a..3b108cfbe72 100644 --- a/addons/account_analytic_plans/i18n/vi.po +++ b/addons/account_analytic_plans/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/zh_CN.po b/addons/account_analytic_plans/i18n/zh_CN.po index 0cd915f2869..3b56d07410d 100644 --- a/addons/account_analytic_plans/i18n/zh_CN.po +++ b/addons/account_analytic_plans/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/zh_TW.po b/addons/account_analytic_plans/i18n/zh_TW.po index 72166aaeb54..bdc413cb0b8 100644 --- a/addons/account_analytic_plans/i18n/zh_TW.po +++ b/addons/account_analytic_plans/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_anglo_saxon/i18n/ar.po b/addons/account_anglo_saxon/i18n/ar.po index a05dc636cec..c354cded1f6 100644 --- a/addons/account_anglo_saxon/i18n/ar.po +++ b/addons/account_anglo_saxon/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/bg.po b/addons/account_anglo_saxon/i18n/bg.po index d6678f553cf..9271a4cf656 100644 --- a/addons/account_anglo_saxon/i18n/bg.po +++ b/addons/account_anglo_saxon/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/bs.po b/addons/account_anglo_saxon/i18n/bs.po index fda368cdc28..620153adb04 100644 --- a/addons/account_anglo_saxon/i18n/bs.po +++ b/addons/account_anglo_saxon/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:12+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ca.po b/addons/account_anglo_saxon/i18n/ca.po index 1be1a445264..84835edf74f 100644 --- a/addons/account_anglo_saxon/i18n/ca.po +++ b/addons/account_anglo_saxon/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/cs.po b/addons/account_anglo_saxon/i18n/cs.po index c5551d48f9f..be05a080493 100644 --- a/addons/account_anglo_saxon/i18n/cs.po +++ b/addons/account_anglo_saxon/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/da.po b/addons/account_anglo_saxon/i18n/da.po index bdd795fe808..295cbceaed2 100644 --- a/addons/account_anglo_saxon/i18n/da.po +++ b/addons/account_anglo_saxon/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-13 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/de.po b/addons/account_anglo_saxon/i18n/de.po index ea7f1af3737..f322d93a4d4 100644 --- a/addons/account_anglo_saxon/i18n/de.po +++ b/addons/account_anglo_saxon/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/el.po b/addons/account_anglo_saxon/i18n/el.po index 2a42b6ba36a..e9b323aaf78 100644 --- a/addons/account_anglo_saxon/i18n/el.po +++ b/addons/account_anglo_saxon/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/en_GB.po b/addons/account_anglo_saxon/i18n/en_GB.po index 869b6fd39ee..aac75217fe4 100644 --- a/addons/account_anglo_saxon/i18n/en_GB.po +++ b/addons/account_anglo_saxon/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es.po b/addons/account_anglo_saxon/i18n/es.po index 969248e9305..6eb80af2937 100644 --- a/addons/account_anglo_saxon/i18n/es.po +++ b/addons/account_anglo_saxon/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_CR.po b/addons/account_anglo_saxon/i18n/es_CR.po index 29f6ad44c3c..5670549ce66 100644 --- a/addons/account_anglo_saxon/i18n/es_CR.po +++ b/addons/account_anglo_saxon/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_EC.po b/addons/account_anglo_saxon/i18n/es_EC.po index ca055f8ce40..c09c7dfbd48 100644 --- a/addons/account_anglo_saxon/i18n/es_EC.po +++ b/addons/account_anglo_saxon/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_MX.po b/addons/account_anglo_saxon/i18n/es_MX.po index 6216816ed5f..2e022fc50b8 100644 --- a/addons/account_anglo_saxon/i18n/es_MX.po +++ b/addons/account_anglo_saxon/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_PY.po b/addons/account_anglo_saxon/i18n/es_PY.po index 66b5ec1b206..548ab8b9478 100644 --- a/addons/account_anglo_saxon/i18n/es_PY.po +++ b/addons/account_anglo_saxon/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/et.po b/addons/account_anglo_saxon/i18n/et.po index d5117f59660..dd250e3bf09 100644 --- a/addons/account_anglo_saxon/i18n/et.po +++ b/addons/account_anglo_saxon/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fa.po b/addons/account_anglo_saxon/i18n/fa.po index 4e225e30492..95cade49a64 100644 --- a/addons/account_anglo_saxon/i18n/fa.po +++ b/addons/account_anglo_saxon/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fi.po b/addons/account_anglo_saxon/i18n/fi.po index 3da013d4057..da0ca6ada45 100644 --- a/addons/account_anglo_saxon/i18n/fi.po +++ b/addons/account_anglo_saxon/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fr.po b/addons/account_anglo_saxon/i18n/fr.po index 99a328193e3..c94bfad7b59 100644 --- a/addons/account_anglo_saxon/i18n/fr.po +++ b/addons/account_anglo_saxon/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/gl.po b/addons/account_anglo_saxon/i18n/gl.po index 77bd52ced7f..b1ec97cfc70 100644 --- a/addons/account_anglo_saxon/i18n/gl.po +++ b/addons/account_anglo_saxon/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/gu.po b/addons/account_anglo_saxon/i18n/gu.po index bd893594aca..92cd63f83a0 100644 --- a/addons/account_anglo_saxon/i18n/gu.po +++ b/addons/account_anglo_saxon/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hi.po b/addons/account_anglo_saxon/i18n/hi.po index 0bf2c1c0274..ac4d70e9b52 100644 --- a/addons/account_anglo_saxon/i18n/hi.po +++ b/addons/account_anglo_saxon/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hr.po b/addons/account_anglo_saxon/i18n/hr.po index 27ff915c813..ebe4803a666 100644 --- a/addons/account_anglo_saxon/i18n/hr.po +++ b/addons/account_anglo_saxon/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hu.po b/addons/account_anglo_saxon/i18n/hu.po index 3408db78663..803c59ae71c 100644 --- a/addons/account_anglo_saxon/i18n/hu.po +++ b/addons/account_anglo_saxon/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/id.po b/addons/account_anglo_saxon/i18n/id.po index 30cdeee41e8..a48fbe8e9d1 100644 --- a/addons/account_anglo_saxon/i18n/id.po +++ b/addons/account_anglo_saxon/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/it.po b/addons/account_anglo_saxon/i18n/it.po index ff1a35af276..494819f5e92 100644 --- a/addons/account_anglo_saxon/i18n/it.po +++ b/addons/account_anglo_saxon/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ja.po b/addons/account_anglo_saxon/i18n/ja.po index 00c9a068dd6..dfbcca1419e 100644 --- a/addons/account_anglo_saxon/i18n/ja.po +++ b/addons/account_anglo_saxon/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/lv.po b/addons/account_anglo_saxon/i18n/lv.po index 1bdc2536a85..b1306013311 100644 --- a/addons/account_anglo_saxon/i18n/lv.po +++ b/addons/account_anglo_saxon/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/mk.po b/addons/account_anglo_saxon/i18n/mk.po index 3ae68bdc56e..3290a913ee2 100644 --- a/addons/account_anglo_saxon/i18n/mk.po +++ b/addons/account_anglo_saxon/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/mn.po b/addons/account_anglo_saxon/i18n/mn.po index 68df3b9cb7d..4701437bc66 100644 --- a/addons/account_anglo_saxon/i18n/mn.po +++ b/addons/account_anglo_saxon/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nb.po b/addons/account_anglo_saxon/i18n/nb.po index 15e6c238458..d1c35dae64e 100644 --- a/addons/account_anglo_saxon/i18n/nb.po +++ b/addons/account_anglo_saxon/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nl.po b/addons/account_anglo_saxon/i18n/nl.po index 9b74ddb2c4d..0934cfe2738 100644 --- a/addons/account_anglo_saxon/i18n/nl.po +++ b/addons/account_anglo_saxon/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nl_BE.po b/addons/account_anglo_saxon/i18n/nl_BE.po index 3f329a7d637..661999c5111 100644 --- a/addons/account_anglo_saxon/i18n/nl_BE.po +++ b/addons/account_anglo_saxon/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/oc.po b/addons/account_anglo_saxon/i18n/oc.po index d4146eab790..2da3932fc2c 100644 --- a/addons/account_anglo_saxon/i18n/oc.po +++ b/addons/account_anglo_saxon/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pl.po b/addons/account_anglo_saxon/i18n/pl.po index 4f4c061a668..a1211dc2a94 100644 --- a/addons/account_anglo_saxon/i18n/pl.po +++ b/addons/account_anglo_saxon/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/pt.po b/addons/account_anglo_saxon/i18n/pt.po index 14294c7a840..d310723fe7f 100644 --- a/addons/account_anglo_saxon/i18n/pt.po +++ b/addons/account_anglo_saxon/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pt_BR.po b/addons/account_anglo_saxon/i18n/pt_BR.po index abe942cc2f0..5a4ebe1d49b 100644 --- a/addons/account_anglo_saxon/i18n/pt_BR.po +++ b/addons/account_anglo_saxon/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ro.po b/addons/account_anglo_saxon/i18n/ro.po index 7959798c832..dcfeb4dc96a 100644 --- a/addons/account_anglo_saxon/i18n/ro.po +++ b/addons/account_anglo_saxon/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-07 17:45+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ru.po b/addons/account_anglo_saxon/i18n/ru.po index 8b596f64008..fff7b76fa1c 100644 --- a/addons/account_anglo_saxon/i18n/ru.po +++ b/addons/account_anglo_saxon/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sl.po b/addons/account_anglo_saxon/i18n/sl.po index d6e326ea821..2821dcd0708 100644 --- a/addons/account_anglo_saxon/i18n/sl.po +++ b/addons/account_anglo_saxon/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sq.po b/addons/account_anglo_saxon/i18n/sq.po index 46bbfeeb3c5..e03d1a98753 100644 --- a/addons/account_anglo_saxon/i18n/sq.po +++ b/addons/account_anglo_saxon/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:46+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sr@latin.po b/addons/account_anglo_saxon/i18n/sr@latin.po index 284441fbba1..b206e430fab 100644 --- a/addons/account_anglo_saxon/i18n/sr@latin.po +++ b/addons/account_anglo_saxon/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sv.po b/addons/account_anglo_saxon/i18n/sv.po index 20940735855..de202ca4f5f 100644 --- a/addons/account_anglo_saxon/i18n/sv.po +++ b/addons/account_anglo_saxon/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ta.po b/addons/account_anglo_saxon/i18n/ta.po index eb5b7b8d9fa..6d3863d583a 100644 --- a/addons/account_anglo_saxon/i18n/ta.po +++ b/addons/account_anglo_saxon/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/tr.po b/addons/account_anglo_saxon/i18n/tr.po index 76f8d9325eb..6c50378bc88 100644 --- a/addons/account_anglo_saxon/i18n/tr.po +++ b/addons/account_anglo_saxon/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/zh_CN.po b/addons/account_anglo_saxon/i18n/zh_CN.po index 57927a3f388..b0c4071cee2 100644 --- a/addons/account_anglo_saxon/i18n/zh_CN.po +++ b/addons/account_anglo_saxon/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/zh_TW.po b/addons/account_anglo_saxon/i18n/zh_TW.po index 69e91838b6f..1e1c28c6052 100644 --- a/addons/account_anglo_saxon/i18n/zh_TW.po +++ b/addons/account_anglo_saxon/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_asset/i18n/ar.po b/addons/account_asset/i18n/ar.po index 0a90f4dd8b5..f4623956b6e 100644 --- a/addons/account_asset/i18n/ar.po +++ b/addons/account_asset/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/bs.po b/addons/account_asset/i18n/bs.po index 812216d5f70..53af13ba878 100644 --- a/addons/account_asset/i18n/bs.po +++ b/addons/account_asset/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-30 05:54+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ca.po b/addons/account_asset/i18n/ca.po index 0e74c91b4a0..15f5e0e9c0c 100644 --- a/addons/account_asset/i18n/ca.po +++ b/addons/account_asset/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/cs.po b/addons/account_asset/i18n/cs.po index 9f16939e9df..00cd9f235e6 100644 --- a/addons/account_asset/i18n/cs.po +++ b/addons/account_asset/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/da.po b/addons/account_asset/i18n/da.po index 7bfbdfde6ba..5d673015bb8 100644 --- a/addons/account_asset/i18n/da.po +++ b/addons/account_asset/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:50+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/de.po b/addons/account_asset/i18n/de.po index 26d072e29c0..d983db3494b 100644 --- a/addons/account_asset/i18n/de.po +++ b/addons/account_asset/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/en_GB.po b/addons/account_asset/i18n/en_GB.po index 1a160453c1d..d4419840e1c 100644 --- a/addons/account_asset/i18n/en_GB.po +++ b/addons/account_asset/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-09 05:35+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es.po b/addons/account_asset/i18n/es.po index 1db604f96b3..3b6e378ac4d 100644 --- a/addons/account_asset/i18n/es.po +++ b/addons/account_asset/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_AR.po b/addons/account_asset/i18n/es_AR.po index 8e3b01a9f48..8743eeeb8aa 100644 --- a/addons/account_asset/i18n/es_AR.po +++ b/addons/account_asset/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_CR.po b/addons/account_asset/i18n/es_CR.po index c2c7f4ca4da..8bc0f0b8d76 100644 --- a/addons/account_asset/i18n/es_CR.po +++ b/addons/account_asset/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_EC.po b/addons/account_asset/i18n/es_EC.po index 22ba3931c1c..8273d9cb620 100644 --- a/addons/account_asset/i18n/es_EC.po +++ b/addons/account_asset/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_MX.po b/addons/account_asset/i18n/es_MX.po index 64bc501a37d..1fe366189c2 100644 --- a/addons/account_asset/i18n/es_MX.po +++ b/addons/account_asset/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/et.po b/addons/account_asset/i18n/et.po index a9822916835..c78abaf7f59 100644 --- a/addons/account_asset/i18n/et.po +++ b/addons/account_asset/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/fi.po b/addons/account_asset/i18n/fi.po index 8fd3b86a1a4..ef34fe2bc0b 100644 --- a/addons/account_asset/i18n/fi.po +++ b/addons/account_asset/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/fr.po b/addons/account_asset/i18n/fr.po index 450d18d0d5b..2e1a6c43145 100644 --- a/addons/account_asset/i18n/fr.po +++ b/addons/account_asset/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/gu.po b/addons/account_asset/i18n/gu.po index 128d7ed95d5..0073913ce03 100644 --- a/addons/account_asset/i18n/gu.po +++ b/addons/account_asset/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/hr.po b/addons/account_asset/i18n/hr.po index fe5b0b6f299..7dddf254671 100644 --- a/addons/account_asset/i18n/hr.po +++ b/addons/account_asset/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/hu.po b/addons/account_asset/i18n/hu.po index 3cb785ba83d..7065186d938 100644 --- a/addons/account_asset/i18n/hu.po +++ b/addons/account_asset/i18n/hu.po @@ -14,30 +14,30 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-09 04:59+0000\n" -"X-Generator: Launchpad (build 16760)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in draft and open states" -msgstr "" +msgstr "Tervezet vagy nyitott állapotú eszközök" #. module: account_asset #: field:account.asset.category,method_end:0 #: field:account.asset.history,method_end:0 #: field:asset.modify,method_end:0 msgid "Ending date" -msgstr "" +msgstr "Lejárati dátum" #. module: account_asset #: field:account.asset.asset,value_residual:0 msgid "Residual Value" -msgstr "" +msgstr "Maradvány érték" #. module: account_asset #: field:account.asset.category,account_expense_depreciation_id:0 msgid "Depr. Expense Account" -msgstr "" +msgstr "Értékcsökk. költség számla" #. module: account_asset #: view:asset.asset.report:0 @@ -67,6 +67,8 @@ msgid "" "Indicates that the first depreciation entry for this asset have to be done " "from the purchase date instead of the first January" msgstr "" +"Azt mutatja, hogy az eszköz értékcsökkenés első bevitelét a vásárlás " +"dátumától számítja az első Január helyett" #. module: account_asset #: selection:account.asset.asset,method:0 @@ -116,7 +118,7 @@ msgstr "Indoklás" #: field:account.asset.asset,method_progress_factor:0 #: field:account.asset.category,method_progress_factor:0 msgid "Degressive Factor" -msgstr "" +msgstr "Fokozási együttható" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal @@ -141,12 +143,12 @@ msgstr "Értékcsökkénés sorai" #. module: account_asset #: help:account.asset.asset,salvage_value:0 msgid "It is the amount you plan to have that you cannot depreciate." -msgstr "" +msgstr "Az az érték, melynek értékét terv szerint már nem tudja csökkenteni." #. module: account_asset #: help:account.asset.asset,method_period:0 msgid "The amount of time between two depreciations, in months" -msgstr "" +msgstr "Két értékcsökkenés közt eltelt idő, hónapokban" #. module: account_asset #: field:account.asset.depreciation.line,depreciation_date:0 @@ -158,12 +160,12 @@ msgstr "Értékcsökkenés dátuma" #. module: account_asset #: constraint:account.asset.asset:0 msgid "Error ! You cannot create recursive assets." -msgstr "" +msgstr "Hiba! Nem hozhat létre visszatérő eszközöket." #. module: account_asset #: field:asset.asset.report,posted_value:0 msgid "Posted Amount" -msgstr "" +msgstr "Lekönyvelt összeg" #. module: account_asset #: view:account.asset.asset:0 @@ -178,7 +180,7 @@ msgstr "Eszközök" #. module: account_asset #: field:account.asset.category,account_depreciation_id:0 msgid "Depreciation Account" -msgstr "" +msgstr "Értékcsökkenés összege" #. module: account_asset #: view:account.asset.asset:0 @@ -192,7 +194,7 @@ msgstr "Megjegyzések" #. module: account_asset #: field:account.asset.depreciation.line,move_id:0 msgid "Depreciation Entry" -msgstr "" +msgstr "Értékcsökkentés bevitel" #. module: account_asset #: code:addons/account_asset/account_asset.py:82 @@ -214,7 +216,7 @@ msgstr "Hónapok száma az időszakban" #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in draft state" -msgstr "" +msgstr "Tervezet állapotú eszközök" #. module: account_asset #: field:account.asset.asset,method_end:0 @@ -222,7 +224,7 @@ msgstr "" #: selection:account.asset.category,method_time:0 #: selection:account.asset.history,method_time:0 msgid "Ending Date" -msgstr "" +msgstr "Befejező dátum" #. module: account_asset #: field:account.asset.asset,code:0 @@ -232,13 +234,13 @@ msgstr "Hivatkozás" #. module: account_asset #: view:account.asset.asset:0 msgid "Account Asset" -msgstr "" +msgstr "Eszköz számla" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard #: model:ir.ui.menu,name:account_asset.menu_asset_depreciation_confirmation_wizard msgid "Compute Assets" -msgstr "" +msgstr "Eszközök számítása" #. module: account_asset #: field:account.asset.category,method_period:0 @@ -257,24 +259,24 @@ msgstr "Tervezet" #. module: account_asset #: view:asset.asset.report:0 msgid "Date of asset purchase" -msgstr "" +msgstr "Eszköz vásárlás dátuma" #. module: account_asset #: view:account.asset.asset:0 msgid "Change Duration" -msgstr "" +msgstr "Időtartam változtatás" #. module: account_asset #: help:account.asset.asset,method_number:0 #: help:account.asset.category,method_number:0 #: help:account.asset.history,method_number:0 msgid "The number of depreciations needed to depreciate your asset" -msgstr "" +msgstr "Értékcsökkentések száma az eszköz teljes értékcsökkentéséhez" #. module: account_asset #: view:account.asset.category:0 msgid "Analytic Information" -msgstr "" +msgstr "Elemző információk" #. module: account_asset #: field:account.asset.category,account_analytic_id:0 @@ -297,24 +299,24 @@ msgstr "" #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 msgid "Next Period Depreciation" -msgstr "" +msgstr "Következő időszak értékcsökkenése" #. module: account_asset #: help:account.asset.history,method_period:0 msgid "Time in month between two depreciations" -msgstr "" +msgstr "Két értékcsökkentés közt eltelt idő hónapokban" #. module: account_asset #: view:asset.modify:0 #: model:ir.actions.act_window,name:account_asset.action_asset_modify #: model:ir.model,name:account_asset.model_asset_modify msgid "Modify Asset" -msgstr "" +msgstr "Eszköz módosítás" #. module: account_asset #: field:account.asset.asset,salvage_value:0 msgid "Salvage Value" -msgstr "" +msgstr "Maradvány érték" #. module: account_asset #: field:account.asset.asset,category_id:0 @@ -327,12 +329,12 @@ msgstr "Eszköz kategória" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in closed state" -msgstr "" +msgstr "Lezárt állapotú eszközök" #. module: account_asset #: field:account.asset.asset,parent_id:0 msgid "Parent Asset" -msgstr "" +msgstr "Szülő eszköz" #. module: account_asset #: view:account.asset.history:0 @@ -343,7 +345,7 @@ msgstr "Esuközök előzménye" #. module: account_asset #: view:account.asset.category:0 msgid "Search Asset Category" -msgstr "" +msgstr "Eszköz ketegória keresés" #. module: account_asset #: view:asset.modify:0 @@ -358,19 +360,19 @@ msgstr "Számlasor" #. module: account_asset #: view:account.asset.asset:0 msgid "Depreciation Board" -msgstr "" +msgstr "Értékcsökkenési tábla" #. module: account_asset #: field:asset.asset.report,unposted_value:0 msgid "Unposted Amount" -msgstr "" +msgstr "Nem könyvelt összeg" #. module: account_asset #: field:account.asset.asset,method_time:0 #: field:account.asset.category,method_time:0 #: field:account.asset.history,method_time:0 msgid "Time Method" -msgstr "" +msgstr "Idő módszer" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 @@ -394,6 +396,11 @@ msgid "" "Ending Date: Choose the time between 2 depreciations and the date the " "depreciations won't go beyond." msgstr "" +"Az értékcsökkentés sorai dátumának és számainak számítási módszere.\n" +"Értékcsökkentések száma: Rögzíti az értékcsökkentés sorai számát és kér " +"értékcsökkentés közt eltelt időt.\n" +"Befejezés dátuma: Válasszon 2 értékcsökkentés közti időt és azt a dátumot " +"amit az értékcsökkentés már nem fog meghaladni." #. module: account_asset #: help:account.asset.asset,method_time:0 @@ -406,11 +413,17 @@ msgid "" " * Ending Date: Choose the time between 2 depreciations and the date the " "depreciations won't go beyond." msgstr "" +"Válassza az értékcsökkentés sorai dátumának és számainak számítási " +"módszerét.\n" +" * Értékcsökkentések száma: Rögzíti az értékcsökkentés sorai számát és kér " +"értékcsökkentés közt eltelt időt.\n" +" * Befejezés dátuma: Válasszon 2 értékcsökkentés közti időt és azt a " +"dátumot amit az értékcsökkentés már nem fog meghaladni." #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in running state" -msgstr "" +msgstr "Futó állapotú eszköz" #. module: account_asset #: view:account.asset.asset:0 @@ -426,12 +439,18 @@ msgid "" "You can manually close an asset when the depreciation is over. If the last " "line of depreciation is posted, the asset automatically goes in that status." msgstr "" +"Ha egy eszközt létrehozott, annak állapota 'Tervezet'.\n" +"Miután az eszköz megerősített, annak állapota 'Futó' és a költségcsökkentés " +"sorait el lehet küldeni a könyvelésre.\n" +"Ha a költségcsökkentés végre lett hajtva akkor kézzel bezárhatja azt. Ha az " +"értékcsökkentés utolsó sora is fel lett adva, akkor automatikusan ebbe az " +"állapotba vált." #. module: account_asset #: field:account.asset.asset,state:0 #: field:asset.asset.report,state:0 msgid "Status" -msgstr "Státusz" +msgstr "Állapot" #. module: account_asset #: field:account.asset.asset,partner_id:0 @@ -442,17 +461,17 @@ msgstr "Partner" #. module: account_asset #: view:asset.asset.report:0 msgid "Posted depreciation lines" -msgstr "" +msgstr "Lekönyvelt értékcsökkentési sorok" #. module: account_asset #: field:account.asset.asset,child_ids:0 msgid "Children Assets" -msgstr "" +msgstr "Alsóbbrendő eszközök" #. module: account_asset #: view:asset.asset.report:0 msgid "Date of depreciation" -msgstr "" +msgstr "Értékcsökkentés dátuma" #. module: account_asset #: field:account.asset.history,user_id:0 @@ -462,7 +481,7 @@ msgstr "Felhasználó" #. module: account_asset #: field:account.asset.category,account_asset_id:0 msgid "Asset Account" -msgstr "" +msgstr "Eszköz számla" #. module: account_asset #: view:asset.asset.report:0 @@ -478,12 +497,12 @@ msgstr "Kiszámítás" #. module: account_asset #: view:account.asset.history:0 msgid "Asset History" -msgstr "Esuközök előzménye" +msgstr "Eszközök előzménye" #. module: account_asset #: model:ir.model,name:account_asset.model_asset_depreciation_confirmation_wizard msgid "asset.depreciation.confirmation.wizard" -msgstr "" +msgstr "Eszköz.költségcsökkentés.nyugtázás.varázsló" #. module: account_asset #: field:account.asset.asset,active:0 @@ -493,12 +512,12 @@ msgstr "Aktív" #. module: account_asset #: field:account.asset.depreciation.line,parent_state:0 msgid "State of Asset" -msgstr "Eszköz státusza" +msgstr "Eszköz állapota" #. module: account_asset #: field:account.asset.depreciation.line,name:0 msgid "Depreciation Name" -msgstr "" +msgstr "Költségcsökkentés neve" #. module: account_asset #: view:account.asset.asset:0 @@ -509,7 +528,7 @@ msgstr "Előzmény" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 msgid "Compute Asset" -msgstr "" +msgstr "Eszköz számítása" #. module: account_asset #: field:asset.depreciation.confirmation.wizard,period_id:0 @@ -525,7 +544,7 @@ msgstr "Általános" #: field:account.asset.asset,prorata:0 #: field:account.asset.category,prorata:0 msgid "Prorata Temporis" -msgstr "" +msgstr "Arányos rész késleltetés" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice @@ -535,7 +554,7 @@ msgstr "Számla" #. module: account_asset #: view:account.asset.asset:0 msgid "Set to Close" -msgstr "" +msgstr "Lezártá nyilvánítás" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 @@ -557,7 +576,7 @@ msgstr "Könyvelési tételsorok" #. module: account_asset #: view:asset.modify:0 msgid "Asset Durations to Modify" -msgstr "" +msgstr "Eszköz időtartamainak módosítása" #. module: account_asset #: field:account.asset.asset,purchase_date:0 @@ -570,7 +589,7 @@ msgstr "Vásárlás dátuma" #: selection:account.asset.asset,method:0 #: selection:account.asset.category,method:0 msgid "Degressive" -msgstr "Degresszív" +msgstr "Fokozatosság" #. module: account_asset #: help:asset.depreciation.confirmation.wizard,period_id:0 @@ -578,6 +597,8 @@ msgid "" "Choose the period for which you want to automatically post the depreciation " "lines of running assets" msgstr "" +"Válassza ki azt az időszakot amelyben a futó eszközre vonatkozóan " +"automatikusan feladja a költségcsökkentés sorait" #. module: account_asset #: view:account.asset.asset:0 @@ -593,27 +614,27 @@ msgstr "" #. module: account_asset #: view:account.asset.category:0 msgid "Depreciation Method" -msgstr "" +msgstr "Költségcsökkentés módszere" #. module: account_asset #: field:account.asset.depreciation.line,amount:0 msgid "Current Depreciation" -msgstr "" +msgstr "Jelenlegi költségcsökkentés" #. module: account_asset #: field:account.asset.asset,name:0 msgid "Asset Name" -msgstr "" +msgstr "Eszköz neve" #. module: account_asset #: field:account.asset.category,open_asset:0 msgid "Skip Draft State" -msgstr "" +msgstr "Tervezet állapot átugrása" #. module: account_asset #: view:account.asset.category:0 msgid "Depreciation Dates" -msgstr "" +msgstr "Költségcsökkentési dátumok" #. module: account_asset #: field:account.asset.asset,currency_id:0 @@ -633,7 +654,7 @@ msgstr "Előzmény neve" #. module: account_asset #: field:account.asset.depreciation.line,depreciated_value:0 msgid "Amount Already Depreciated" -msgstr "" +msgstr "A már költségcsökkentett összeg" #. module: account_asset #: help:account.asset.asset,method:0 @@ -643,6 +664,11 @@ msgid "" " * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n" " * Degressive: Calculated on basis of: Residual Value * Degressive Factor" msgstr "" +"Válassza ki a módszert a költségcsökkentési sorok számításához.\n" +" * Lineáris: Ennek alapján számolt: Teljes érték / Költségcsökkentések " +"száma\n" +" * Fokozatos: Ennek alapján számolt: Maradvány érték * Költségcsökkentési " +"tényező" #. module: account_asset #: field:account.asset.depreciation.line,move_check:0 @@ -663,6 +689,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Ebből a jelentésből, ráláthat az összes költségcsökkentésre. A\n" +" keresés eszközt használhatja az eszköz jelentések egyénre " +"szabásához és\n" +" így a jelentést igénye szerint alakíthatja ki;\n" +"

\n" +" " #. module: account_asset #: field:account.asset.asset,purchase_value:0 @@ -680,6 +713,8 @@ msgid "" "Check this if you want to automatically confirm the assets of this category " "when created by invoices." msgstr "" +"Jelölje be, ha ennek a kategóriának az eszközeit automatikusan szeretné " +"nyugtázni, ha azokat a számla hozta létre." #. module: account_asset #: field:asset.asset.report,name:0 @@ -689,7 +724,7 @@ msgstr "Év" #. module: account_asset #: model:ir.model,name:account_asset.model_account_asset_depreciation_line msgid "Asset depreciation line" -msgstr "" +msgstr "Eszköz költségcsökkentési sor" #. module: account_asset #: view:account.asset.category:0 @@ -702,13 +737,13 @@ msgstr "Eszköz kategória" #: view:asset.asset.report:0 #: field:asset.asset.report,depreciation_value:0 msgid "Amount of Depreciation Lines" -msgstr "" +msgstr "Költségcsökkentési sorok száma" #. module: account_asset #: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" -msgstr "" +msgstr "Létrehozott eszköz mozgások" #. module: account_asset #: view:account.asset.asset:0 @@ -723,7 +758,7 @@ msgstr "Sorszám" #. module: account_asset #: help:account.asset.category,method_period:0 msgid "State here the time between 2 depreciations, in months" -msgstr "" +msgstr "Határozza meg itt a 2 költségcsökkentés közt eltelt időt, hónapokban" #. module: account_asset #: field:account.asset.history,date:0 @@ -739,20 +774,20 @@ msgstr "Dátum" #: selection:account.asset.history,method_time:0 #: field:asset.modify,method_number:0 msgid "Number of Depreciations" -msgstr "" +msgstr "Költségcsökkentések száma" #. module: account_asset #: view:account.asset.asset:0 msgid "Create Move" -msgstr "" +msgstr "Mozgás létrehozása" #. module: account_asset #: view:account.asset.asset:0 msgid "Confirm Asset" -msgstr "" +msgstr "Eszköz megerősítése" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree msgid "Asset Hierarchy" -msgstr "" +msgstr "Eszköz rangsor" diff --git a/addons/account_asset/i18n/id.po b/addons/account_asset/i18n/id.po index 3529c7d743f..f45ba33316b 100644 --- a/addons/account_asset/i18n/id.po +++ b/addons/account_asset/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/it.po b/addons/account_asset/i18n/it.po index 63b774bd853..5f88c32452d 100644 --- a/addons/account_asset/i18n/it.po +++ b/addons/account_asset/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ja.po b/addons/account_asset/i18n/ja.po index 1d39648decb..3cbdc42aac9 100644 --- a/addons/account_asset/i18n/ja.po +++ b/addons/account_asset/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ko.po b/addons/account_asset/i18n/ko.po index 121df8d6d43..26c52dbffe5 100644 --- a/addons/account_asset/i18n/ko.po +++ b/addons/account_asset/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/lt.po b/addons/account_asset/i18n/lt.po index 337e50237e3..0f9524214c4 100644 --- a/addons/account_asset/i18n/lt.po +++ b/addons/account_asset/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/mk.po b/addons/account_asset/i18n/mk.po index 7651f81e077..b999f7b63e9 100644 --- a/addons/account_asset/i18n/mk.po +++ b/addons/account_asset/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_asset diff --git a/addons/account_asset/i18n/mn.po b/addons/account_asset/i18n/mn.po index 52f393da53f..b519971e5bc 100644 --- a/addons/account_asset/i18n/mn.po +++ b/addons/account_asset/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nb.po b/addons/account_asset/i18n/nb.po index 064a91e2d09..573a78bb59d 100644 --- a/addons/account_asset/i18n/nb.po +++ b/addons/account_asset/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nl.po b/addons/account_asset/i18n/nl.po index 2cd54c9cc03..72e7dc50a28 100644 --- a/addons/account_asset/i18n/nl.po +++ b/addons/account_asset/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-04-12 21:26+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nl_BE.po b/addons/account_asset/i18n/nl_BE.po index 82d72928fdc..c73563f5c7a 100644 --- a/addons/account_asset/i18n/nl_BE.po +++ b/addons/account_asset/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/pl.po b/addons/account_asset/i18n/pl.po index 08e3f0213e1..4efc2652fba 100644 --- a/addons/account_asset/i18n/pl.po +++ b/addons/account_asset/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/pt.po b/addons/account_asset/i18n/pt.po index 39e55835aaf..37e164f9e77 100644 --- a/addons/account_asset/i18n/pt.po +++ b/addons/account_asset/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/pt_BR.po b/addons/account_asset/i18n/pt_BR.po index 96962beef1a..1378d3c4907 100644 --- a/addons/account_asset/i18n/pt_BR.po +++ b/addons/account_asset/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ro.po b/addons/account_asset/i18n/ro.po index d743d24c71c..8374bc49c7c 100644 --- a/addons/account_asset/i18n/ro.po +++ b/addons/account_asset/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:10+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ru.po b/addons/account_asset/i18n/ru.po index 705f45665d1..f16c8753f10 100644 --- a/addons/account_asset/i18n/ru.po +++ b/addons/account_asset/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-27 05:27+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/sl.po b/addons/account_asset/i18n/sl.po index 8af0005f46d..34394ca9164 100644 --- a/addons/account_asset/i18n/sl.po +++ b/addons/account_asset/i18n/sl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/sr@latin.po b/addons/account_asset/i18n/sr@latin.po index 8c0a77c3bc4..b1c50909387 100644 --- a/addons/account_asset/i18n/sr@latin.po +++ b/addons/account_asset/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/sv.po b/addons/account_asset/i18n/sv.po index 0fd22fc6fd5..fd44381b69a 100644 --- a/addons/account_asset/i18n/sv.po +++ b/addons/account_asset/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/th.po b/addons/account_asset/i18n/th.po index f23784caf45..66c0cb5f0f2 100644 --- a/addons/account_asset/i18n/th.po +++ b/addons/account_asset/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -314,7 +314,7 @@ msgstr "" #. module: account_asset #: field:account.asset.asset,salvage_value:0 msgid "Salvage Value" -msgstr "" +msgstr "มูลค่าซาก" #. module: account_asset #: field:account.asset.asset,category_id:0 @@ -370,7 +370,7 @@ msgstr "" #: field:account.asset.category,method_time:0 #: field:account.asset.history,method_time:0 msgid "Time Method" -msgstr "" +msgstr "วิธีการจัดการเวลา" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 diff --git a/addons/account_asset/i18n/tr.po b/addons/account_asset/i18n/tr.po index 57257c367f9..253e55598e4 100644 --- a/addons/account_asset/i18n/tr.po +++ b/addons/account_asset/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: tr\n" #. module: account_asset diff --git a/addons/account_asset/i18n/vi.po b/addons/account_asset/i18n/vi.po index ff06e090664..e952d034061 100644 --- a/addons/account_asset/i18n/vi.po +++ b/addons/account_asset/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/zh_CN.po b/addons/account_asset/i18n/zh_CN.po index ad91d96c8c4..beebd75df90 100644 --- a/addons/account_asset/i18n/zh_CN.po +++ b/addons/account_asset/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-03 14:24+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -146,7 +146,7 @@ msgstr "折旧后资产的剩余价值金额" #. module: account_asset #: help:account.asset.asset,method_period:0 msgid "The amount of time between two depreciations, in months" -msgstr "" +msgstr "折旧期间,以月计算" #. module: account_asset #: field:account.asset.depreciation.line,depreciation_date:0 @@ -432,6 +432,9 @@ msgid "" "You can manually close an asset when the depreciation is over. If the last " "line of depreciation is posted, the asset automatically goes in that status." msgstr "" +"资产创建后,其状态为“草稿”。\n" +"若资产被确认,其状态变为“运行”,并且其折旧账目可以计入会计科目。\n" +"当资产折旧期结束后,可以手工关闭。若最后折旧账目已经发生,该资产自动转至关闭状态。" #. module: account_asset #: field:account.asset.asset,state:0 @@ -649,6 +652,9 @@ msgid "" " * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n" " * Degressive: Calculated on basis of: Residual Value * Degressive Factor" msgstr "" +"选择计算折旧账目数量的方法。\n" +" * 线形:按照资产总值/折旧账目数量计算\n" +" * 递减:按照资产残值 X 递减率计算" #. module: account_asset #: field:account.asset.depreciation.line,move_check:0 @@ -669,6 +675,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 该报告可以显示所有折旧总揽。也可以根据需要用搜索工具个性化资产报告。\n" +"

\n" +" " #. module: account_asset #: field:account.asset.asset,purchase_value:0 diff --git a/addons/account_asset/i18n/zh_TW.po b/addons/account_asset/i18n/zh_TW.po index 78eafbadc17..da6b8883b45 100644 --- a/addons/account_asset/i18n/zh_TW.po +++ b/addons/account_asset/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_bank_statement_extensions/i18n/ar.po b/addons/account_bank_statement_extensions/i18n/ar.po index 511feb62eb4..18d58669dee 100644 --- a/addons/account_bank_statement_extensions/i18n/ar.po +++ b/addons/account_bank_statement_extensions/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/bs.po b/addons/account_bank_statement_extensions/i18n/bs.po index c1d5f444f5e..724afe2b066 100644 --- a/addons/account_bank_statement_extensions/i18n/bs.po +++ b/addons/account_bank_statement_extensions/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-30 05:54+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/cs.po b/addons/account_bank_statement_extensions/i18n/cs.po index 804c7d7aeb5..9832ac51e80 100644 --- a/addons/account_bank_statement_extensions/i18n/cs.po +++ b/addons/account_bank_statement_extensions/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/da.po b/addons/account_bank_statement_extensions/i18n/da.po index 35f57e9d614..571043ac4b7 100644 --- a/addons/account_bank_statement_extensions/i18n/da.po +++ b/addons/account_bank_statement_extensions/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-16 05:13+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/de.po b/addons/account_bank_statement_extensions/i18n/de.po index 42121cd54ad..618723cf0c7 100644 --- a/addons/account_bank_statement_extensions/i18n/de.po +++ b/addons/account_bank_statement_extensions/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/en_GB.po b/addons/account_bank_statement_extensions/i18n/en_GB.po index 0b5d0419ed2..19e5d6a6cf1 100644 --- a/addons/account_bank_statement_extensions/i18n/en_GB.po +++ b/addons/account_bank_statement_extensions/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es.po b/addons/account_bank_statement_extensions/i18n/es.po index e9b9c08f219..8937b06ce2b 100644 --- a/addons/account_bank_statement_extensions/i18n/es.po +++ b/addons/account_bank_statement_extensions/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_CR.po b/addons/account_bank_statement_extensions/i18n/es_CR.po index 3dcd8b08cca..94beffd380e 100644 --- a/addons/account_bank_statement_extensions/i18n/es_CR.po +++ b/addons/account_bank_statement_extensions/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_EC.po b/addons/account_bank_statement_extensions/i18n/es_EC.po index d9d674236db..3f14c0f23c2 100644 --- a/addons/account_bank_statement_extensions/i18n/es_EC.po +++ b/addons/account_bank_statement_extensions/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_MX.po b/addons/account_bank_statement_extensions/i18n/es_MX.po index fbd92a91ff3..ba447cc3f67 100644 --- a/addons/account_bank_statement_extensions/i18n/es_MX.po +++ b/addons/account_bank_statement_extensions/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/fi.po b/addons/account_bank_statement_extensions/i18n/fi.po index afaa99f2ef9..296f79141d5 100644 --- a/addons/account_bank_statement_extensions/i18n/fi.po +++ b/addons/account_bank_statement_extensions/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/fr.po b/addons/account_bank_statement_extensions/i18n/fr.po index 1429e0b505f..a970c8832c4 100644 --- a/addons/account_bank_statement_extensions/i18n/fr.po +++ b/addons/account_bank_statement_extensions/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-13 21:39+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/gu.po b/addons/account_bank_statement_extensions/i18n/gu.po index 248c900db2e..a66ef58b2c9 100644 --- a/addons/account_bank_statement_extensions/i18n/gu.po +++ b/addons/account_bank_statement_extensions/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/hr.po b/addons/account_bank_statement_extensions/i18n/hr.po index c0fd56196ca..a9ccd8f3539 100644 --- a/addons/account_bank_statement_extensions/i18n/hr.po +++ b/addons/account_bank_statement_extensions/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/hu.po b/addons/account_bank_statement_extensions/i18n/hu.po index b4ea29efbd5..bc0a1b565da 100644 --- a/addons/account_bank_statement_extensions/i18n/hu.po +++ b/addons/account_bank_statement_extensions/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/it.po b/addons/account_bank_statement_extensions/i18n/it.po index d128073fc6e..26da9905cdd 100644 --- a/addons/account_bank_statement_extensions/i18n/it.po +++ b/addons/account_bank_statement_extensions/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ja.po b/addons/account_bank_statement_extensions/i18n/ja.po index 273aaba30d6..89fcc107261 100644 --- a/addons/account_bank_statement_extensions/i18n/ja.po +++ b/addons/account_bank_statement_extensions/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/mk.po b/addons/account_bank_statement_extensions/i18n/mk.po index fe17d05015f..1c090ec403e 100644 --- a/addons/account_bank_statement_extensions/i18n/mk.po +++ b/addons/account_bank_statement_extensions/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/mn.po b/addons/account_bank_statement_extensions/i18n/mn.po index 0bfc54b4c15..b970cd8675d 100644 --- a/addons/account_bank_statement_extensions/i18n/mn.po +++ b/addons/account_bank_statement_extensions/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/nb.po b/addons/account_bank_statement_extensions/i18n/nb.po index ae2ed64c79c..fcda5ced2d8 100644 --- a/addons/account_bank_statement_extensions/i18n/nb.po +++ b/addons/account_bank_statement_extensions/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/nl.po b/addons/account_bank_statement_extensions/i18n/nl.po index f7cd2ff7ea7..2b1f74f1e72 100644 --- a/addons/account_bank_statement_extensions/i18n/nl.po +++ b/addons/account_bank_statement_extensions/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-19 13:57+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pl.po b/addons/account_bank_statement_extensions/i18n/pl.po index 552b361a37b..c595d1816d4 100644 --- a/addons/account_bank_statement_extensions/i18n/pl.po +++ b/addons/account_bank_statement_extensions/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/pt.po b/addons/account_bank_statement_extensions/i18n/pt.po index 3c4a82f17f0..5774610333f 100644 --- a/addons/account_bank_statement_extensions/i18n/pt.po +++ b/addons/account_bank_statement_extensions/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pt_BR.po b/addons/account_bank_statement_extensions/i18n/pt_BR.po index 546aedefe20..5f3d862378a 100644 --- a/addons/account_bank_statement_extensions/i18n/pt_BR.po +++ b/addons/account_bank_statement_extensions/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ro.po b/addons/account_bank_statement_extensions/i18n/ro.po index d1475d47db7..4809a51424d 100644 --- a/addons/account_bank_statement_extensions/i18n/ro.po +++ b/addons/account_bank_statement_extensions/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-12 19:30+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ru.po b/addons/account_bank_statement_extensions/i18n/ru.po index cc6cbafea83..c39e7c24608 100644 --- a/addons/account_bank_statement_extensions/i18n/ru.po +++ b/addons/account_bank_statement_extensions/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-06 05:04+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sl.po b/addons/account_bank_statement_extensions/i18n/sl.po index 2b38e0b258f..15f06a01b90 100644 --- a/addons/account_bank_statement_extensions/i18n/sl.po +++ b/addons/account_bank_statement_extensions/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sr@latin.po b/addons/account_bank_statement_extensions/i18n/sr@latin.po index e16a824a115..c10d8bbc401 100644 --- a/addons/account_bank_statement_extensions/i18n/sr@latin.po +++ b/addons/account_bank_statement_extensions/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sv.po b/addons/account_bank_statement_extensions/i18n/sv.po index bf7d9dad62f..439f5592fbd 100644 --- a/addons/account_bank_statement_extensions/i18n/sv.po +++ b/addons/account_bank_statement_extensions/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/tr.po b/addons/account_bank_statement_extensions/i18n/tr.po index cd68cf12fd1..095ef152b81 100644 --- a/addons/account_bank_statement_extensions/i18n/tr.po +++ b/addons/account_bank_statement_extensions/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: tr\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/zh_CN.po b/addons/account_bank_statement_extensions/i18n/zh_CN.po index 47465655529..fcbbf04235d 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_CN.po +++ b/addons/account_bank_statement_extensions/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-24 10:12+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/zh_TW.po b/addons/account_bank_statement_extensions/i18n/zh_TW.po index 003df18b463..0d5d826ed9e 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_TW.po +++ b/addons/account_bank_statement_extensions/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:57+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_budget/i18n/ar.po b/addons/account_budget/i18n/ar.po index e1fccb1e2f8..7f7f5602d96 100644 --- a/addons/account_budget/i18n/ar.po +++ b/addons/account_budget/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/bg.po b/addons/account_budget/i18n/bg.po index 9631845f0d5..2567be8b406 100644 --- a/addons/account_budget/i18n/bg.po +++ b/addons/account_budget/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/bs.po b/addons/account_budget/i18n/bs.po index d9bc1d6b9cb..c5e02d3bd26 100644 --- a/addons/account_budget/i18n/bs.po +++ b/addons/account_budget/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-30 05:54+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ca.po b/addons/account_budget/i18n/ca.po index f2333f3047d..3a304e6998e 100644 --- a/addons/account_budget/i18n/ca.po +++ b/addons/account_budget/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/cs.po b/addons/account_budget/i18n/cs.po index eb1e1744782..d49dd17bd7e 100644 --- a/addons/account_budget/i18n/cs.po +++ b/addons/account_budget/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/da.po b/addons/account_budget/i18n/da.po index b311e0ba362..208f010ce14 100644 --- a/addons/account_budget/i18n/da.po +++ b/addons/account_budget/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-13 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/de.po b/addons/account_budget/i18n/de.po index 9fd2523f25b..de8247ca08c 100644 --- a/addons/account_budget/i18n/de.po +++ b/addons/account_budget/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/el.po b/addons/account_budget/i18n/el.po index fceba129f54..ed28967884e 100644 --- a/addons/account_budget/i18n/el.po +++ b/addons/account_budget/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/en_GB.po b/addons/account_budget/i18n/en_GB.po index d15f95654e7..8ad1111a981 100644 --- a/addons/account_budget/i18n/en_GB.po +++ b/addons/account_budget/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es.po b/addons/account_budget/i18n/es.po index 3eb7bd087b1..27f3c3f1cbb 100644 --- a/addons/account_budget/i18n/es.po +++ b/addons/account_budget/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_AR.po b/addons/account_budget/i18n/es_AR.po index af28da7620b..a8895c34f81 100644 --- a/addons/account_budget/i18n/es_AR.po +++ b/addons/account_budget/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_CR.po b/addons/account_budget/i18n/es_CR.po index cfb7c689d5c..375b4741cea 100644 --- a/addons/account_budget/i18n/es_CR.po +++ b/addons/account_budget/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_EC.po b/addons/account_budget/i18n/es_EC.po index 27651c85b3f..f8080eae90f 100644 --- a/addons/account_budget/i18n/es_EC.po +++ b/addons/account_budget/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_MX.po b/addons/account_budget/i18n/es_MX.po index c0ffc3eabce..200b8f3e4f1 100644 --- a/addons/account_budget/i18n/es_MX.po +++ b/addons/account_budget/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_PY.po b/addons/account_budget/i18n/es_PY.po index 936f5e9646b..aa14f94c818 100644 --- a/addons/account_budget/i18n/es_PY.po +++ b/addons/account_budget/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/et.po b/addons/account_budget/i18n/et.po index 76b87580d93..3e850de14b4 100644 --- a/addons/account_budget/i18n/et.po +++ b/addons/account_budget/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fa.po b/addons/account_budget/i18n/fa.po index ff47ce86815..f7218ce8187 100644 --- a/addons/account_budget/i18n/fa.po +++ b/addons/account_budget/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fi.po b/addons/account_budget/i18n/fi.po index 44a2efa581d..ed602c28487 100644 --- a/addons/account_budget/i18n/fi.po +++ b/addons/account_budget/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fr.po b/addons/account_budget/i18n/fr.po index 58248d8d501..65762f30eda 100644 --- a/addons/account_budget/i18n/fr.po +++ b/addons/account_budget/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-04 05:37+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/gl.po b/addons/account_budget/i18n/gl.po index 9bbad502708..769c5aa0c37 100644 --- a/addons/account_budget/i18n/gl.po +++ b/addons/account_budget/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/gu.po b/addons/account_budget/i18n/gu.po index 34872447b43..a4d456c6fcb 100644 --- a/addons/account_budget/i18n/gu.po +++ b/addons/account_budget/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/he.po b/addons/account_budget/i18n/he.po index d94115f7c1f..0aac309d9fc 100644 --- a/addons/account_budget/i18n/he.po +++ b/addons/account_budget/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hi.po b/addons/account_budget/i18n/hi.po index 8fec98eccdf..73f9c8febab 100644 --- a/addons/account_budget/i18n/hi.po +++ b/addons/account_budget/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hr.po b/addons/account_budget/i18n/hr.po index 80f1750e25c..cbc3f700e8b 100644 --- a/addons/account_budget/i18n/hr.po +++ b/addons/account_budget/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hu.po b/addons/account_budget/i18n/hu.po index 5271f9a333e..cf0f614ca91 100644 --- a/addons/account_budget/i18n/hu.po +++ b/addons/account_budget/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/id.po b/addons/account_budget/i18n/id.po index c8fe444cf31..8b85123e047 100644 --- a/addons/account_budget/i18n/id.po +++ b/addons/account_budget/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/it.po b/addons/account_budget/i18n/it.po index f05fb766cc4..90b54d479cc 100644 --- a/addons/account_budget/i18n/it.po +++ b/addons/account_budget/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ja.po b/addons/account_budget/i18n/ja.po index d782ce5844c..6111b7d5b0d 100644 --- a/addons/account_budget/i18n/ja.po +++ b/addons/account_budget/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -425,4 +425,4 @@ msgstr "からの分析" #. module: account_budget #: view:crossovered.budget:0 msgid "Draft Budgets" -msgstr "ドラフト予算" +msgstr "予算案" diff --git a/addons/account_budget/i18n/ko.po b/addons/account_budget/i18n/ko.po index 5fb9108127e..625a6856c51 100644 --- a/addons/account_budget/i18n/ko.po +++ b/addons/account_budget/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lo.po b/addons/account_budget/i18n/lo.po index 4bf23f54008..c6cdac490a6 100644 --- a/addons/account_budget/i18n/lo.po +++ b/addons/account_budget/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lt.po b/addons/account_budget/i18n/lt.po index 06cad122a8a..18103db6b74 100644 --- a/addons/account_budget/i18n/lt.po +++ b/addons/account_budget/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lv.po b/addons/account_budget/i18n/lv.po index f27e1136997..51d0133dd8a 100644 --- a/addons/account_budget/i18n/lv.po +++ b/addons/account_budget/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/mk.po b/addons/account_budget/i18n/mk.po index bdf695239be..d23eb25d971 100644 --- a/addons/account_budget/i18n/mk.po +++ b/addons/account_budget/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_budget diff --git a/addons/account_budget/i18n/mn.po b/addons/account_budget/i18n/mn.po index 37eba77226f..a4503d58f08 100644 --- a/addons/account_budget/i18n/mn.po +++ b/addons/account_budget/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nb.po b/addons/account_budget/i18n/nb.po index 815610b4a8c..973e7d68268 100644 --- a/addons/account_budget/i18n/nb.po +++ b/addons/account_budget/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nl.po b/addons/account_budget/i18n/nl.po index f97e5d9308c..cdeaa174599 100644 --- a/addons/account_budget/i18n/nl.po +++ b/addons/account_budget/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-29 11:54+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-30 04:57+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nl_BE.po b/addons/account_budget/i18n/nl_BE.po index 7b9a6dd0d65..804db62636f 100644 --- a/addons/account_budget/i18n/nl_BE.po +++ b/addons/account_budget/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/oc.po b/addons/account_budget/i18n/oc.po index d230b573e44..69088743cce 100644 --- a/addons/account_budget/i18n/oc.po +++ b/addons/account_budget/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pl.po b/addons/account_budget/i18n/pl.po index 8159527b17c..ac7a0235857 100644 --- a/addons/account_budget/i18n/pl.po +++ b/addons/account_budget/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/pt.po b/addons/account_budget/i18n/pt.po index 189f973dcbb..4cb76c7e4fc 100644 --- a/addons/account_budget/i18n/pt.po +++ b/addons/account_budget/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pt_BR.po b/addons/account_budget/i18n/pt_BR.po index ece0fa0b7a6..156501b0836 100644 --- a/addons/account_budget/i18n/pt_BR.po +++ b/addons/account_budget/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 19:32+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:35+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ro.po b/addons/account_budget/i18n/ro.po index b93916eefaa..a17bda6e333 100644 --- a/addons/account_budget/i18n/ro.po +++ b/addons/account_budget/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:10+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ru.po b/addons/account_budget/i18n/ru.po index 4eacf0f6a02..fe4e815c938 100644 --- a/addons/account_budget/i18n/ru.po +++ b/addons/account_budget/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sl.po b/addons/account_budget/i18n/sl.po index 6e38c13b750..5bf6ce07675 100644 --- a/addons/account_budget/i18n/sl.po +++ b/addons/account_budget/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sq.po b/addons/account_budget/i18n/sq.po index 6d23bc8da92..7fb4c305f57 100644 --- a/addons/account_budget/i18n/sq.po +++ b/addons/account_budget/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sr.po b/addons/account_budget/i18n/sr.po index e9eba1c8303..c7adafa9f86 100644 --- a/addons/account_budget/i18n/sr.po +++ b/addons/account_budget/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sr@latin.po b/addons/account_budget/i18n/sr@latin.po index 28217d42f7a..f2480c7a898 100644 --- a/addons/account_budget/i18n/sr@latin.po +++ b/addons/account_budget/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sv.po b/addons/account_budget/i18n/sv.po index 1cd16133730..82f62b2e9fe 100644 --- a/addons/account_budget/i18n/sv.po +++ b/addons/account_budget/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/tlh.po b/addons/account_budget/i18n/tlh.po index 84d1b1962b4..445e41580c8 100644 --- a/addons/account_budget/i18n/tlh.po +++ b/addons/account_budget/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/tr.po b/addons/account_budget/i18n/tr.po index b3ee141e5e1..82cc3f12a91 100644 --- a/addons/account_budget/i18n/tr.po +++ b/addons/account_budget/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-17 07:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: tr\n" #. module: account_budget diff --git a/addons/account_budget/i18n/uk.po b/addons/account_budget/i18n/uk.po index 5c97015cc81..11a246c64da 100644 --- a/addons/account_budget/i18n/uk.po +++ b/addons/account_budget/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/vi.po b/addons/account_budget/i18n/vi.po index 9a44d58280d..71e84b0986a 100644 --- a/addons/account_budget/i18n/vi.po +++ b/addons/account_budget/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/zh_CN.po b/addons/account_budget/i18n/zh_CN.po index 0cc84a69f68..2dcf2e01278 100644 --- a/addons/account_budget/i18n/zh_CN.po +++ b/addons/account_budget/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-03 14:07+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -438,3 +438,34 @@ msgstr "辅助核算从" #: view:crossovered.budget:0 msgid "Draft Budgets" msgstr "预算草稿" + +#~ msgid "" +#~ "

\n" +#~ " A budget is a forecast of your company's income and/or " +#~ "expenses\n" +#~ " expected for a period in the future. A budget is defined on " +#~ "some\n" +#~ " financial accounts and/or analytic accounts (that may " +#~ "represent\n" +#~ " projects, departments, categories of products, etc.)\n" +#~ "

\n" +#~ " By keeping track of where your money goes, you may be less\n" +#~ " likely to overspend, and more likely to meet your financial\n" +#~ " goals. Forecast a budget by detailing the expected revenue " +#~ "per\n" +#~ " analytic account and monitor its evolution based on the " +#~ "actuals\n" +#~ " realised during that period.\n" +#~ "

\n" +#~ " " +#~ msgstr "" +#~ "

预算是对公司在未来一段时间里的收入或支出的预测。\n" +#~ "                预算常用在 财务账目和/或分析帐目(可能用于\n" +#~ "                项目,部门,产品类别等)              \n" +#~ "

\n" +#~ "                通过跟踪你的钱流向,你可能会大大减少\n" +#~ "                超支,从而容易实现您的财务管理\n" +#~ "                的目标。通过为每个分析帐户制订详细的预算来制订预算\n" +#~ "                ,并在预算期间根据实际情况监测其演变。\n" +#~ "

\n" +#~ " " diff --git a/addons/account_budget/i18n/zh_TW.po b/addons/account_budget/i18n/zh_TW.po index 8f9684fbff3..046e6f08e95 100644 --- a/addons/account_budget/i18n/zh_TW.po +++ b/addons/account_budget/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_cancel/i18n/ar.po b/addons/account_cancel/i18n/ar.po index c1d9aa0f771..20795e3b554 100644 --- a/addons/account_cancel/i18n/ar.po +++ b/addons/account_cancel/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bg.po b/addons/account_cancel/i18n/bg.po index 494fd806bd4..b58d6944a27 100644 --- a/addons/account_cancel/i18n/bg.po +++ b/addons/account_cancel/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bn.po b/addons/account_cancel/i18n/bn.po index e3e569af0bd..cafa6ffc58a 100644 --- a/addons/account_cancel/i18n/bn.po +++ b/addons/account_cancel/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/br.po b/addons/account_cancel/i18n/br.po index b0d1b2f0420..9aa696c8e96 100644 --- a/addons/account_cancel/i18n/br.po +++ b/addons/account_cancel/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bs.po b/addons/account_cancel/i18n/bs.po index 6403ed6b203..40d582414bf 100644 --- a/addons/account_cancel/i18n/bs.po +++ b/addons/account_cancel/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-09 05:35+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ca.po b/addons/account_cancel/i18n/ca.po index d1efc81021f..87b8e4aaf5d 100644 --- a/addons/account_cancel/i18n/ca.po +++ b/addons/account_cancel/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/cs.po b/addons/account_cancel/i18n/cs.po index ea732fabc9b..a4b3aecad77 100644 --- a/addons/account_cancel/i18n/cs.po +++ b/addons/account_cancel/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/da.po b/addons/account_cancel/i18n/da.po index 554f5bbfa36..532b65ae73f 100644 --- a/addons/account_cancel/i18n/da.po +++ b/addons/account_cancel/i18n/da.po @@ -14,10 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-13 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 msgid "Cancel Invoice" msgstr "Annuller Faktura" + +#~ msgid "Cancel" +#~ msgstr "Annuller" diff --git a/addons/account_cancel/i18n/de.po b/addons/account_cancel/i18n/de.po index a9566a78a19..81292b08fec 100644 --- a/addons/account_cancel/i18n/de.po +++ b/addons/account_cancel/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/el.po b/addons/account_cancel/i18n/el.po index 9473ae1eb02..5f2349264e8 100644 --- a/addons/account_cancel/i18n/el.po +++ b/addons/account_cancel/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/en_GB.po b/addons/account_cancel/i18n/en_GB.po index 74dbbfd404d..cb00a7a8873 100644 --- a/addons/account_cancel/i18n/en_GB.po +++ b/addons/account_cancel/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es.po b/addons/account_cancel/i18n/es.po index 9eb9bd32ca8..586e22e3615 100644 --- a/addons/account_cancel/i18n/es.po +++ b/addons/account_cancel/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_CL.po b/addons/account_cancel/i18n/es_CL.po index 251f5e23c8a..affca6a88fe 100644 --- a/addons/account_cancel/i18n/es_CL.po +++ b/addons/account_cancel/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_CR.po b/addons/account_cancel/i18n/es_CR.po index e49f5b1e736..465af7adcea 100644 --- a/addons/account_cancel/i18n/es_CR.po +++ b/addons/account_cancel/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_EC.po b/addons/account_cancel/i18n/es_EC.po index 55b4fed592f..5399a48990c 100644 --- a/addons/account_cancel/i18n/es_EC.po +++ b/addons/account_cancel/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_MX.po b/addons/account_cancel/i18n/es_MX.po index 754bc87313d..bb910c02fd5 100644 --- a/addons/account_cancel/i18n/es_MX.po +++ b/addons/account_cancel/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_PY.po b/addons/account_cancel/i18n/es_PY.po index 4375f2bc643..4fbaac5d8fc 100644 --- a/addons/account_cancel/i18n/es_PY.po +++ b/addons/account_cancel/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/et.po b/addons/account_cancel/i18n/et.po index 360cd786df5..ba896e9fe81 100644 --- a/addons/account_cancel/i18n/et.po +++ b/addons/account_cancel/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 05:25+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fa.po b/addons/account_cancel/i18n/fa.po index 4ea06868ce5..f1e2563ad59 100644 --- a/addons/account_cancel/i18n/fa.po +++ b/addons/account_cancel/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fi.po b/addons/account_cancel/i18n/fi.po index d701e6f61d8..cac8104be09 100644 --- a/addons/account_cancel/i18n/fi.po +++ b/addons/account_cancel/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/fr.po b/addons/account_cancel/i18n/fr.po index 51ec2439a59..f2de19cbe7f 100644 --- a/addons/account_cancel/i18n/fr.po +++ b/addons/account_cancel/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/gl.po b/addons/account_cancel/i18n/gl.po index b5d7026defa..0d00276c7d8 100644 --- a/addons/account_cancel/i18n/gl.po +++ b/addons/account_cancel/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/gu.po b/addons/account_cancel/i18n/gu.po index c72567134af..575872731b6 100644 --- a/addons/account_cancel/i18n/gu.po +++ b/addons/account_cancel/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hi.po b/addons/account_cancel/i18n/hi.po index f053b3acddb..b7d6a3bd534 100644 --- a/addons/account_cancel/i18n/hi.po +++ b/addons/account_cancel/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hr.po b/addons/account_cancel/i18n/hr.po index 67108017e6c..69a4d71f912 100644 --- a/addons/account_cancel/i18n/hr.po +++ b/addons/account_cancel/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hu.po b/addons/account_cancel/i18n/hu.po index 921c90fda02..c1ecc0a3166 100644 --- a/addons/account_cancel/i18n/hu.po +++ b/addons/account_cancel/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/id.po b/addons/account_cancel/i18n/id.po index a25be01b1f4..637c294a34c 100644 --- a/addons/account_cancel/i18n/id.po +++ b/addons/account_cancel/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/it.po b/addons/account_cancel/i18n/it.po index 460bd4c1177..fd75018029c 100644 --- a/addons/account_cancel/i18n/it.po +++ b/addons/account_cancel/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-21 17:20+0000\n" -"Last-Translator: Leonardo Di Benedetto \n" +"Last-Translator: ICT Consulting \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ja.po b/addons/account_cancel/i18n/ja.po index aced443565e..82bbddc2ea6 100644 --- a/addons/account_cancel/i18n/ja.po +++ b/addons/account_cancel/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-08 06:18+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/kk.po b/addons/account_cancel/i18n/kk.po index a8875d750f4..09700e9e4e7 100644 --- a/addons/account_cancel/i18n/kk.po +++ b/addons/account_cancel/i18n/kk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lo.po b/addons/account_cancel/i18n/lo.po index 12c8c70af25..3cb9ffaf639 100644 --- a/addons/account_cancel/i18n/lo.po +++ b/addons/account_cancel/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lt.po b/addons/account_cancel/i18n/lt.po index 71b79b7b788..3318950d81b 100644 --- a/addons/account_cancel/i18n/lt.po +++ b/addons/account_cancel/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lv.po b/addons/account_cancel/i18n/lv.po index b97c8e43de2..e01d9689a30 100644 --- a/addons/account_cancel/i18n/lv.po +++ b/addons/account_cancel/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/mk.po b/addons/account_cancel/i18n/mk.po index 8ca527ecd72..40a0d061b6a 100644 --- a/addons/account_cancel/i18n/mk.po +++ b/addons/account_cancel/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/mn.po b/addons/account_cancel/i18n/mn.po index 03e8d053e0c..166bf1eab1d 100644 --- a/addons/account_cancel/i18n/mn.po +++ b/addons/account_cancel/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nb.po b/addons/account_cancel/i18n/nb.po index 5c27105b753..1915bf31fe7 100644 --- a/addons/account_cancel/i18n/nb.po +++ b/addons/account_cancel/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nl.po b/addons/account_cancel/i18n/nl.po index 1c02af5122b..b4dfccb94f4 100644 --- a/addons/account_cancel/i18n/nl.po +++ b/addons/account_cancel/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-09 08:34+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nl_BE.po b/addons/account_cancel/i18n/nl_BE.po index e42b00eca74..5a9d669a81b 100644 --- a/addons/account_cancel/i18n/nl_BE.po +++ b/addons/account_cancel/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/oc.po b/addons/account_cancel/i18n/oc.po index eee891c6a9d..64524a55a3a 100644 --- a/addons/account_cancel/i18n/oc.po +++ b/addons/account_cancel/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pl.po b/addons/account_cancel/i18n/pl.po index 817f62e0405..44afa694bb1 100644 --- a/addons/account_cancel/i18n/pl.po +++ b/addons/account_cancel/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-03 05:43+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pt.po b/addons/account_cancel/i18n/pt.po index 3f75a42175a..6c7c74f71d8 100644 --- a/addons/account_cancel/i18n/pt.po +++ b/addons/account_cancel/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pt_BR.po b/addons/account_cancel/i18n/pt_BR.po index dd9a4a1f288..bafbb7c6514 100644 --- a/addons/account_cancel/i18n/pt_BR.po +++ b/addons/account_cancel/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ro.po b/addons/account_cancel/i18n/ro.po index c14a7883fae..0b32750fb91 100644 --- a/addons/account_cancel/i18n/ro.po +++ b/addons/account_cancel/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:11+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ru.po b/addons/account_cancel/i18n/ru.po index a85eb5f719e..b2ee6289ad0 100644 --- a/addons/account_cancel/i18n/ru.po +++ b/addons/account_cancel/i18n/ru.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-05 06:57+0000\n" -"Last-Translator: Глория Хрусталёва \n" +"Last-Translator: Глория Хрусталёва \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sl.po b/addons/account_cancel/i18n/sl.po index f4bbef93f10..b665be1ddec 100644 --- a/addons/account_cancel/i18n/sl.po +++ b/addons/account_cancel/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sq.po b/addons/account_cancel/i18n/sq.po index 2688914f222..703e7bf2ff8 100644 --- a/addons/account_cancel/i18n/sq.po +++ b/addons/account_cancel/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sr.po b/addons/account_cancel/i18n/sr.po index f559354d9ef..10c6e549754 100644 --- a/addons/account_cancel/i18n/sr.po +++ b/addons/account_cancel/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sr@latin.po b/addons/account_cancel/i18n/sr@latin.po index 2f10d21339b..6eb106969d8 100644 --- a/addons/account_cancel/i18n/sr@latin.po +++ b/addons/account_cancel/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sv.po b/addons/account_cancel/i18n/sv.po index 0b30dcad73e..dd5efb025f8 100644 --- a/addons/account_cancel/i18n/sv.po +++ b/addons/account_cancel/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ta.po b/addons/account_cancel/i18n/ta.po index ac32d065d7e..7eb4665e6f8 100644 --- a/addons/account_cancel/i18n/ta.po +++ b/addons/account_cancel/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/th.po b/addons/account_cancel/i18n/th.po index 07c13fde8a7..d952ce9843e 100644 --- a/addons/account_cancel/i18n/th.po +++ b/addons/account_cancel/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/tr.po b/addons/account_cancel/i18n/tr.po index 4938e8740e6..449ffa8da32 100644 --- a/addons/account_cancel/i18n/tr.po +++ b/addons/account_cancel/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/uk.po b/addons/account_cancel/i18n/uk.po index e59e6b29261..7220db6bc18 100644 --- a/addons/account_cancel/i18n/uk.po +++ b/addons/account_cancel/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-02 05:58+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/vi.po b/addons/account_cancel/i18n/vi.po index 6c146ecb229..772b3a30f2a 100644 --- a/addons/account_cancel/i18n/vi.po +++ b/addons/account_cancel/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/zh_CN.po b/addons/account_cancel/i18n/zh_CN.po index 40ee1797d47..f468a362647 100644 --- a/addons/account_cancel/i18n/zh_CN.po +++ b/addons/account_cancel/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-30 13:46+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-31 06:09+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/zh_TW.po b/addons/account_cancel/i18n/zh_TW.po index f0afd1ede4e..f5cb2d4879b 100644 --- a/addons/account_cancel/i18n/zh_TW.po +++ b/addons/account_cancel/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_chart/i18n/ar.po b/addons/account_chart/i18n/ar.po index 072bf9d7edb..0b07d8403c1 100644 --- a/addons/account_chart/i18n/ar.po +++ b/addons/account_chart/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/bg.po b/addons/account_chart/i18n/bg.po index 6ed71e16f35..085609ea22c 100644 --- a/addons/account_chart/i18n/bg.po +++ b/addons/account_chart/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/bs.po b/addons/account_chart/i18n/bs.po index aa66ecf9620..aa56cf27631 100644 --- a/addons/account_chart/i18n/bs.po +++ b/addons/account_chart/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-09 05:35+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ca.po b/addons/account_chart/i18n/ca.po index 971d1e6dc47..21eb810bd20 100644 --- a/addons/account_chart/i18n/ca.po +++ b/addons/account_chart/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/cs.po b/addons/account_chart/i18n/cs.po index f54be2dd0fb..88384985b0d 100644 --- a/addons/account_chart/i18n/cs.po +++ b/addons/account_chart/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/da.po b/addons/account_chart/i18n/da.po index 38303ce3809..a0f8bda6a62 100644 --- a/addons/account_chart/i18n/da.po +++ b/addons/account_chart/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/de.po b/addons/account_chart/i18n/de.po index 3844d122c4a..846ec92d311 100644 --- a/addons/account_chart/i18n/de.po +++ b/addons/account_chart/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/el.po b/addons/account_chart/i18n/el.po index 8ec1b9cc043..9ee0343b021 100644 --- a/addons/account_chart/i18n/el.po +++ b/addons/account_chart/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/en_GB.po b/addons/account_chart/i18n/en_GB.po index e9c4d173161..d0d8212ed32 100644 --- a/addons/account_chart/i18n/en_GB.po +++ b/addons/account_chart/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es.po b/addons/account_chart/i18n/es.po index c87e58b92d5..8454b20c4b8 100644 --- a/addons/account_chart/i18n/es.po +++ b/addons/account_chart/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_AR.po b/addons/account_chart/i18n/es_AR.po index 35e4cb188ce..b24081701f8 100644 --- a/addons/account_chart/i18n/es_AR.po +++ b/addons/account_chart/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_CL.po b/addons/account_chart/i18n/es_CL.po index cc2cf97d0f4..6e602720a02 100644 --- a/addons/account_chart/i18n/es_CL.po +++ b/addons/account_chart/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_CR.po b/addons/account_chart/i18n/es_CR.po index 416bf8eb111..8f81c23e3ee 100644 --- a/addons/account_chart/i18n/es_CR.po +++ b/addons/account_chart/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_EC.po b/addons/account_chart/i18n/es_EC.po index f2f152d6920..1553df206e3 100644 --- a/addons/account_chart/i18n/es_EC.po +++ b/addons/account_chart/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_MX.po b/addons/account_chart/i18n/es_MX.po index c672c8504e4..4421fb75c85 100644 --- a/addons/account_chart/i18n/es_MX.po +++ b/addons/account_chart/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_PY.po b/addons/account_chart/i18n/es_PY.po index a36135eb04a..32b5e7c2690 100644 --- a/addons/account_chart/i18n/es_PY.po +++ b/addons/account_chart/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/et.po b/addons/account_chart/i18n/et.po index 6eb5efcbe24..0633117f9f7 100644 --- a/addons/account_chart/i18n/et.po +++ b/addons/account_chart/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/eu.po b/addons/account_chart/i18n/eu.po index 8b4690170a1..90b68d502d3 100644 --- a/addons/account_chart/i18n/eu.po +++ b/addons/account_chart/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fa.po b/addons/account_chart/i18n/fa.po index 560426ef485..f4590e5751e 100644 --- a/addons/account_chart/i18n/fa.po +++ b/addons/account_chart/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fi.po b/addons/account_chart/i18n/fi.po index 61370b0ceba..63a82c2de84 100644 --- a/addons/account_chart/i18n/fi.po +++ b/addons/account_chart/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fr.po b/addons/account_chart/i18n/fr.po index e02cf0290ca..aea9508349b 100644 --- a/addons/account_chart/i18n/fr.po +++ b/addons/account_chart/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/gl.po b/addons/account_chart/i18n/gl.po index 352ca071051..1474fc1144f 100644 --- a/addons/account_chart/i18n/gl.po +++ b/addons/account_chart/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/gu.po b/addons/account_chart/i18n/gu.po index aa6c78311d3..8fe352e4a2f 100644 --- a/addons/account_chart/i18n/gu.po +++ b/addons/account_chart/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hi.po b/addons/account_chart/i18n/hi.po index a8d44c183e9..111fb4d0463 100644 --- a/addons/account_chart/i18n/hi.po +++ b/addons/account_chart/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hr.po b/addons/account_chart/i18n/hr.po index 2fca889d4f1..8627a5a4f54 100644 --- a/addons/account_chart/i18n/hr.po +++ b/addons/account_chart/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hu.po b/addons/account_chart/i18n/hu.po index e92179f276b..bfc56f00915 100644 --- a/addons/account_chart/i18n/hu.po +++ b/addons/account_chart/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/id.po b/addons/account_chart/i18n/id.po index 4c8131f81f7..255c9075ccd 100644 --- a/addons/account_chart/i18n/id.po +++ b/addons/account_chart/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/it.po b/addons/account_chart/i18n/it.po index ccb59c3b688..64a897961a9 100644 --- a/addons/account_chart/i18n/it.po +++ b/addons/account_chart/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ja.po b/addons/account_chart/i18n/ja.po index c488f0896b7..e720ce89a50 100644 --- a/addons/account_chart/i18n/ja.po +++ b/addons/account_chart/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ko.po b/addons/account_chart/i18n/ko.po index 7e8ce282460..b9ce3e2ce80 100644 --- a/addons/account_chart/i18n/ko.po +++ b/addons/account_chart/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lo.po b/addons/account_chart/i18n/lo.po index 9860d2b3168..bc939195fd7 100644 --- a/addons/account_chart/i18n/lo.po +++ b/addons/account_chart/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lt.po b/addons/account_chart/i18n/lt.po index aea6512aee6..3adfc389556 100644 --- a/addons/account_chart/i18n/lt.po +++ b/addons/account_chart/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lv.po b/addons/account_chart/i18n/lv.po index 82e75147b14..1a2d850f733 100644 --- a/addons/account_chart/i18n/lv.po +++ b/addons/account_chart/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/mk.po b/addons/account_chart/i18n/mk.po index a135c4b89b1..bb1617ca2ac 100644 --- a/addons/account_chart/i18n/mk.po +++ b/addons/account_chart/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/mn.po b/addons/account_chart/i18n/mn.po index 14e321c79ad..fbe01e86926 100644 --- a/addons/account_chart/i18n/mn.po +++ b/addons/account_chart/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nb.po b/addons/account_chart/i18n/nb.po index ad8a45ea050..323792718f7 100644 --- a/addons/account_chart/i18n/nb.po +++ b/addons/account_chart/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nl.po b/addons/account_chart/i18n/nl.po index 644c677504d..6eea93be350 100644 --- a/addons/account_chart/i18n/nl.po +++ b/addons/account_chart/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nl_BE.po b/addons/account_chart/i18n/nl_BE.po index 8dad7e8bf5e..811cf2ccf43 100644 --- a/addons/account_chart/i18n/nl_BE.po +++ b/addons/account_chart/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/oc.po b/addons/account_chart/i18n/oc.po index 6626b854537..7fceec8431f 100644 --- a/addons/account_chart/i18n/oc.po +++ b/addons/account_chart/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pl.po b/addons/account_chart/i18n/pl.po index de331e2b514..94a18ddb9ae 100644 --- a/addons/account_chart/i18n/pl.po +++ b/addons/account_chart/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-03 05:43+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pt.po b/addons/account_chart/i18n/pt.po index 14b464c99a5..4d8b8e8f19e 100644 --- a/addons/account_chart/i18n/pt.po +++ b/addons/account_chart/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pt_BR.po b/addons/account_chart/i18n/pt_BR.po index 79a4bc5adc8..91a32789944 100644 --- a/addons/account_chart/i18n/pt_BR.po +++ b/addons/account_chart/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-28 05:53+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ro.po b/addons/account_chart/i18n/ro.po index 9a1bade1537..661dbfb3a6b 100644 --- a/addons/account_chart/i18n/ro.po +++ b/addons/account_chart/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2013-01-11 16:40+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ru.po b/addons/account_chart/i18n/ru.po index 55d993a037a..36addb5c44b 100644 --- a/addons/account_chart/i18n/ru.po +++ b/addons/account_chart/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sk.po b/addons/account_chart/i18n/sk.po index 0532a5be3db..2e7e5bd7b8e 100644 --- a/addons/account_chart/i18n/sk.po +++ b/addons/account_chart/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sl.po b/addons/account_chart/i18n/sl.po index cb7f60dcf64..8c8447fb679 100644 --- a/addons/account_chart/i18n/sl.po +++ b/addons/account_chart/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sq.po b/addons/account_chart/i18n/sq.po index 5315f94d1f6..79128bf7290 100644 --- a/addons/account_chart/i18n/sq.po +++ b/addons/account_chart/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sr.po b/addons/account_chart/i18n/sr.po index 5ddfccbc087..5c298c42d21 100644 --- a/addons/account_chart/i18n/sr.po +++ b/addons/account_chart/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sr@latin.po b/addons/account_chart/i18n/sr@latin.po index 91707c38a2d..93b854fda35 100644 --- a/addons/account_chart/i18n/sr@latin.po +++ b/addons/account_chart/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sv.po b/addons/account_chart/i18n/sv.po index 34846dcbef7..77258908940 100644 --- a/addons/account_chart/i18n/sv.po +++ b/addons/account_chart/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ta.po b/addons/account_chart/i18n/ta.po index cef0e4ce331..ef36a8e42f6 100644 --- a/addons/account_chart/i18n/ta.po +++ b/addons/account_chart/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/th.po b/addons/account_chart/i18n/th.po index ad65e2deabe..487693f9e49 100644 --- a/addons/account_chart/i18n/th.po +++ b/addons/account_chart/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/tr.po b/addons/account_chart/i18n/tr.po index d602676bce4..53b8f63629c 100644 --- a/addons/account_chart/i18n/tr.po +++ b/addons/account_chart/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/uk.po b/addons/account_chart/i18n/uk.po index 3de82751fc7..0e32b6b1830 100644 --- a/addons/account_chart/i18n/uk.po +++ b/addons/account_chart/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/vi.po b/addons/account_chart/i18n/vi.po index b8721504c2a..7f876a60e41 100644 --- a/addons/account_chart/i18n/vi.po +++ b/addons/account_chart/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/zh_CN.po b/addons/account_chart/i18n/zh_CN.po index b0c95abefa3..b89f3501a38 100644 --- a/addons/account_chart/i18n/zh_CN.po +++ b/addons/account_chart/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/zh_TW.po b/addons/account_chart/i18n/zh_TW.po index b66ebc71f8e..e848b6e72ab 100644 --- a/addons/account_chart/i18n/zh_TW.po +++ b/addons/account_chart/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:47+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_check_writing/i18n/ar.po b/addons/account_check_writing/i18n/ar.po index ec51003fb1a..309d6146f5c 100644 --- a/addons/account_check_writing/i18n/ar.po +++ b/addons/account_check_writing/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/bs.po b/addons/account_check_writing/i18n/bs.po index 3d66bf06a44..a6156eef7af 100644 --- a/addons/account_check_writing/i18n/bs.po +++ b/addons/account_check_writing/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-09 05:35+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/cs.po b/addons/account_check_writing/i18n/cs.po index f893911b0c8..c9269e686d7 100644 --- a/addons/account_check_writing/i18n/cs.po +++ b/addons/account_check_writing/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/de.po b/addons/account_check_writing/i18n/de.po index 6de2a22d145..30f9596c26a 100644 --- a/addons/account_check_writing/i18n/de.po +++ b/addons/account_check_writing/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/en_GB.po b/addons/account_check_writing/i18n/en_GB.po index 2cf7a2b6383..f17251b4b85 100644 --- a/addons/account_check_writing/i18n/en_GB.po +++ b/addons/account_check_writing/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es.po b/addons/account_check_writing/i18n/es.po index 43be59b9d92..ad4579a94b6 100644 --- a/addons/account_check_writing/i18n/es.po +++ b/addons/account_check_writing/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_CR.po b/addons/account_check_writing/i18n/es_CR.po index 4c225a7268e..f9589febc47 100644 --- a/addons/account_check_writing/i18n/es_CR.po +++ b/addons/account_check_writing/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_EC.po b/addons/account_check_writing/i18n/es_EC.po index 220d6e0bb90..e97b9312274 100644 --- a/addons/account_check_writing/i18n/es_EC.po +++ b/addons/account_check_writing/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_MX.po b/addons/account_check_writing/i18n/es_MX.po index 0ed078b7a05..b1a5fe93367 100644 --- a/addons/account_check_writing/i18n/es_MX.po +++ b/addons/account_check_writing/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/fi.po b/addons/account_check_writing/i18n/fi.po index a4b7ea5ade9..92cdf325470 100644 --- a/addons/account_check_writing/i18n/fi.po +++ b/addons/account_check_writing/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/fr.po b/addons/account_check_writing/i18n/fr.po index d599a6863c9..2bcf1f710b9 100644 --- a/addons/account_check_writing/i18n/fr.po +++ b/addons/account_check_writing/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/gu.po b/addons/account_check_writing/i18n/gu.po index 8abe464a015..55d0618f11e 100644 --- a/addons/account_check_writing/i18n/gu.po +++ b/addons/account_check_writing/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/hr.po b/addons/account_check_writing/i18n/hr.po index dccfd663db4..9073f7dabc8 100644 --- a/addons/account_check_writing/i18n/hr.po +++ b/addons/account_check_writing/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/hu.po b/addons/account_check_writing/i18n/hu.po index bd26cda690e..928feeca275 100644 --- a/addons/account_check_writing/i18n/hu.po +++ b/addons/account_check_writing/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ja.po b/addons/account_check_writing/i18n/ja.po index 0bc6996e6d7..7d95fb942d6 100644 --- a/addons/account_check_writing/i18n/ja.po +++ b/addons/account_check_writing/i18n/ja.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-11-21 02:48+0000\n" +"Last-Translator: Yoshi Tashiro \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -91,7 +91,7 @@ msgstr "仕訳帳" #: model:ir.actions.act_window,name:account_check_writing.action_write_check #: model:ir.ui.menu,name:account_check_writing.menu_action_write_check msgid "Write Checks" -msgstr "小切手の振出" +msgstr "小切手作成" #. module: account_check_writing #: report:account.print.check.bottom:0 diff --git a/addons/account_check_writing/i18n/lt.po b/addons/account_check_writing/i18n/lt.po index 5bf87847a8b..7433928447e 100644 --- a/addons/account_check_writing/i18n/lt.po +++ b/addons/account_check_writing/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/mk.po b/addons/account_check_writing/i18n/mk.po index 4c96497b7e3..cfecf2cf68a 100644 --- a/addons/account_check_writing/i18n/mk.po +++ b/addons/account_check_writing/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/mn.po b/addons/account_check_writing/i18n/mn.po index 6d0e2e6eb0f..17f7f156b45 100644 --- a/addons/account_check_writing/i18n/mn.po +++ b/addons/account_check_writing/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/nb.po b/addons/account_check_writing/i18n/nb.po index ec7b565a7da..9775b494a86 100644 --- a/addons/account_check_writing/i18n/nb.po +++ b/addons/account_check_writing/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/nl.po b/addons/account_check_writing/i18n/nl.po index 817e25fd664..a90f253c9f9 100644 --- a/addons/account_check_writing/i18n/nl.po +++ b/addons/account_check_writing/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-25 14:36+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pl.po b/addons/account_check_writing/i18n/pl.po index c18d3d8937f..50675187df4 100644 --- a/addons/account_check_writing/i18n/pl.po +++ b/addons/account_check_writing/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/pt.po b/addons/account_check_writing/i18n/pt.po index 5949e74109f..d6831d8e324 100644 --- a/addons/account_check_writing/i18n/pt.po +++ b/addons/account_check_writing/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pt_BR.po b/addons/account_check_writing/i18n/pt_BR.po index ad86ce9de21..b1899001a32 100644 --- a/addons/account_check_writing/i18n/pt_BR.po +++ b/addons/account_check_writing/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ro.po b/addons/account_check_writing/i18n/ro.po index c5ea312958e..75015775658 100644 --- a/addons/account_check_writing/i18n/ro.po +++ b/addons/account_check_writing/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-21 06:53+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ru.po b/addons/account_check_writing/i18n/ru.po index 45f90b5a095..1ebbdd85ed2 100644 --- a/addons/account_check_writing/i18n/ru.po +++ b/addons/account_check_writing/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sl.po b/addons/account_check_writing/i18n/sl.po index 44737ab3295..af036cbc0d7 100644 --- a/addons/account_check_writing/i18n/sl.po +++ b/addons/account_check_writing/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sr@latin.po b/addons/account_check_writing/i18n/sr@latin.po index 0e729a0d7a8..ab061e94f3b 100644 --- a/addons/account_check_writing/i18n/sr@latin.po +++ b/addons/account_check_writing/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sv.po b/addons/account_check_writing/i18n/sv.po index 8687f24f1d9..cba37bc7e40 100644 --- a/addons/account_check_writing/i18n/sv.po +++ b/addons/account_check_writing/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/tr.po b/addons/account_check_writing/i18n/tr.po index 0e74b211f67..6e4ea76def1 100644 --- a/addons/account_check_writing/i18n/tr.po +++ b/addons/account_check_writing/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: tr\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/zh_CN.po b/addons/account_check_writing/i18n/zh_CN.po index d2974efcfa0..46dd18a70e2 100644 --- a/addons/account_check_writing/i18n/zh_CN.po +++ b/addons/account_check_writing/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-08-09 15:14+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-10 05:37+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/zh_TW.po b/addons/account_check_writing/i18n/zh_TW.po index b2498231ca8..5926ad77ae0 100644 --- a/addons/account_check_writing/i18n/zh_TW.po +++ b/addons/account_check_writing/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_followup/i18n/ar.po b/addons/account_followup/i18n/ar.po index 701221118aa..886566b43bb 100644 --- a/addons/account_followup/i18n/ar.po +++ b/addons/account_followup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/bg.po b/addons/account_followup/i18n/bg.po index ad2988fbcc0..9d51ecc481a 100644 --- a/addons/account_followup/i18n/bg.po +++ b/addons/account_followup/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/bs.po b/addons/account_followup/i18n/bs.po index 3895d9339f1..7bb76599209 100644 --- a/addons/account_followup/i18n/bs.po +++ b/addons/account_followup/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-30 05:54+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ca.po b/addons/account_followup/i18n/ca.po index d03ff233346..e8bf14f391e 100644 --- a/addons/account_followup/i18n/ca.po +++ b/addons/account_followup/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/cs.po b/addons/account_followup/i18n/cs.po index c71924a14bb..feaf42056f4 100644 --- a/addons/account_followup/i18n/cs.po +++ b/addons/account_followup/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/da.po b/addons/account_followup/i18n/da.po index 4d669333602..9db39e620ed 100644 --- a/addons/account_followup/i18n/da.po +++ b/addons/account_followup/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/de.po b/addons/account_followup/i18n/de.po index de637ff68a7..7d023b08403 100644 --- a/addons/account_followup/i18n/de.po +++ b/addons/account_followup/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/el.po b/addons/account_followup/i18n/el.po index 01936b29e06..b7e6ee6b33e 100644 --- a/addons/account_followup/i18n/el.po +++ b/addons/account_followup/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/en_GB.po b/addons/account_followup/i18n/en_GB.po index 3f57ea117c0..1587b6af99a 100644 --- a/addons/account_followup/i18n/en_GB.po +++ b/addons/account_followup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es.po b/addons/account_followup/i18n/es.po index 5bf52dc6e76..98467588e96 100644 --- a/addons/account_followup/i18n/es.po +++ b/addons/account_followup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_AR.po b/addons/account_followup/i18n/es_AR.po index 0892f122f4f..c9b4f523ff9 100644 --- a/addons/account_followup/i18n/es_AR.po +++ b/addons/account_followup/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_CR.po b/addons/account_followup/i18n/es_CR.po index f0ce7357268..b70629d3190 100644 --- a/addons/account_followup/i18n/es_CR.po +++ b/addons/account_followup/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_EC.po b/addons/account_followup/i18n/es_EC.po index 0987637017d..18f2fcd6bcd 100644 --- a/addons/account_followup/i18n/es_EC.po +++ b/addons/account_followup/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_PY.po b/addons/account_followup/i18n/es_PY.po index 93885597c7d..48b93df603b 100644 --- a/addons/account_followup/i18n/es_PY.po +++ b/addons/account_followup/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/et.po b/addons/account_followup/i18n/et.po index 55a7255dd07..c2d2e9e6c14 100644 --- a/addons/account_followup/i18n/et.po +++ b/addons/account_followup/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fa.po b/addons/account_followup/i18n/fa.po index 905071fa0dd..43c3d7a2b4a 100644 --- a/addons/account_followup/i18n/fa.po +++ b/addons/account_followup/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fi.po b/addons/account_followup/i18n/fi.po index 83036783e33..15823621211 100644 --- a/addons/account_followup/i18n/fi.po +++ b/addons/account_followup/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fr.po b/addons/account_followup/i18n/fr.po index b5a706fe0a6..49a6347b511 100644 --- a/addons/account_followup/i18n/fr.po +++ b/addons/account_followup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/gl.po b/addons/account_followup/i18n/gl.po index e45696785e0..6bafac9deac 100644 --- a/addons/account_followup/i18n/gl.po +++ b/addons/account_followup/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/hr.po b/addons/account_followup/i18n/hr.po index 922945f8137..27454be8382 100644 --- a/addons/account_followup/i18n/hr.po +++ b/addons/account_followup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/hu.po b/addons/account_followup/i18n/hu.po index f26f56c8acc..27cf274837f 100644 --- a/addons/account_followup/i18n/hu.po +++ b/addons/account_followup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/id.po b/addons/account_followup/i18n/id.po index 34e0bcfab34..e6d2184b5f7 100644 --- a/addons/account_followup/i18n/id.po +++ b/addons/account_followup/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/it.po b/addons/account_followup/i18n/it.po index 630e0fad333..4c5ce769f7a 100644 --- a/addons/account_followup/i18n/it.po +++ b/addons/account_followup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ja.po b/addons/account_followup/i18n/ja.po index 07bb5225514..62f19a2f2a3 100644 --- a/addons/account_followup/i18n/ja.po +++ b/addons/account_followup/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ko.po b/addons/account_followup/i18n/ko.po index d534ba443e0..841796f6bd8 100644 --- a/addons/account_followup/i18n/ko.po +++ b/addons/account_followup/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/lt.po b/addons/account_followup/i18n/lt.po index 0521a7ab1f4..c3a6b9a6298 100644 --- a/addons/account_followup/i18n/lt.po +++ b/addons/account_followup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/mk.po b/addons/account_followup/i18n/mk.po index 25db461f43b..30d6b2fbb2b 100644 --- a/addons/account_followup/i18n/mk.po +++ b/addons/account_followup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_followup diff --git a/addons/account_followup/i18n/mn.po b/addons/account_followup/i18n/mn.po index ea3ff252577..ce88e0a3b50 100644 --- a/addons/account_followup/i18n/mn.po +++ b/addons/account_followup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/nb.po b/addons/account_followup/i18n/nb.po index f4831b393b7..477dd4718dd 100644 --- a/addons/account_followup/i18n/nb.po +++ b/addons/account_followup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/nl.po b/addons/account_followup/i18n/nl.po index b9adb98afc3..7677027a68b 100644 --- a/addons/account_followup/i18n/nl.po +++ b/addons/account_followup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-15 05:18+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/nl_BE.po b/addons/account_followup/i18n/nl_BE.po index 756fe31f11e..38ca7dc820f 100644 --- a/addons/account_followup/i18n/nl_BE.po +++ b/addons/account_followup/i18n/nl_BE.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-04-29 18:37+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \n" "Language-Team: Els Van Vossel\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: nl\n" #. module: account_followup diff --git a/addons/account_followup/i18n/oc.po b/addons/account_followup/i18n/oc.po index 9a88f5a8159..d821e2fd992 100644 --- a/addons/account_followup/i18n/oc.po +++ b/addons/account_followup/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/pl.po b/addons/account_followup/i18n/pl.po index bd98008687b..10c22770c1b 100644 --- a/addons/account_followup/i18n/pl.po +++ b/addons/account_followup/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/pt.po b/addons/account_followup/i18n/pt.po index d73750c644f..fd6bdb3abce 100644 --- a/addons/account_followup/i18n/pt.po +++ b/addons/account_followup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/pt_BR.po b/addons/account_followup/i18n/pt_BR.po index a0053426f42..2753932818a 100644 --- a/addons/account_followup/i18n/pt_BR.po +++ b/addons/account_followup/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ro.po b/addons/account_followup/i18n/ro.po index 1317fff9e43..abf4d2f9920 100644 --- a/addons/account_followup/i18n/ro.po +++ b/addons/account_followup/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:19+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ru.po b/addons/account_followup/i18n/ru.po index d3c75d31e84..cf5aa467b4b 100644 --- a/addons/account_followup/i18n/ru.po +++ b/addons/account_followup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-14 06:11+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sl.po b/addons/account_followup/i18n/sl.po index d7d4429afdf..9d106967445 100644 --- a/addons/account_followup/i18n/sl.po +++ b/addons/account_followup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sq.po b/addons/account_followup/i18n/sq.po index 493afbcc42e..7a1210d1e71 100644 --- a/addons/account_followup/i18n/sq.po +++ b/addons/account_followup/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sr.po b/addons/account_followup/i18n/sr.po index 62d51645208..178b870bcbc 100644 --- a/addons/account_followup/i18n/sr.po +++ b/addons/account_followup/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sr@latin.po b/addons/account_followup/i18n/sr@latin.po index 109839520cf..58f6bfeba9d 100644 --- a/addons/account_followup/i18n/sr@latin.po +++ b/addons/account_followup/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sv.po b/addons/account_followup/i18n/sv.po index ae8005d5583..288845f9481 100644 --- a/addons/account_followup/i18n/sv.po +++ b/addons/account_followup/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/tlh.po b/addons/account_followup/i18n/tlh.po index 75509bd1222..55adf7cea03 100644 --- a/addons/account_followup/i18n/tlh.po +++ b/addons/account_followup/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/tr.po b/addons/account_followup/i18n/tr.po index 4d92ca6d292..e9ac3bd98e1 100644 --- a/addons/account_followup/i18n/tr.po +++ b/addons/account_followup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/uk.po b/addons/account_followup/i18n/uk.po index afbad7a0650..2ca817baf85 100644 --- a/addons/account_followup/i18n/uk.po +++ b/addons/account_followup/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/vi.po b/addons/account_followup/i18n/vi.po index 7e637d445fe..07ce03edc7b 100644 --- a/addons/account_followup/i18n/vi.po +++ b/addons/account_followup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:58+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/zh_CN.po b/addons/account_followup/i18n/zh_CN.po index 0351d85657e..5713571ee7b 100644 --- a/addons/account_followup/i18n/zh_CN.po +++ b/addons/account_followup/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-03 15:13+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/zh_TW.po b/addons/account_followup/i18n/zh_TW.po index f9ff6431fc0..d340959b07a 100644 --- a/addons/account_followup/i18n/zh_TW.po +++ b/addons/account_followup/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_payment/i18n/am.po b/addons/account_payment/i18n/am.po index 20b036f26fe..2a6a6ee8393 100644 --- a/addons/account_payment/i18n/am.po +++ b/addons/account_payment/i18n/am.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ar.po b/addons/account_payment/i18n/ar.po index 0af5bca6872..9ad29c1f5c0 100644 --- a/addons/account_payment/i18n/ar.po +++ b/addons/account_payment/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/bg.po b/addons/account_payment/i18n/bg.po index 5fd5adce474..5df58c38359 100644 --- a/addons/account_payment/i18n/bg.po +++ b/addons/account_payment/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/bs.po b/addons/account_payment/i18n/bs.po index 0cc14808916..d8afbddf182 100644 --- a/addons/account_payment/i18n/bs.po +++ b/addons/account_payment/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-30 05:54+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ca.po b/addons/account_payment/i18n/ca.po index 814585dbf8b..3aceccf2248 100644 --- a/addons/account_payment/i18n/ca.po +++ b/addons/account_payment/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/cs.po b/addons/account_payment/i18n/cs.po index 40378b5a476..af68ffe0e25 100644 --- a/addons/account_payment/i18n/cs.po +++ b/addons/account_payment/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/da.po b/addons/account_payment/i18n/da.po index 48f6ba92470..7eb734658c0 100644 --- a/addons/account_payment/i18n/da.po +++ b/addons/account_payment/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:50+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/de.po b/addons/account_payment/i18n/de.po index eafdc00f2ba..303c3af394b 100644 --- a/addons/account_payment/i18n/de.po +++ b/addons/account_payment/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-09 05:48+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/el.po b/addons/account_payment/i18n/el.po index 849137f7701..3c07fe10d37 100644 --- a/addons/account_payment/i18n/el.po +++ b/addons/account_payment/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/en_GB.po b/addons/account_payment/i18n/en_GB.po index 7aeccfb3f91..19866685018 100644 --- a/addons/account_payment/i18n/en_GB.po +++ b/addons/account_payment/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es.po b/addons/account_payment/i18n/es.po index a18984da5e4..485b4c5ee7c 100644 --- a/addons/account_payment/i18n/es.po +++ b/addons/account_payment/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_AR.po b/addons/account_payment/i18n/es_AR.po index 06fa1f52af0..39ce198b2a1 100644 --- a/addons/account_payment/i18n/es_AR.po +++ b/addons/account_payment/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_CL.po b/addons/account_payment/i18n/es_CL.po index 02606201c50..652a877f2a2 100644 --- a/addons/account_payment/i18n/es_CL.po +++ b/addons/account_payment/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_CR.po b/addons/account_payment/i18n/es_CR.po index 91250d6a1c1..962c7868fa5 100644 --- a/addons/account_payment/i18n/es_CR.po +++ b/addons/account_payment/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_EC.po b/addons/account_payment/i18n/es_EC.po index 12ad45ab4c3..fe6dfa13dbb 100644 --- a/addons/account_payment/i18n/es_EC.po +++ b/addons/account_payment/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_PY.po b/addons/account_payment/i18n/es_PY.po index de616be197f..9b4f194b7e3 100644 --- a/addons/account_payment/i18n/es_PY.po +++ b/addons/account_payment/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/et.po b/addons/account_payment/i18n/et.po index ab2fd1a7027..950ee176073 100644 --- a/addons/account_payment/i18n/et.po +++ b/addons/account_payment/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 05:25+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fa.po b/addons/account_payment/i18n/fa.po index f4c34033ce2..156525e07a6 100644 --- a/addons/account_payment/i18n/fa.po +++ b/addons/account_payment/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fi.po b/addons/account_payment/i18n/fi.po index 8176acc44af..a5ade3f31f8 100644 --- a/addons/account_payment/i18n/fi.po +++ b/addons/account_payment/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fr.po b/addons/account_payment/i18n/fr.po index 64d9c61c5ef..154a9164006 100644 --- a/addons/account_payment/i18n/fr.po +++ b/addons/account_payment/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/gl.po b/addons/account_payment/i18n/gl.po index 116e92e26fd..9487dc6119a 100644 --- a/addons/account_payment/i18n/gl.po +++ b/addons/account_payment/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hi.po b/addons/account_payment/i18n/hi.po index 6bf7023c0be..46d7041379d 100644 --- a/addons/account_payment/i18n/hi.po +++ b/addons/account_payment/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hr.po b/addons/account_payment/i18n/hr.po index b18ecb2565d..fd5d6627b50 100644 --- a/addons/account_payment/i18n/hr.po +++ b/addons/account_payment/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hu.po b/addons/account_payment/i18n/hu.po index e49dfc68e52..2894ff86ec0 100644 --- a/addons/account_payment/i18n/hu.po +++ b/addons/account_payment/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/id.po b/addons/account_payment/i18n/id.po index dc527da9743..6436b3265e6 100644 --- a/addons/account_payment/i18n/id.po +++ b/addons/account_payment/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/it.po b/addons/account_payment/i18n/it.po index 589f52988a8..0e690d3ed22 100644 --- a/addons/account_payment/i18n/it.po +++ b/addons/account_payment/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ja.po b/addons/account_payment/i18n/ja.po index a616de11cc0..0053d052865 100644 --- a/addons/account_payment/i18n/ja.po +++ b/addons/account_payment/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-23 05:22+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ko.po b/addons/account_payment/i18n/ko.po index 53b30e21312..ec02df23f70 100644 --- a/addons/account_payment/i18n/ko.po +++ b/addons/account_payment/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/lt.po b/addons/account_payment/i18n/lt.po index 36367a2adf5..dd618e71f81 100644 --- a/addons/account_payment/i18n/lt.po +++ b/addons/account_payment/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-22 05:39+0000\n" -"X-Generator: Launchpad (build 16734)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/lv.po b/addons/account_payment/i18n/lv.po index df8179d03b4..a07eca6987d 100644 --- a/addons/account_payment/i18n/lv.po +++ b/addons/account_payment/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/mk.po b/addons/account_payment/i18n/mk.po index 360f72e7065..56636e8e373 100644 --- a/addons/account_payment/i18n/mk.po +++ b/addons/account_payment/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_payment diff --git a/addons/account_payment/i18n/mn.po b/addons/account_payment/i18n/mn.po index 06e95842281..36a6360c161 100644 --- a/addons/account_payment/i18n/mn.po +++ b/addons/account_payment/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nb.po b/addons/account_payment/i18n/nb.po index 5a77e41e0d0..bfccb799fce 100644 --- a/addons/account_payment/i18n/nb.po +++ b/addons/account_payment/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nl.po b/addons/account_payment/i18n/nl.po index 447bba3941b..274f41ea092 100644 --- a/addons/account_payment/i18n/nl.po +++ b/addons/account_payment/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nl_BE.po b/addons/account_payment/i18n/nl_BE.po index a8a9dae9de6..0366aae1b49 100644 --- a/addons/account_payment/i18n/nl_BE.po +++ b/addons/account_payment/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/oc.po b/addons/account_payment/i18n/oc.po index 4d41e4f7c29..f56bbdfd8e2 100644 --- a/addons/account_payment/i18n/oc.po +++ b/addons/account_payment/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pl.po b/addons/account_payment/i18n/pl.po index 9827bb4fa8a..e59b2e56d25 100644 --- a/addons/account_payment/i18n/pl.po +++ b/addons/account_payment/i18n/pl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-15 14:32+0000\n" +"PO-Revision-Date: 2013-11-20 18:05+0000\n" "Last-Translator: Mirosław Bojanowicz \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_payment @@ -660,7 +660,7 @@ msgstr "Informacja zapisu" #. module: account_payment #: model:ir.model,name:account_payment.model_payment_order_create msgid "payment.order.create" -msgstr "" +msgstr "payment.order.create" #. module: account_payment #: field:payment.line,order_id:0 diff --git a/addons/account_payment/i18n/pt.po b/addons/account_payment/i18n/pt.po index 52bf72f946a..e10e20b243b 100644 --- a/addons/account_payment/i18n/pt.po +++ b/addons/account_payment/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pt_BR.po b/addons/account_payment/i18n/pt_BR.po index f2db98534e6..0d4d01f4828 100644 --- a/addons/account_payment/i18n/pt_BR.po +++ b/addons/account_payment/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ro.po b/addons/account_payment/i18n/ro.po index 757c349ffb6..adc98756001 100644 --- a/addons/account_payment/i18n/ro.po +++ b/addons/account_payment/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:19+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ru.po b/addons/account_payment/i18n/ru.po index 98f7c72b44f..383f4006530 100644 --- a/addons/account_payment/i18n/ru.po +++ b/addons/account_payment/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-17 07:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sl.po b/addons/account_payment/i18n/sl.po index ca45ac6daba..52d7cdb92bb 100644 --- a/addons/account_payment/i18n/sl.po +++ b/addons/account_payment/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sq.po b/addons/account_payment/i18n/sq.po index dcd574bf087..c5d2ea0d2a1 100644 --- a/addons/account_payment/i18n/sq.po +++ b/addons/account_payment/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:48+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sr.po b/addons/account_payment/i18n/sr.po index 10cf9a21cf5..1451f13a711 100644 --- a/addons/account_payment/i18n/sr.po +++ b/addons/account_payment/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sr@latin.po b/addons/account_payment/i18n/sr@latin.po index e3f1d94f9bd..780cff29761 100644 --- a/addons/account_payment/i18n/sr@latin.po +++ b/addons/account_payment/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sv.po b/addons/account_payment/i18n/sv.po index afbd01a59b5..e7254eae119 100644 --- a/addons/account_payment/i18n/sv.po +++ b/addons/account_payment/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/tlh.po b/addons/account_payment/i18n/tlh.po index 5bc8477e7bb..4b459c77705 100644 --- a/addons/account_payment/i18n/tlh.po +++ b/addons/account_payment/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/tr.po b/addons/account_payment/i18n/tr.po index d4cf22bee29..5b7fd358824 100644 --- a/addons/account_payment/i18n/tr.po +++ b/addons/account_payment/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/uk.po b/addons/account_payment/i18n/uk.po index fd9feab3f1f..bfbd80826fe 100644 --- a/addons/account_payment/i18n/uk.po +++ b/addons/account_payment/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/vi.po b/addons/account_payment/i18n/vi.po index 997e7a059dc..670724db923 100644 --- a/addons/account_payment/i18n/vi.po +++ b/addons/account_payment/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/zh_CN.po b/addons/account_payment/i18n/zh_CN.po index a3c79b8d897..3f8b32e4748 100644 --- a/addons/account_payment/i18n/zh_CN.po +++ b/addons/account_payment/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -120,7 +120,7 @@ msgstr "填充付款声明" msgid "" "You cannot cancel an invoice which has already been imported in a payment " "order. Remove it from the following payment order : %s." -msgstr "" +msgstr "不可取消已被引入付款单据的发票。请先移除下述付款单: %s." #. module: account_payment #: code:addons/account_payment/account_invoice.py:43 diff --git a/addons/account_payment/i18n/zh_TW.po b/addons/account_payment/i18n/zh_TW.po index ce12808adbb..fa7f17b53e6 100644 --- a/addons/account_payment/i18n/zh_TW.po +++ b/addons/account_payment/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_report_company/i18n/bs.po b/addons/account_report_company/i18n/bs.po index 20365dabbd2..fa4806e4c51 100644 --- a/addons/account_report_company/i18n/bs.po +++ b/addons/account_report_company/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-30 05:54+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/cs.po b/addons/account_report_company/i18n/cs.po index 26ca7e8c8ba..b932b44aa76 100644 --- a/addons/account_report_company/i18n/cs.po +++ b/addons/account_report_company/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/da.po b/addons/account_report_company/i18n/da.po index 5432fd8391f..a61c5054ec3 100644 --- a/addons/account_report_company/i18n/da.po +++ b/addons/account_report_company/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-16 05:14+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/de.po b/addons/account_report_company/i18n/de.po index 1bd6d3a32a6..13045fac664 100644 --- a/addons/account_report_company/i18n/de.po +++ b/addons/account_report_company/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-09 05:49+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/en_GB.po b/addons/account_report_company/i18n/en_GB.po index db800a8ad67..3a49a642cee 100644 --- a/addons/account_report_company/i18n/en_GB.po +++ b/addons/account_report_company/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/es.po b/addons/account_report_company/i18n/es.po index 55d80d36d64..f0ad9f1f2e3 100644 --- a/addons/account_report_company/i18n/es.po +++ b/addons/account_report_company/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/hr.po b/addons/account_report_company/i18n/hr.po index 525119cd006..3b226c15d41 100644 --- a/addons/account_report_company/i18n/hr.po +++ b/addons/account_report_company/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-28 05:54+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/hu.po b/addons/account_report_company/i18n/hu.po index 83a10b45651..cc79cf82d7a 100644 --- a/addons/account_report_company/i18n/hu.po +++ b/addons/account_report_company/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/it.po b/addons/account_report_company/i18n/it.po index d1cd42fb420..a8f1f8360c0 100644 --- a/addons/account_report_company/i18n/it.po +++ b/addons/account_report_company/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-23 14:41+0000\n" -"Last-Translator: Leonardo Di Benedetto \n" +"Last-Translator: ICT Consulting \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/nl.po b/addons/account_report_company/i18n/nl.po index e9f165629a6..00f941013f0 100644 --- a/addons/account_report_company/i18n/nl.po +++ b/addons/account_report_company/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-08 10:16+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/pl.po b/addons/account_report_company/i18n/pl.po index 08cda9a1920..642dd693b50 100644 --- a/addons/account_report_company/i18n/pl.po +++ b/addons/account_report_company/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_report_company diff --git a/addons/account_report_company/i18n/pt.po b/addons/account_report_company/i18n/pt.po index 48a9e4892c8..6261295d7ed 100644 --- a/addons/account_report_company/i18n/pt.po +++ b/addons/account_report_company/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/pt_BR.po b/addons/account_report_company/i18n/pt_BR.po index 1854b58fc81..13cc80ce3ec 100644 --- a/addons/account_report_company/i18n/pt_BR.po +++ b/addons/account_report_company/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-01 04:52+0000\n" -"X-Generator: Launchpad (build 16750)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/ru.po b/addons/account_report_company/i18n/ru.po index c1f08689255..28148492e9d 100644 --- a/addons/account_report_company/i18n/ru.po +++ b/addons/account_report_company/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-17 07:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/sl.po b/addons/account_report_company/i18n/sl.po index 67c4c52cbe8..d725a8c6a39 100644 --- a/addons/account_report_company/i18n/sl.po +++ b/addons/account_report_company/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/tr.po b/addons/account_report_company/i18n/tr.po index 9070542e02d..17271b69ea6 100644 --- a/addons/account_report_company/i18n/tr.po +++ b/addons/account_report_company/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/vi.po b/addons/account_report_company/i18n/vi.po index 97f6253f0a8..469cf53667a 100644 --- a/addons/account_report_company/i18n/vi.po +++ b/addons/account_report_company/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_report_company/i18n/zh_CN.po b/addons/account_report_company/i18n/zh_CN.po index 6607595fec6..d99f4d421f2 100644 --- a/addons/account_report_company/i18n/zh_CN.po +++ b/addons/account_report_company/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-24 10:11+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_report_company #: field:res.partner,display_name:0 diff --git a/addons/account_sequence/i18n/ar.po b/addons/account_sequence/i18n/ar.po index 4155ddf108b..51728f60b6d 100644 --- a/addons/account_sequence/i18n/ar.po +++ b/addons/account_sequence/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/bg.po b/addons/account_sequence/i18n/bg.po index 70b003ea537..6daf1adfb5e 100644 --- a/addons/account_sequence/i18n/bg.po +++ b/addons/account_sequence/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/bs.po b/addons/account_sequence/i18n/bs.po index 2f3ae081038..7b544ddb1a3 100644 --- a/addons/account_sequence/i18n/bs.po +++ b/addons/account_sequence/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-30 05:54+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ca.po b/addons/account_sequence/i18n/ca.po index 71becbc2091..f392a5993a9 100644 --- a/addons/account_sequence/i18n/ca.po +++ b/addons/account_sequence/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/cs.po b/addons/account_sequence/i18n/cs.po index b47101d36cf..d35d9a9d6b4 100644 --- a/addons/account_sequence/i18n/cs.po +++ b/addons/account_sequence/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/da.po b/addons/account_sequence/i18n/da.po index 8da165d4ef1..451de933ed9 100644 --- a/addons/account_sequence/i18n/da.po +++ b/addons/account_sequence/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/de.po b/addons/account_sequence/i18n/de.po index e4e4f399477..d77a99fcaad 100644 --- a/addons/account_sequence/i18n/de.po +++ b/addons/account_sequence/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/el.po b/addons/account_sequence/i18n/el.po index aa32ca199f8..341fde27058 100644 --- a/addons/account_sequence/i18n/el.po +++ b/addons/account_sequence/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/en_GB.po b/addons/account_sequence/i18n/en_GB.po index ba7cb45c964..1092199dda0 100644 --- a/addons/account_sequence/i18n/en_GB.po +++ b/addons/account_sequence/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es.po b/addons/account_sequence/i18n/es.po index 34ad5e80cb2..5555e9d62b2 100644 --- a/addons/account_sequence/i18n/es.po +++ b/addons/account_sequence/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_CR.po b/addons/account_sequence/i18n/es_CR.po index 258954d8907..2d2a3f422b0 100644 --- a/addons/account_sequence/i18n/es_CR.po +++ b/addons/account_sequence/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_EC.po b/addons/account_sequence/i18n/es_EC.po index 7793fed2487..417df6821ec 100644 --- a/addons/account_sequence/i18n/es_EC.po +++ b/addons/account_sequence/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_PY.po b/addons/account_sequence/i18n/es_PY.po index c2c98b32f78..55c7dfb4861 100644 --- a/addons/account_sequence/i18n/es_PY.po +++ b/addons/account_sequence/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/fa.po b/addons/account_sequence/i18n/fa.po index 46143284451..a4b151e451a 100644 --- a/addons/account_sequence/i18n/fa.po +++ b/addons/account_sequence/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/fr.po b/addons/account_sequence/i18n/fr.po index 08513108dbc..7cf7b41c56f 100644 --- a/addons/account_sequence/i18n/fr.po +++ b/addons/account_sequence/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/gl.po b/addons/account_sequence/i18n/gl.po index c52e0d2f763..e0650fbc3fa 100644 --- a/addons/account_sequence/i18n/gl.po +++ b/addons/account_sequence/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/hr.po b/addons/account_sequence/i18n/hr.po index 527e4b23be9..0430876ff61 100644 --- a/addons/account_sequence/i18n/hr.po +++ b/addons/account_sequence/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/hu.po b/addons/account_sequence/i18n/hu.po index 589e1a0d5a3..24d0597e3c2 100644 --- a/addons/account_sequence/i18n/hu.po +++ b/addons/account_sequence/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/id.po b/addons/account_sequence/i18n/id.po index abb95db30f6..9d24de3e12d 100644 --- a/addons/account_sequence/i18n/id.po +++ b/addons/account_sequence/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/it.po b/addons/account_sequence/i18n/it.po index 4e1ecb6a7c1..4d1e9ef0946 100644 --- a/addons/account_sequence/i18n/it.po +++ b/addons/account_sequence/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ja.po b/addons/account_sequence/i18n/ja.po index 83fae2562a9..b2d3d96fc83 100644 --- a/addons/account_sequence/i18n/ja.po +++ b/addons/account_sequence/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/lv.po b/addons/account_sequence/i18n/lv.po index 7829bd0fda0..268eff45e89 100644 --- a/addons/account_sequence/i18n/lv.po +++ b/addons/account_sequence/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/mk.po b/addons/account_sequence/i18n/mk.po index 0721d5df455..03c79dd07e1 100644 --- a/addons/account_sequence/i18n/mk.po +++ b/addons/account_sequence/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/mn.po b/addons/account_sequence/i18n/mn.po index 7b2d52d0271..6ea31c74042 100644 --- a/addons/account_sequence/i18n/mn.po +++ b/addons/account_sequence/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nb.po b/addons/account_sequence/i18n/nb.po index 438aff247b7..92ba498bcd4 100644 --- a/addons/account_sequence/i18n/nb.po +++ b/addons/account_sequence/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nl.po b/addons/account_sequence/i18n/nl.po index b42c88701dd..bda650c111b 100644 --- a/addons/account_sequence/i18n/nl.po +++ b/addons/account_sequence/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-04-12 21:23+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nl_BE.po b/addons/account_sequence/i18n/nl_BE.po index 703d0233a11..0ccae60cab1 100644 --- a/addons/account_sequence/i18n/nl_BE.po +++ b/addons/account_sequence/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pl.po b/addons/account_sequence/i18n/pl.po index a554f963710..55326f2f8bd 100644 --- a/addons/account_sequence/i18n/pl.po +++ b/addons/account_sequence/i18n/pl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-05-27 10:03+0000\n" -"Last-Translator: bajkar \n" +"PO-Revision-Date: 2013-11-20 18:03+0000\n" +"Last-Translator: Mirosław Bojanowicz \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 @@ -141,7 +141,7 @@ msgstr "" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_sequence_installer msgid "account.sequence.installer" -msgstr "" +msgstr "account.sequence.installer" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_journal diff --git a/addons/account_sequence/i18n/pt.po b/addons/account_sequence/i18n/pt.po index 6ec55eaf3e5..f255bd9d83e 100644 --- a/addons/account_sequence/i18n/pt.po +++ b/addons/account_sequence/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pt_BR.po b/addons/account_sequence/i18n/pt_BR.po index 2efdb9a0912..367c625bedf 100644 --- a/addons/account_sequence/i18n/pt_BR.po +++ b/addons/account_sequence/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ro.po b/addons/account_sequence/i18n/ro.po index 87ff9a757ee..301c189492d 100644 --- a/addons/account_sequence/i18n/ro.po +++ b/addons/account_sequence/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-13 19:28+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ru.po b/addons/account_sequence/i18n/ru.po index a9393921db8..1af19403b1e 100644 --- a/addons/account_sequence/i18n/ru.po +++ b/addons/account_sequence/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sl.po b/addons/account_sequence/i18n/sl.po index a9e7e270dcb..877eaa10369 100644 --- a/addons/account_sequence/i18n/sl.po +++ b/addons/account_sequence/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sq.po b/addons/account_sequence/i18n/sq.po index a66551c04d6..f2f4662089c 100644 --- a/addons/account_sequence/i18n/sq.po +++ b/addons/account_sequence/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sr@latin.po b/addons/account_sequence/i18n/sr@latin.po index c86a097ab77..470a18d54c3 100644 --- a/addons/account_sequence/i18n/sr@latin.po +++ b/addons/account_sequence/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sv.po b/addons/account_sequence/i18n/sv.po index 5df99f9e4f1..d71bcfe91e1 100644 --- a/addons/account_sequence/i18n/sv.po +++ b/addons/account_sequence/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/tr.po b/addons/account_sequence/i18n/tr.po index 83cc32065a9..c5cf9affa01 100644 --- a/addons/account_sequence/i18n/tr.po +++ b/addons/account_sequence/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/vi.po b/addons/account_sequence/i18n/vi.po index 34acc304c7a..4617a5e6e44 100644 --- a/addons/account_sequence/i18n/vi.po +++ b/addons/account_sequence/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/zh_CN.po b/addons/account_sequence/i18n/zh_CN.po index 80819c4aa18..7119d699a2e 100644 --- a/addons/account_sequence/i18n/zh_CN.po +++ b/addons/account_sequence/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/zh_TW.po b/addons/account_sequence/i18n/zh_TW.po index 1aa3f306e22..9df1907975a 100644 --- a/addons/account_sequence/i18n/zh_TW.po +++ b/addons/account_sequence/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_test/i18n/ar.po b/addons/account_test/i18n/ar.po index 8fbc6b99915..c10a086c4ce 100644 --- a/addons/account_test/i18n/ar.po +++ b/addons/account_test/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/cs.po b/addons/account_test/i18n/cs.po index b0b1f09b5ff..a207f8b947c 100644 --- a/addons/account_test/i18n/cs.po +++ b/addons/account_test/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/da.po b/addons/account_test/i18n/da.po index 6ff19e47f1f..279903b36f5 100644 --- a/addons/account_test/i18n/da.po +++ b/addons/account_test/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/en_GB.po b/addons/account_test/i18n/en_GB.po index 84b9573d486..50c80e28c01 100644 --- a/addons/account_test/i18n/en_GB.po +++ b/addons/account_test/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/es.po b/addons/account_test/i18n/es.po index 0678a2d65cf..44da0878d77 100644 --- a/addons/account_test/i18n/es.po +++ b/addons/account_test/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/fr.po b/addons/account_test/i18n/fr.po index b9c9fb44419..c91f4e9a681 100644 --- a/addons/account_test/i18n/fr.po +++ b/addons/account_test/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/hr.po b/addons/account_test/i18n/hr.po index 2ea605fad73..7471c80e45d 100644 --- a/addons/account_test/i18n/hr.po +++ b/addons/account_test/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/hu.po b/addons/account_test/i18n/hu.po index 7b2ac1d52f0..1bd1542ac8f 100644 --- a/addons/account_test/i18n/hu.po +++ b/addons/account_test/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/it.po b/addons/account_test/i18n/it.po index 617b1e31695..4c7daf8b382 100644 --- a/addons/account_test/i18n/it.po +++ b/addons/account_test/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/mk.po b/addons/account_test/i18n/mk.po index f0ed95c27da..165d5969304 100644 --- a/addons/account_test/i18n/mk.po +++ b/addons/account_test/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_test diff --git a/addons/account_test/i18n/mn.po b/addons/account_test/i18n/mn.po index 6abac37d725..9c510be7022 100644 --- a/addons/account_test/i18n/mn.po +++ b/addons/account_test/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/nb.po b/addons/account_test/i18n/nb.po index ebdd9ca728d..6537bf3ce67 100644 --- a/addons/account_test/i18n/nb.po +++ b/addons/account_test/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/nl.po b/addons/account_test/i18n/nl.po index cc694009547..3f8da54c055 100644 --- a/addons/account_test/i18n/nl.po +++ b/addons/account_test/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-14 11:20+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/pl.po b/addons/account_test/i18n/pl.po index d7ab94dccb8..aefe4128bd2 100644 --- a/addons/account_test/i18n/pl.po +++ b/addons/account_test/i18n/pl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-15 14:25+0000\n" +"PO-Revision-Date: 2013-11-20 18:03+0000\n" "Last-Translator: Mirosław Bojanowicz \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_test @@ -175,7 +175,7 @@ msgstr "Test 6: Status faktur" #. module: account_test #: model:ir.model,name:account_test.model_accounting_assert_test msgid "accounting.assert.test" -msgstr "" +msgstr "accounting.assert.test" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_05 diff --git a/addons/account_test/i18n/pt.po b/addons/account_test/i18n/pt.po index 89da858cd2c..69eb0ebc079 100644 --- a/addons/account_test/i18n/pt.po +++ b/addons/account_test/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/pt_BR.po b/addons/account_test/i18n/pt_BR.po index e5d5e3bf274..13afe72ba98 100644 --- a/addons/account_test/i18n/pt_BR.po +++ b/addons/account_test/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/ro.po b/addons/account_test/i18n/ro.po index b2bda4e5f85..64adf9db3a0 100644 --- a/addons/account_test/i18n/ro.po +++ b/addons/account_test/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/ru.po b/addons/account_test/i18n/ru.po index 62ebf463081..41b6e3f293f 100644 --- a/addons/account_test/i18n/ru.po +++ b/addons/account_test/i18n/ru.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-05 07:16+0000\n" -"Last-Translator: Глория Хрусталёва \n" +"Last-Translator: Глория Хрусталёва \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/sl.po b/addons/account_test/i18n/sl.po index 24288bb5dd7..f6bbe544149 100644 --- a/addons/account_test/i18n/sl.po +++ b/addons/account_test/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/tr.po b/addons/account_test/i18n/tr.po index 9e8154a5de7..7347832ba26 100644 --- a/addons/account_test/i18n/tr.po +++ b/addons/account_test/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/zh_CN.po b/addons/account_test/i18n/zh_CN.po index 149d0832c0e..a29785559e0 100644 --- a/addons/account_test/i18n/zh_CN.po +++ b/addons/account_test/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -106,7 +106,7 @@ msgstr "" #. module: account_test #: view:accounting.assert.test:0 msgid "Description" -msgstr "" +msgstr "描述" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_06_1 @@ -123,13 +123,13 @@ msgstr "" #: model:ir.actions.report.xml,name:account_test.account_assert_test_report #: model:ir.ui.menu,name:account_test.menu_action_license msgid "Accounting Tests" -msgstr "" +msgstr "帐户测试" #. module: account_test #: code:addons/account_test/report/account_test_report.py:74 #, python-format msgid "The test was passed successfully" -msgstr "" +msgstr "测试通过" #. module: account_test #: field:accounting.assert.test,active:0 @@ -155,7 +155,7 @@ msgstr "" #. module: account_test #: field:accounting.assert.test,code_exec:0 msgid "Python code" -msgstr "" +msgstr "Python代码" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_07 @@ -209,7 +209,7 @@ msgstr "" #. module: account_test #: view:accounting.assert.test:0 msgid "Python Code" -msgstr "" +msgstr "Python代码" #. module: account_test #: model:ir.actions.act_window,help:account_test.action_accounting_assert diff --git a/addons/account_voucher/i18n/ar.po b/addons/account_voucher/i18n/ar.po index e10b15359b7..1cd9e6a9315 100644 --- a/addons/account_voucher/i18n/ar.po +++ b/addons/account_voucher/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/bg.po b/addons/account_voucher/i18n/bg.po index af723b7df4c..716ea349350 100644 --- a/addons/account_voucher/i18n/bg.po +++ b/addons/account_voucher/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/bs.po b/addons/account_voucher/i18n/bs.po index 6d64aa0e033..6f9ebcb4da5 100644 --- a/addons/account_voucher/i18n/bs.po +++ b/addons/account_voucher/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-30 05:54+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ca.po b/addons/account_voucher/i18n/ca.po index 8c18f313c02..acc5efbc779 100644 --- a/addons/account_voucher/i18n/ca.po +++ b/addons/account_voucher/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/cs.po b/addons/account_voucher/i18n/cs.po index 3478ffe858e..9f126b74d1e 100644 --- a/addons/account_voucher/i18n/cs.po +++ b/addons/account_voucher/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-23 05:35+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/da.po b/addons/account_voucher/i18n/da.po index daba4ca7167..c30e366f49c 100644 --- a/addons/account_voucher/i18n/da.po +++ b/addons/account_voucher/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:50+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/de.po b/addons/account_voucher/i18n/de.po index 050a313eed5..226f97d3737 100644 --- a/addons/account_voucher/i18n/de.po +++ b/addons/account_voucher/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-09 05:48+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/el.po b/addons/account_voucher/i18n/el.po index beea3d61d9f..0c5aa530dcc 100644 --- a/addons/account_voucher/i18n/el.po +++ b/addons/account_voucher/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/en_GB.po b/addons/account_voucher/i18n/en_GB.po index 6c5935f6c92..2c15aa788ea 100644 --- a/addons/account_voucher/i18n/en_GB.po +++ b/addons/account_voucher/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es.po b/addons/account_voucher/i18n/es.po index 878c500499e..af6b0c289d8 100644 --- a/addons/account_voucher/i18n/es.po +++ b/addons/account_voucher/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -1352,7 +1352,7 @@ msgstr "Empresa" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 msgid "Open Balance" -msgstr "Abrir balance" +msgstr "Saldo Inicial" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1106 diff --git a/addons/account_voucher/i18n/es_AR.po b/addons/account_voucher/i18n/es_AR.po index 622f8d2619a..1d3cff3cabe 100644 --- a/addons/account_voucher/i18n/es_AR.po +++ b/addons/account_voucher/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_CR.po b/addons/account_voucher/i18n/es_CR.po index da62a8b9993..b3f034b27a7 100644 --- a/addons/account_voucher/i18n/es_CR.po +++ b/addons/account_voucher/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_EC.po b/addons/account_voucher/i18n/es_EC.po index 56b37f2dbb0..89eecc521ff 100644 --- a/addons/account_voucher/i18n/es_EC.po +++ b/addons/account_voucher/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_PY.po b/addons/account_voucher/i18n/es_PY.po index 04d98962edd..60733bb0415 100644 --- a/addons/account_voucher/i18n/es_PY.po +++ b/addons/account_voucher/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/et.po b/addons/account_voucher/i18n/et.po index 3a90998605d..bb59a1d815e 100644 --- a/addons/account_voucher/i18n/et.po +++ b/addons/account_voucher/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/fa.po b/addons/account_voucher/i18n/fa.po index 237fa0f8f31..0eb7e12e496 100644 --- a/addons/account_voucher/i18n/fa.po +++ b/addons/account_voucher/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/fr.po b/addons/account_voucher/i18n/fr.po index 3e9924c5e8f..04847394b6f 100644 --- a/addons/account_voucher/i18n/fr.po +++ b/addons/account_voucher/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/gl.po b/addons/account_voucher/i18n/gl.po index ec11d19ee6a..b9ee7448e6b 100644 --- a/addons/account_voucher/i18n/gl.po +++ b/addons/account_voucher/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/gu.po b/addons/account_voucher/i18n/gu.po index b6cdede78ff..abea93e032f 100644 --- a/addons/account_voucher/i18n/gu.po +++ b/addons/account_voucher/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hi.po b/addons/account_voucher/i18n/hi.po index 0c2c9e29395..fbf18610a3a 100644 --- a/addons/account_voucher/i18n/hi.po +++ b/addons/account_voucher/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hr.po b/addons/account_voucher/i18n/hr.po index 93f35161e45..5da5dac0482 100644 --- a/addons/account_voucher/i18n/hr.po +++ b/addons/account_voucher/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-19 05:27+0000\n" -"X-Generator: Launchpad (build 16807)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hu.po b/addons/account_voucher/i18n/hu.po index 3b20e1adeff..432e9512a16 100644 --- a/addons/account_voucher/i18n/hu.po +++ b/addons/account_voucher/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/id.po b/addons/account_voucher/i18n/id.po index f1b867a0574..be9ed1de14a 100644 --- a/addons/account_voucher/i18n/id.po +++ b/addons/account_voucher/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/it.po b/addons/account_voucher/i18n/it.po index c859f375549..102aabd84d8 100644 --- a/addons/account_voucher/i18n/it.po +++ b/addons/account_voucher/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ja.po b/addons/account_voucher/i18n/ja.po index 76e40f52122..20ebc6d341a 100644 --- a/addons/account_voucher/i18n/ja.po +++ b/addons/account_voucher/i18n/ja.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-11 10:10+0000\n" +"PO-Revision-Date: 2013-11-21 02:43+0000\n" "Last-Translator: Yoshi Tashiro \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:22+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -64,7 +64,7 @@ msgstr "バウチャーで明示された金額とバウチャー行で割り当 #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(更新)" #. module: account_voucher #: view:account.voucher:0 @@ -226,7 +226,7 @@ msgstr "" #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "購買領収書" +msgstr "購買記録" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 @@ -322,7 +322,7 @@ msgstr "相手のコメント" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 msgid "Analytic Account" -msgstr "分析アカウント" +msgstr "分析勘定" #. module: account_voucher #: help:account.voucher,message_summary:0 @@ -344,7 +344,7 @@ msgstr "支払情報" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "" +msgstr "(更新)" #. module: account_voucher #: view:account.voucher:0 @@ -504,7 +504,7 @@ msgstr "本当にこの消込を取り消しますか?" #. module: account_voucher #: view:account.voucher:0 msgid "Sales Receipt" -msgstr "領収書" +msgstr "販売記録" #. module: account_voucher #: field:account.voucher,is_multi_currency:0 @@ -793,7 +793,7 @@ msgstr "支払済" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "販売領収書" +msgstr "販売記録" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -898,7 +898,7 @@ msgstr "顧客入金" #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "販売領収分析" +msgstr "販売記録分析" #. module: account_voucher #: view:sale.receipt.report:0 @@ -1112,7 +1112,7 @@ msgstr "計上額" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Receipt" -msgstr "領収書" +msgstr "購買記録" #. module: account_voucher #: help:account.voucher,payment_rate:0 @@ -1267,7 +1267,7 @@ msgstr "非課税金額" #. module: account_voucher #: model:ir.model,name:account_voucher.model_sale_receipt_report msgid "Sales Receipt Statistics" -msgstr "領収書統計" +msgstr "販売記録統計" #. module: account_voucher #: view:account.voucher:0 diff --git a/addons/account_voucher/i18n/ko.po b/addons/account_voucher/i18n/ko.po index bf9dc51dc08..32455429dea 100644 --- a/addons/account_voucher/i18n/ko.po +++ b/addons/account_voucher/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/lt.po b/addons/account_voucher/i18n/lt.po index d378ce469a9..5775617b59c 100644 --- a/addons/account_voucher/i18n/lt.po +++ b/addons/account_voucher/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/mk.po b/addons/account_voucher/i18n/mk.po index 4abcd013af3..bfe175d0218 100644 --- a/addons/account_voucher/i18n/mk.po +++ b/addons/account_voucher/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/mn.po b/addons/account_voucher/i18n/mn.po index cf7c42b4f2a..9b652b05572 100644 --- a/addons/account_voucher/i18n/mn.po +++ b/addons/account_voucher/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/nb.po b/addons/account_voucher/i18n/nb.po index cd552dbf30b..52de3dc478b 100644 --- a/addons/account_voucher/i18n/nb.po +++ b/addons/account_voucher/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/nl.po b/addons/account_voucher/i18n/nl.po index 577b2ff10a2..14a211973c6 100644 --- a/addons/account_voucher/i18n/nl.po +++ b/addons/account_voucher/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/nl_BE.po b/addons/account_voucher/i18n/nl_BE.po index b42318b551a..55f8ca04c32 100644 --- a/addons/account_voucher/i18n/nl_BE.po +++ b/addons/account_voucher/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/oc.po b/addons/account_voucher/i18n/oc.po index 7456ecc49b3..93b10c78b8a 100644 --- a/addons/account_voucher/i18n/oc.po +++ b/addons/account_voucher/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/pl.po b/addons/account_voucher/i18n/pl.po index b79324549df..6c6c258875c 100644 --- a/addons/account_voucher/i18n/pl.po +++ b/addons/account_voucher/i18n/pl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-15 14:43+0000\n" +"PO-Revision-Date: 2013-11-20 18:05+0000\n" "Last-Translator: Mirosław Bojanowicz \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: account_voucher @@ -25,7 +25,7 @@ msgstr "Uzgodnienie" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:417 @@ -1016,7 +1016,7 @@ msgstr "Wyciąg bankowy" #. module: account_voucher #: view:account.bank.statement:0 msgid "onchange_amount(amount)" -msgstr "" +msgstr "onchange_amount(amount)" #. module: account_voucher #: selection:sale.receipt.report,month:0 diff --git a/addons/account_voucher/i18n/pt.po b/addons/account_voucher/i18n/pt.po index 8a02e15a056..bd378d675f4 100644 --- a/addons/account_voucher/i18n/pt.po +++ b/addons/account_voucher/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/pt_BR.po b/addons/account_voucher/i18n/pt_BR.po index 40bab17c1a6..c4c474e9b9f 100644 --- a/addons/account_voucher/i18n/pt_BR.po +++ b/addons/account_voucher/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 19:36+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:35+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ro.po b/addons/account_voucher/i18n/ro.po index be1fe260d82..4a0522cb3e7 100644 --- a/addons/account_voucher/i18n/ro.po +++ b/addons/account_voucher/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:21+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ru.po b/addons/account_voucher/i18n/ru.po index b7cf2936147..73067810a8c 100644 --- a/addons/account_voucher/i18n/ru.po +++ b/addons/account_voucher/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-06 05:04+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sl.po b/addons/account_voucher/i18n/sl.po index f79dcc11032..3a94bc70beb 100644 --- a/addons/account_voucher/i18n/sl.po +++ b/addons/account_voucher/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:22+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sq.po b/addons/account_voucher/i18n/sq.po index a6ac053ca8d..c812bd80cc0 100644 --- a/addons/account_voucher/i18n/sq.po +++ b/addons/account_voucher/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 05:59+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sr.po b/addons/account_voucher/i18n/sr.po index d7c72e7ef53..56ed73b46e0 100644 --- a/addons/account_voucher/i18n/sr.po +++ b/addons/account_voucher/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sr@latin.po b/addons/account_voucher/i18n/sr@latin.po index 9180eae40ad..643acaff609 100644 --- a/addons/account_voucher/i18n/sr@latin.po +++ b/addons/account_voucher/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sv.po b/addons/account_voucher/i18n/sv.po index 40489130300..01abe4323ba 100644 --- a/addons/account_voucher/i18n/sv.po +++ b/addons/account_voucher/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/tlh.po b/addons/account_voucher/i18n/tlh.po index 5efc7c08043..80bcee308fa 100644 --- a/addons/account_voucher/i18n/tlh.po +++ b/addons/account_voucher/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/tr.po b/addons/account_voucher/i18n/tr.po index 5e5dbca90df..0654a5e57c4 100644 --- a/addons/account_voucher/i18n/tr.po +++ b/addons/account_voucher/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/uk.po b/addons/account_voucher/i18n/uk.po index ad4efdef9c2..8338dc14298 100644 --- a/addons/account_voucher/i18n/uk.po +++ b/addons/account_voucher/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/vi.po b/addons/account_voucher/i18n/vi.po index 31c18b52664..86d0a0e5095 100644 --- a/addons/account_voucher/i18n/vi.po +++ b/addons/account_voucher/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/zh_CN.po b/addons/account_voucher/i18n/zh_CN.po index f0f0df4a55e..06f53d70062 100644 --- a/addons/account_voucher/i18n/zh_CN.po +++ b/addons/account_voucher/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-08 05:02+0000\n" -"X-Generator: Launchpad (build 16760)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/zh_TW.po b/addons/account_voucher/i18n/zh_TW.po index 33d1707b5d0..88ff1dae716 100644 --- a/addons/account_voucher/i18n/zh_TW.po +++ b/addons/account_voucher/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/analytic/i18n/ar.po b/addons/analytic/i18n/ar.po index d2b4a3897a3..20ef3a4b0b4 100644 --- a/addons/analytic/i18n/ar.po +++ b/addons/analytic/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/bg.po b/addons/analytic/i18n/bg.po index 13f165e148e..87701b60128 100644 --- a/addons/analytic/i18n/bg.po +++ b/addons/analytic/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/bs.po b/addons/analytic/i18n/bs.po index af55a9f08e9..91ae75a12aa 100644 --- a/addons/analytic/i18n/bs.po +++ b/addons/analytic/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-30 05:54+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ca.po b/addons/analytic/i18n/ca.po index 919721b0d4a..145366cece0 100644 --- a/addons/analytic/i18n/ca.po +++ b/addons/analytic/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/cs.po b/addons/analytic/i18n/cs.po index d82a359ef32..49394000ca9 100644 --- a/addons/analytic/i18n/cs.po +++ b/addons/analytic/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/da.po b/addons/analytic/i18n/da.po index f83e4704ab2..ae6f4b41ee5 100644 --- a/addons/analytic/i18n/da.po +++ b/addons/analytic/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-05 06:00+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/de.po b/addons/analytic/i18n/de.po index d43c961edd4..f820c980004 100644 --- a/addons/analytic/i18n/de.po +++ b/addons/analytic/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/el.po b/addons/analytic/i18n/el.po index a70a3d4a337..9c0584d194f 100644 --- a/addons/analytic/i18n/el.po +++ b/addons/analytic/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/en_GB.po b/addons/analytic/i18n/en_GB.po index e4008152c49..0dae9b1e05d 100644 --- a/addons/analytic/i18n/en_GB.po +++ b/addons/analytic/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es.po b/addons/analytic/i18n/es.po index 5b9ae6157e4..8c90eb80bd0 100644 --- a/addons/analytic/i18n/es.po +++ b/addons/analytic/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es_CR.po b/addons/analytic/i18n/es_CR.po index 97976debe6f..a0040c61e9f 100644 --- a/addons/analytic/i18n/es_CR.po +++ b/addons/analytic/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es_EC.po b/addons/analytic/i18n/es_EC.po index 77aa47b34d4..c3597ffa1f2 100644 --- a/addons/analytic/i18n/es_EC.po +++ b/addons/analytic/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es_PY.po b/addons/analytic/i18n/es_PY.po index 526d3cc59cc..38edc8cf90d 100644 --- a/addons/analytic/i18n/es_PY.po +++ b/addons/analytic/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/et.po b/addons/analytic/i18n/et.po index f6d87805bf1..4905c9d8176 100644 --- a/addons/analytic/i18n/et.po +++ b/addons/analytic/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fa.po b/addons/analytic/i18n/fa.po index db5b7f4f943..4464a48e8c7 100644 --- a/addons/analytic/i18n/fa.po +++ b/addons/analytic/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fi.po b/addons/analytic/i18n/fi.po index 8b20025da6a..4873eb571b2 100644 --- a/addons/analytic/i18n/fi.po +++ b/addons/analytic/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fr.po b/addons/analytic/i18n/fr.po index 38d6518d0db..f4834672153 100644 --- a/addons/analytic/i18n/fr.po +++ b/addons/analytic/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/gl.po b/addons/analytic/i18n/gl.po index 768a94a2103..c501914ddb4 100644 --- a/addons/analytic/i18n/gl.po +++ b/addons/analytic/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/hr.po b/addons/analytic/i18n/hr.po index 87b888b2084..73a33ba3871 100644 --- a/addons/analytic/i18n/hr.po +++ b/addons/analytic/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:50+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/hu.po b/addons/analytic/i18n/hu.po index 71a8fc7ecc7..981bf16737b 100644 --- a/addons/analytic/i18n/hu.po +++ b/addons/analytic/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/it.po b/addons/analytic/i18n/it.po index 9ecba723f8d..3b95f7c795b 100644 --- a/addons/analytic/i18n/it.po +++ b/addons/analytic/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ja.po b/addons/analytic/i18n/ja.po index 899db90a35b..01a77f757ab 100644 --- a/addons/analytic/i18n/ja.po +++ b/addons/analytic/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/lt.po b/addons/analytic/i18n/lt.po index f5e5188f7a5..f8abab72c3d 100644 --- a/addons/analytic/i18n/lt.po +++ b/addons/analytic/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/lv.po b/addons/analytic/i18n/lv.po index edc07313c59..87a9e731684 100644 --- a/addons/analytic/i18n/lv.po +++ b/addons/analytic/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/mk.po b/addons/analytic/i18n/mk.po index a318ca70c63..66b4e5c1b2f 100644 --- a/addons/analytic/i18n/mk.po +++ b/addons/analytic/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: analytic diff --git a/addons/analytic/i18n/mn.po b/addons/analytic/i18n/mn.po index cdc4bb3798b..c81bd7588c8 100644 --- a/addons/analytic/i18n/mn.po +++ b/addons/analytic/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nb.po b/addons/analytic/i18n/nb.po index 88a0a7aa4ad..bbaaecc7411 100644 --- a/addons/analytic/i18n/nb.po +++ b/addons/analytic/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nl.po b/addons/analytic/i18n/nl.po index 4352c08daa3..51b3c7a08e7 100644 --- a/addons/analytic/i18n/nl.po +++ b/addons/analytic/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-25 08:09+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nl_BE.po b/addons/analytic/i18n/nl_BE.po index 75303284ebb..f44a54d6236 100644 --- a/addons/analytic/i18n/nl_BE.po +++ b/addons/analytic/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/pl.po b/addons/analytic/i18n/pl.po index 044a42db2ae..925a3ed2bc2 100644 --- a/addons/analytic/i18n/pl.po +++ b/addons/analytic/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: analytic diff --git a/addons/analytic/i18n/pt.po b/addons/analytic/i18n/pt.po index 731784889c8..1442df69882 100644 --- a/addons/analytic/i18n/pt.po +++ b/addons/analytic/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/pt_BR.po b/addons/analytic/i18n/pt_BR.po index 075401d5a61..475a2b6cdcc 100644 --- a/addons/analytic/i18n/pt_BR.po +++ b/addons/analytic/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ro.po b/addons/analytic/i18n/ro.po index d5ce30bd5a7..ec42b767db2 100644 --- a/addons/analytic/i18n/ro.po +++ b/addons/analytic/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ru.po b/addons/analytic/i18n/ru.po index 05d4a55c7cc..a8980574135 100644 --- a/addons/analytic/i18n/ru.po +++ b/addons/analytic/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-25 05:43+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sl.po b/addons/analytic/i18n/sl.po index cbf1e4cdd54..14d5cc412d4 100644 --- a/addons/analytic/i18n/sl.po +++ b/addons/analytic/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sq.po b/addons/analytic/i18n/sq.po index a3ecc4cf99c..b8926b13823 100644 --- a/addons/analytic/i18n/sq.po +++ b/addons/analytic/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:49+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sr.po b/addons/analytic/i18n/sr.po index 550d4944179..dee00e8adb4 100644 --- a/addons/analytic/i18n/sr.po +++ b/addons/analytic/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sr@latin.po b/addons/analytic/i18n/sr@latin.po index 090ca97fbcf..4c3f579aa68 100644 --- a/addons/analytic/i18n/sr@latin.po +++ b/addons/analytic/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sv.po b/addons/analytic/i18n/sv.po index f87397cf947..1a447d5f88d 100644 --- a/addons/analytic/i18n/sv.po +++ b/addons/analytic/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/tr.po b/addons/analytic/i18n/tr.po index 54d30c7eab4..4945233fac0 100644 --- a/addons/analytic/i18n/tr.po +++ b/addons/analytic/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/vi.po b/addons/analytic/i18n/vi.po index 7fdf564dd05..647860ba99d 100644 --- a/addons/analytic/i18n/vi.po +++ b/addons/analytic/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/zh_CN.po b/addons/analytic/i18n/zh_CN.po index 02ed80b418a..7e7ac23f821 100644 --- a/addons/analytic/i18n/zh_CN.po +++ b/addons/analytic/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/zh_TW.po b/addons/analytic/i18n/zh_TW.po index 576320765a0..a8982b5f046 100644 --- a/addons/analytic/i18n/zh_TW.po +++ b/addons/analytic/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic_contract_hr_expense/i18n/ar.po b/addons/analytic_contract_hr_expense/i18n/ar.po index 0e224af75de..6e3d35d3a97 100644 --- a/addons/analytic_contract_hr_expense/i18n/ar.po +++ b/addons/analytic_contract_hr_expense/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/cs.po b/addons/analytic_contract_hr_expense/i18n/cs.po index 12524b9a4af..6df88ef68f0 100644 --- a/addons/analytic_contract_hr_expense/i18n/cs.po +++ b/addons/analytic_contract_hr_expense/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/da.po b/addons/analytic_contract_hr_expense/i18n/da.po index 8d676a0e7db..a70fd352b74 100644 --- a/addons/analytic_contract_hr_expense/i18n/da.po +++ b/addons/analytic_contract_hr_expense/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/de.po b/addons/analytic_contract_hr_expense/i18n/de.po index 2985064f9bf..412df423110 100644 --- a/addons/analytic_contract_hr_expense/i18n/de.po +++ b/addons/analytic_contract_hr_expense/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-09 05:48+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/en_GB.po b/addons/analytic_contract_hr_expense/i18n/en_GB.po index bfde40953cc..1e972340551 100644 --- a/addons/analytic_contract_hr_expense/i18n/en_GB.po +++ b/addons/analytic_contract_hr_expense/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/es.po b/addons/analytic_contract_hr_expense/i18n/es.po index d2b4a185bde..03a0a53ac83 100644 --- a/addons/analytic_contract_hr_expense/i18n/es.po +++ b/addons/analytic_contract_hr_expense/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/fr.po b/addons/analytic_contract_hr_expense/i18n/fr.po index c03559f0c2a..4559d5a8f08 100644 --- a/addons/analytic_contract_hr_expense/i18n/fr.po +++ b/addons/analytic_contract_hr_expense/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/hr.po b/addons/analytic_contract_hr_expense/i18n/hr.po index a33691c6d78..e7b8e9e44c3 100644 --- a/addons/analytic_contract_hr_expense/i18n/hr.po +++ b/addons/analytic_contract_hr_expense/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/hu.po b/addons/analytic_contract_hr_expense/i18n/hu.po index c65862e8f47..7658ed23396 100644 --- a/addons/analytic_contract_hr_expense/i18n/hu.po +++ b/addons/analytic_contract_hr_expense/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/it.po b/addons/analytic_contract_hr_expense/i18n/it.po index 8e5c3ddb233..c01cb299be6 100644 --- a/addons/analytic_contract_hr_expense/i18n/it.po +++ b/addons/analytic_contract_hr_expense/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/mk.po b/addons/analytic_contract_hr_expense/i18n/mk.po index 1847bca1271..9b81c7374c2 100644 --- a/addons/analytic_contract_hr_expense/i18n/mk.po +++ b/addons/analytic_contract_hr_expense/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/mn.po b/addons/analytic_contract_hr_expense/i18n/mn.po index dabe4d4fd74..10d80910317 100644 --- a/addons/analytic_contract_hr_expense/i18n/mn.po +++ b/addons/analytic_contract_hr_expense/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nb.po b/addons/analytic_contract_hr_expense/i18n/nb.po index 8fdb76c158d..bf0d8ec4080 100644 --- a/addons/analytic_contract_hr_expense/i18n/nb.po +++ b/addons/analytic_contract_hr_expense/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nl.po b/addons/analytic_contract_hr_expense/i18n/nl.po index 12df2856303..aeb2eb11655 100644 --- a/addons/analytic_contract_hr_expense/i18n/nl.po +++ b/addons/analytic_contract_hr_expense/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-12 07:11+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-13 06:35+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nl_BE.po b/addons/analytic_contract_hr_expense/i18n/nl_BE.po index f7d5b91e7e5..79e7a6fae60 100644 --- a/addons/analytic_contract_hr_expense/i18n/nl_BE.po +++ b/addons/analytic_contract_hr_expense/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pl.po b/addons/analytic_contract_hr_expense/i18n/pl.po index d5cc32fb0eb..5bc0f6d646c 100644 --- a/addons/analytic_contract_hr_expense/i18n/pl.po +++ b/addons/analytic_contract_hr_expense/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/pt.po b/addons/analytic_contract_hr_expense/i18n/pt.po index 9eb19ec9ecb..0c0ec9e3fe1 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt.po +++ b/addons/analytic_contract_hr_expense/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pt_BR.po b/addons/analytic_contract_hr_expense/i18n/pt_BR.po index 5a743b55c53..2d91370151a 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt_BR.po +++ b/addons/analytic_contract_hr_expense/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 19:37+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:35+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/ro.po b/addons/analytic_contract_hr_expense/i18n/ro.po index 71c7d46cacf..919a5472b7e 100644 --- a/addons/analytic_contract_hr_expense/i18n/ro.po +++ b/addons/analytic_contract_hr_expense/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-18 18:23+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/sl.po b/addons/analytic_contract_hr_expense/i18n/sl.po index 95e7705a931..87c89fff7bb 100644 --- a/addons/analytic_contract_hr_expense/i18n/sl.po +++ b/addons/analytic_contract_hr_expense/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/tr.po b/addons/analytic_contract_hr_expense/i18n/tr.po index 4dd1a4b8e91..a180d1742e0 100644 --- a/addons/analytic_contract_hr_expense/i18n/tr.po +++ b/addons/analytic_contract_hr_expense/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/zh_CN.po b/addons/analytic_contract_hr_expense/i18n/zh_CN.po index 200caf0aa74..2b8597ed944 100644 --- a/addons/analytic_contract_hr_expense/i18n/zh_CN.po +++ b/addons/analytic_contract_hr_expense/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-26 01:41+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_user_function/i18n/ar.po b/addons/analytic_user_function/i18n/ar.po index 65dbb8bf31c..ea2f2cb4b4d 100644 --- a/addons/analytic_user_function/i18n/ar.po +++ b/addons/analytic_user_function/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/bg.po b/addons/analytic_user_function/i18n/bg.po index 219fc23294b..7b8025db8cb 100644 --- a/addons/analytic_user_function/i18n/bg.po +++ b/addons/analytic_user_function/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/bs.po b/addons/analytic_user_function/i18n/bs.po index a6b661c44c2..bf4ae535994 100644 --- a/addons/analytic_user_function/i18n/bs.po +++ b/addons/analytic_user_function/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ca.po b/addons/analytic_user_function/i18n/ca.po index fc3e176cc46..ae4b859b82d 100644 --- a/addons/analytic_user_function/i18n/ca.po +++ b/addons/analytic_user_function/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/cs.po b/addons/analytic_user_function/i18n/cs.po index 536b5299a6a..398b37d42a2 100644 --- a/addons/analytic_user_function/i18n/cs.po +++ b/addons/analytic_user_function/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/da.po b/addons/analytic_user_function/i18n/da.po index ac6fdf391d7..afa6e484fc0 100644 --- a/addons/analytic_user_function/i18n/da.po +++ b/addons/analytic_user_function/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/de.po b/addons/analytic_user_function/i18n/de.po index cf31431e229..72599a98df9 100644 --- a/addons/analytic_user_function/i18n/de.po +++ b/addons/analytic_user_function/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/el.po b/addons/analytic_user_function/i18n/el.po index 14285ad6136..9ebc062af2e 100644 --- a/addons/analytic_user_function/i18n/el.po +++ b/addons/analytic_user_function/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/en_GB.po b/addons/analytic_user_function/i18n/en_GB.po index 4cb8f4a0b5b..593643796da 100644 --- a/addons/analytic_user_function/i18n/en_GB.po +++ b/addons/analytic_user_function/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es.po b/addons/analytic_user_function/i18n/es.po index 9e7763888eb..8ed1bed6495 100644 --- a/addons/analytic_user_function/i18n/es.po +++ b/addons/analytic_user_function/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_AR.po b/addons/analytic_user_function/i18n/es_AR.po index 53e678e0ac9..1231e823a9e 100644 --- a/addons/analytic_user_function/i18n/es_AR.po +++ b/addons/analytic_user_function/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_CR.po b/addons/analytic_user_function/i18n/es_CR.po index cb905adf06e..45907329c3a 100644 --- a/addons/analytic_user_function/i18n/es_CR.po +++ b/addons/analytic_user_function/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_EC.po b/addons/analytic_user_function/i18n/es_EC.po index e2dbd823b1f..96ed77ca18c 100644 --- a/addons/analytic_user_function/i18n/es_EC.po +++ b/addons/analytic_user_function/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_PY.po b/addons/analytic_user_function/i18n/es_PY.po index f978bafb31b..fe378721603 100644 --- a/addons/analytic_user_function/i18n/es_PY.po +++ b/addons/analytic_user_function/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/et.po b/addons/analytic_user_function/i18n/et.po index 367759d5cc7..ec2657c094b 100644 --- a/addons/analytic_user_function/i18n/et.po +++ b/addons/analytic_user_function/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fa.po b/addons/analytic_user_function/i18n/fa.po index d07c7c5fb86..e2dd0a0499b 100644 --- a/addons/analytic_user_function/i18n/fa.po +++ b/addons/analytic_user_function/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fi.po b/addons/analytic_user_function/i18n/fi.po index eb7369babd5..f580edb0f19 100644 --- a/addons/analytic_user_function/i18n/fi.po +++ b/addons/analytic_user_function/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fr.po b/addons/analytic_user_function/i18n/fr.po index fd2c18d292a..1df28c723a6 100644 --- a/addons/analytic_user_function/i18n/fr.po +++ b/addons/analytic_user_function/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/gl.po b/addons/analytic_user_function/i18n/gl.po index 5268c1b2813..a4167b64d23 100644 --- a/addons/analytic_user_function/i18n/gl.po +++ b/addons/analytic_user_function/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/gu.po b/addons/analytic_user_function/i18n/gu.po index ed99d8a174f..49c2ef44735 100644 --- a/addons/analytic_user_function/i18n/gu.po +++ b/addons/analytic_user_function/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/hr.po b/addons/analytic_user_function/i18n/hr.po index 6eb06c9c8f6..e0c6936c940 100644 --- a/addons/analytic_user_function/i18n/hr.po +++ b/addons/analytic_user_function/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/hu.po b/addons/analytic_user_function/i18n/hu.po index 25cd8d19d6c..4f202e4383d 100644 --- a/addons/analytic_user_function/i18n/hu.po +++ b/addons/analytic_user_function/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/id.po b/addons/analytic_user_function/i18n/id.po index b22e33cffc3..38566d3302f 100644 --- a/addons/analytic_user_function/i18n/id.po +++ b/addons/analytic_user_function/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/it.po b/addons/analytic_user_function/i18n/it.po index abded7f2a00..98992cb669c 100644 --- a/addons/analytic_user_function/i18n/it.po +++ b/addons/analytic_user_function/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ja.po b/addons/analytic_user_function/i18n/ja.po index cc41a0a2eeb..02e722d8204 100644 --- a/addons/analytic_user_function/i18n/ja.po +++ b/addons/analytic_user_function/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ko.po b/addons/analytic_user_function/i18n/ko.po index 128f21e7f81..765c68045a2 100644 --- a/addons/analytic_user_function/i18n/ko.po +++ b/addons/analytic_user_function/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/lt.po b/addons/analytic_user_function/i18n/lt.po index 02646eaa633..94ced60a80c 100644 --- a/addons/analytic_user_function/i18n/lt.po +++ b/addons/analytic_user_function/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/mk.po b/addons/analytic_user_function/i18n/mk.po index f7d646685e2..e2f19382bd2 100644 --- a/addons/analytic_user_function/i18n/mk.po +++ b/addons/analytic_user_function/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/mn.po b/addons/analytic_user_function/i18n/mn.po index 49d5965f85e..b8fd850bf9b 100644 --- a/addons/analytic_user_function/i18n/mn.po +++ b/addons/analytic_user_function/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nb.po b/addons/analytic_user_function/i18n/nb.po index 977d45ed0e2..11b811a4491 100644 --- a/addons/analytic_user_function/i18n/nb.po +++ b/addons/analytic_user_function/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nl.po b/addons/analytic_user_function/i18n/nl.po index 5dddbd92e55..382ff2b3166 100644 --- a/addons/analytic_user_function/i18n/nl.po +++ b/addons/analytic_user_function/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-31 14:33+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nl_BE.po b/addons/analytic_user_function/i18n/nl_BE.po index 5b6f2a6ddb2..8925c3a5a7f 100644 --- a/addons/analytic_user_function/i18n/nl_BE.po +++ b/addons/analytic_user_function/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/oc.po b/addons/analytic_user_function/i18n/oc.po index e786d6cb51a..27a5bb6d12a 100644 --- a/addons/analytic_user_function/i18n/oc.po +++ b/addons/analytic_user_function/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pl.po b/addons/analytic_user_function/i18n/pl.po index 2db34b09f55..5c5a85a0b4b 100644 --- a/addons/analytic_user_function/i18n/pl.po +++ b/addons/analytic_user_function/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pt.po b/addons/analytic_user_function/i18n/pt.po index 9a3b142ac43..97c92351fc8 100644 --- a/addons/analytic_user_function/i18n/pt.po +++ b/addons/analytic_user_function/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pt_BR.po b/addons/analytic_user_function/i18n/pt_BR.po index e3ae7b44415..299c20f5e40 100644 --- a/addons/analytic_user_function/i18n/pt_BR.po +++ b/addons/analytic_user_function/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ro.po b/addons/analytic_user_function/i18n/ro.po index e393da109a0..42b10bd477a 100644 --- a/addons/analytic_user_function/i18n/ro.po +++ b/addons/analytic_user_function/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-18 18:55+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ru.po b/addons/analytic_user_function/i18n/ru.po index 78223c2d11b..a0ff26ceaf6 100644 --- a/addons/analytic_user_function/i18n/ru.po +++ b/addons/analytic_user_function/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-25 05:44+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sk.po b/addons/analytic_user_function/i18n/sk.po index 444d2beefea..418da2fd362 100644 --- a/addons/analytic_user_function/i18n/sk.po +++ b/addons/analytic_user_function/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sl.po b/addons/analytic_user_function/i18n/sl.po index ced55b8671f..50f5f0f7c1b 100644 --- a/addons/analytic_user_function/i18n/sl.po +++ b/addons/analytic_user_function/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sq.po b/addons/analytic_user_function/i18n/sq.po index ffd95c44e2b..578c7a92a72 100644 --- a/addons/analytic_user_function/i18n/sq.po +++ b/addons/analytic_user_function/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sr.po b/addons/analytic_user_function/i18n/sr.po index 1b5cef0c99c..b7ab22621dd 100644 --- a/addons/analytic_user_function/i18n/sr.po +++ b/addons/analytic_user_function/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sr@latin.po b/addons/analytic_user_function/i18n/sr@latin.po index 00e867a804e..ce9dcf57609 100644 --- a/addons/analytic_user_function/i18n/sr@latin.po +++ b/addons/analytic_user_function/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sv.po b/addons/analytic_user_function/i18n/sv.po index 6363f0c2350..3f7b0b01bc0 100644 --- a/addons/analytic_user_function/i18n/sv.po +++ b/addons/analytic_user_function/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/tlh.po b/addons/analytic_user_function/i18n/tlh.po index f9fbbd9205f..850cd52c802 100644 --- a/addons/analytic_user_function/i18n/tlh.po +++ b/addons/analytic_user_function/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/tr.po b/addons/analytic_user_function/i18n/tr.po index 68e9cab2b62..a7f91b3447f 100644 --- a/addons/analytic_user_function/i18n/tr.po +++ b/addons/analytic_user_function/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/uk.po b/addons/analytic_user_function/i18n/uk.po index 87119081452..fa72887997f 100644 --- a/addons/analytic_user_function/i18n/uk.po +++ b/addons/analytic_user_function/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/vi.po b/addons/analytic_user_function/i18n/vi.po index 76519f2ff39..94524b2ddee 100644 --- a/addons/analytic_user_function/i18n/vi.po +++ b/addons/analytic_user_function/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/zh_CN.po b/addons/analytic_user_function/i18n/zh_CN.po index ee8f847e5b8..ee0482a84b9 100644 --- a/addons/analytic_user_function/i18n/zh_CN.po +++ b/addons/analytic_user_function/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line @@ -79,6 +79,8 @@ msgid "" " of the default values when invoicing the " "customer." msgstr "" +"定义为特定用户指定的服务(例如:高级咨询师)\n" +" 以及价格,在为顾客开票时用来取代默认值。" #. module: analytic_user_function #: field:analytic.user.funct.grid,uom_id:0 @@ -106,6 +108,9 @@ msgid "" " specific user. This allows to set invoicing\n" " conditions for a group of contracts." msgstr "" +"OpenERP 将循环搜索父帐 \n" +" 来检查是否为特定用户定义特定条件。\n" +" 这样做允许为一组合同设置账单条件。" #. module: analytic_user_function #: field:analytic.user.funct.grid,user_id:0 diff --git a/addons/analytic_user_function/i18n/zh_TW.po b/addons/analytic_user_function/i18n/zh_TW.po index 073f3111067..dd61e979682 100644 --- a/addons/analytic_user_function/i18n/zh_TW.po +++ b/addons/analytic_user_function/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/anonymization/i18n/ar.po b/addons/anonymization/i18n/ar.po index 73bd83ff9f2..10e6ab518b5 100644 --- a/addons/anonymization/i18n/ar.po +++ b/addons/anonymization/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/bg.po b/addons/anonymization/i18n/bg.po index 7b2a8f93833..6ff443de5c0 100644 --- a/addons/anonymization/i18n/bg.po +++ b/addons/anonymization/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ca.po b/addons/anonymization/i18n/ca.po index b029cade50b..f49ecfa95fa 100644 --- a/addons/anonymization/i18n/ca.po +++ b/addons/anonymization/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/cs.po b/addons/anonymization/i18n/cs.po index 9e0b7e79b8f..054421e4878 100644 --- a/addons/anonymization/i18n/cs.po +++ b/addons/anonymization/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/da.po b/addons/anonymization/i18n/da.po index 3949a81cf6d..9343573b474 100644 --- a/addons/anonymization/i18n/da.po +++ b/addons/anonymization/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/de.po b/addons/anonymization/i18n/de.po index aaf8ae26d74..7dcff959e98 100644 --- a/addons/anonymization/i18n/de.po +++ b/addons/anonymization/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/en_GB.po b/addons/anonymization/i18n/en_GB.po index 51144bd312c..d72662d2dfa 100644 --- a/addons/anonymization/i18n/en_GB.po +++ b/addons/anonymization/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es.po b/addons/anonymization/i18n/es.po index dc2dd439d42..83eca0f7170 100644 --- a/addons/anonymization/i18n/es.po +++ b/addons/anonymization/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_CR.po b/addons/anonymization/i18n/es_CR.po index e0de72921e5..9047f28be6d 100644 --- a/addons/anonymization/i18n/es_CR.po +++ b/addons/anonymization/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_EC.po b/addons/anonymization/i18n/es_EC.po index d6675a950d0..ceaad0b10c8 100644 --- a/addons/anonymization/i18n/es_EC.po +++ b/addons/anonymization/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_PY.po b/addons/anonymization/i18n/es_PY.po index e0331621601..bea01fc050e 100644 --- a/addons/anonymization/i18n/es_PY.po +++ b/addons/anonymization/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/et.po b/addons/anonymization/i18n/et.po index 2f0516c7fae..7763063883b 100644 --- a/addons/anonymization/i18n/et.po +++ b/addons/anonymization/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fa.po b/addons/anonymization/i18n/fa.po index 4601d4f58a2..b5e3edcb375 100644 --- a/addons/anonymization/i18n/fa.po +++ b/addons/anonymization/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fi.po b/addons/anonymization/i18n/fi.po index 9c1a6700ac6..4f17466fc36 100644 --- a/addons/anonymization/i18n/fi.po +++ b/addons/anonymization/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fr.po b/addons/anonymization/i18n/fr.po index a6f019b578e..ae73a3ba6b9 100644 --- a/addons/anonymization/i18n/fr.po +++ b/addons/anonymization/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/gl.po b/addons/anonymization/i18n/gl.po index f9062992bf6..cb0ed68e921 100644 --- a/addons/anonymization/i18n/gl.po +++ b/addons/anonymization/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/hr.po b/addons/anonymization/i18n/hr.po index 78f3ee9b426..d88dfbbd84f 100644 --- a/addons/anonymization/i18n/hr.po +++ b/addons/anonymization/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/hu.po b/addons/anonymization/i18n/hu.po index 994929325fe..56b9303d46c 100644 --- a/addons/anonymization/i18n/hu.po +++ b/addons/anonymization/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/it.po b/addons/anonymization/i18n/it.po index 6c345946b73..0e1210a5872 100644 --- a/addons/anonymization/i18n/it.po +++ b/addons/anonymization/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ja.po b/addons/anonymization/i18n/ja.po index 05526ad3e8b..f01d4b9786b 100644 --- a/addons/anonymization/i18n/ja.po +++ b/addons/anonymization/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/lv.po b/addons/anonymization/i18n/lv.po index 6110c111238..d50672e8d2e 100644 --- a/addons/anonymization/i18n/lv.po +++ b/addons/anonymization/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/mk.po b/addons/anonymization/i18n/mk.po index 50634976cdd..e54fe758c80 100644 --- a/addons/anonymization/i18n/mk.po +++ b/addons/anonymization/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: anonymization diff --git a/addons/anonymization/i18n/mn.po b/addons/anonymization/i18n/mn.po index 8a6c600b351..42285e476ab 100644 --- a/addons/anonymization/i18n/mn.po +++ b/addons/anonymization/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/nb.po b/addons/anonymization/i18n/nb.po index 136027aef4a..930322acfd1 100644 --- a/addons/anonymization/i18n/nb.po +++ b/addons/anonymization/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/nl.po b/addons/anonymization/i18n/nl.po index 5d09bb91878..605e295043f 100644 --- a/addons/anonymization/i18n/nl.po +++ b/addons/anonymization/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-13 17:55+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pl.po b/addons/anonymization/i18n/pl.po index 43aacc90fef..aa72a1ae197 100644 --- a/addons/anonymization/i18n/pl.po +++ b/addons/anonymization/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/pt.po b/addons/anonymization/i18n/pt.po index 12ae5d61433..49d56632a2b 100644 --- a/addons/anonymization/i18n/pt.po +++ b/addons/anonymization/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pt_BR.po b/addons/anonymization/i18n/pt_BR.po index ea02b89bb77..20229506f4e 100644 --- a/addons/anonymization/i18n/pt_BR.po +++ b/addons/anonymization/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ro.po b/addons/anonymization/i18n/ro.po index a357321c343..c338c6422ce 100644 --- a/addons/anonymization/i18n/ro.po +++ b/addons/anonymization/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-19 09:50+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ru.po b/addons/anonymization/i18n/ru.po index 17055ac04dc..43800af818c 100644 --- a/addons/anonymization/i18n/ru.po +++ b/addons/anonymization/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sl.po b/addons/anonymization/i18n/sl.po index 6f5b0e71123..27d73c20682 100644 --- a/addons/anonymization/i18n/sl.po +++ b/addons/anonymization/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sq.po b/addons/anonymization/i18n/sq.po index d09ba233995..79d363bf0b6 100644 --- a/addons/anonymization/i18n/sq.po +++ b/addons/anonymization/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sr@latin.po b/addons/anonymization/i18n/sr@latin.po index e881487a376..eb14306d67b 100644 --- a/addons/anonymization/i18n/sr@latin.po +++ b/addons/anonymization/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sv.po b/addons/anonymization/i18n/sv.po index f560f22fd28..236b441daa0 100644 --- a/addons/anonymization/i18n/sv.po +++ b/addons/anonymization/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/tr.po b/addons/anonymization/i18n/tr.po index 1658bc29e86..5bfffb28633 100644 --- a/addons/anonymization/i18n/tr.po +++ b/addons/anonymization/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:00+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/zh_CN.po b/addons/anonymization/i18n/zh_CN.po index ff615067f29..16c5f19f8d6 100644 --- a/addons/anonymization/i18n/zh_CN.po +++ b/addons/anonymization/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-03 14:35+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/zh_TW.po b/addons/anonymization/i18n/zh_TW.po index 5d54fc96660..77363e2e203 100644 --- a/addons/anonymization/i18n/zh_TW.po +++ b/addons/anonymization/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/association/i18n/ar.po b/addons/association/i18n/ar.po index 30eb5c7bd70..bfb6b96059e 100644 --- a/addons/association/i18n/ar.po +++ b/addons/association/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/bg.po b/addons/association/i18n/bg.po index ef59d1c761a..b6e0ab32d43 100644 --- a/addons/association/i18n/bg.po +++ b/addons/association/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/bs.po b/addons/association/i18n/bs.po index 103aba8bd10..00f35c9a1d7 100644 --- a/addons/association/i18n/bs.po +++ b/addons/association/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ca.po b/addons/association/i18n/ca.po index 626caba3e18..47d2cf4bd4c 100644 --- a/addons/association/i18n/ca.po +++ b/addons/association/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/cs.po b/addons/association/i18n/cs.po index 435a366273e..146501e1329 100644 --- a/addons/association/i18n/cs.po +++ b/addons/association/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/da.po b/addons/association/i18n/da.po index 2a7f74d0c7a..3d10f2c8d10 100644 --- a/addons/association/i18n/da.po +++ b/addons/association/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/de.po b/addons/association/i18n/de.po index af4de040276..ab4d7381557 100644 --- a/addons/association/i18n/de.po +++ b/addons/association/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/el.po b/addons/association/i18n/el.po index 762e10a3ebf..2fe92626877 100644 --- a/addons/association/i18n/el.po +++ b/addons/association/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/en_GB.po b/addons/association/i18n/en_GB.po index d9e60c0b056..732e3aa6a45 100644 --- a/addons/association/i18n/en_GB.po +++ b/addons/association/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es.po b/addons/association/i18n/es.po index bff07b2d68a..b96bb994513 100644 --- a/addons/association/i18n/es.po +++ b/addons/association/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_CR.po b/addons/association/i18n/es_CR.po index f37562fbc3e..67889e93677 100644 --- a/addons/association/i18n/es_CR.po +++ b/addons/association/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_EC.po b/addons/association/i18n/es_EC.po index 325e71edb8f..1eaabf0d20d 100644 --- a/addons/association/i18n/es_EC.po +++ b/addons/association/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_PY.po b/addons/association/i18n/es_PY.po index 97c4770cb9e..acba90439fe 100644 --- a/addons/association/i18n/es_PY.po +++ b/addons/association/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/et.po b/addons/association/i18n/et.po index aba8ff5451f..e145342ad12 100644 --- a/addons/association/i18n/et.po +++ b/addons/association/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fa.po b/addons/association/i18n/fa.po index 1cad7b9192e..c180f11bfad 100644 --- a/addons/association/i18n/fa.po +++ b/addons/association/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fi.po b/addons/association/i18n/fi.po index 4b337a79656..7fe8d5ea1c1 100644 --- a/addons/association/i18n/fi.po +++ b/addons/association/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fr.po b/addons/association/i18n/fr.po index f10e447202c..74a38cca16d 100644 --- a/addons/association/i18n/fr.po +++ b/addons/association/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/gl.po b/addons/association/i18n/gl.po index 01fe2e9222f..1b1293d6c16 100644 --- a/addons/association/i18n/gl.po +++ b/addons/association/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/gu.po b/addons/association/i18n/gu.po index af6f87f4e63..5084cce9a01 100644 --- a/addons/association/i18n/gu.po +++ b/addons/association/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/hr.po b/addons/association/i18n/hr.po index e33af9769c9..ed2df115d78 100644 --- a/addons/association/i18n/hr.po +++ b/addons/association/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/hu.po b/addons/association/i18n/hu.po index 2ef1bd0351a..aeb94267863 100644 --- a/addons/association/i18n/hu.po +++ b/addons/association/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/id.po b/addons/association/i18n/id.po index 68115088949..eebdeaffd29 100644 --- a/addons/association/i18n/id.po +++ b/addons/association/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/it.po b/addons/association/i18n/it.po index b4491d0ed17..b3f276f3d72 100644 --- a/addons/association/i18n/it.po +++ b/addons/association/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ja.po b/addons/association/i18n/ja.po index c32644e7e17..3a5d72b6c49 100644 --- a/addons/association/i18n/ja.po +++ b/addons/association/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ko.po b/addons/association/i18n/ko.po index 0337034c406..bce4e1bb057 100644 --- a/addons/association/i18n/ko.po +++ b/addons/association/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lo.po b/addons/association/i18n/lo.po index 14ec03ee6ed..279f969e3bd 100644 --- a/addons/association/i18n/lo.po +++ b/addons/association/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lt.po b/addons/association/i18n/lt.po index da5995c34ea..1fc99ac3f52 100644 --- a/addons/association/i18n/lt.po +++ b/addons/association/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lv.po b/addons/association/i18n/lv.po index b2d6024baf3..3827ca02c14 100644 --- a/addons/association/i18n/lv.po +++ b/addons/association/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/mk.po b/addons/association/i18n/mk.po index ee4002a2cbd..67164ca6908 100644 --- a/addons/association/i18n/mk.po +++ b/addons/association/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/mn.po b/addons/association/i18n/mn.po index a93ad92cce0..05e4d911aa3 100644 --- a/addons/association/i18n/mn.po +++ b/addons/association/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/nb.po b/addons/association/i18n/nb.po index 334036a1214..734c6bd0539 100644 --- a/addons/association/i18n/nb.po +++ b/addons/association/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/nl.po b/addons/association/i18n/nl.po index 326ff84c554..95ffd6814d1 100644 --- a/addons/association/i18n/nl.po +++ b/addons/association/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pl.po b/addons/association/i18n/pl.po index a9a1b23cb94..4d1129b2300 100644 --- a/addons/association/i18n/pl.po +++ b/addons/association/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: association diff --git a/addons/association/i18n/pt.po b/addons/association/i18n/pt.po index 602ae3f79c2..56a392e9f0f 100644 --- a/addons/association/i18n/pt.po +++ b/addons/association/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pt_BR.po b/addons/association/i18n/pt_BR.po index 8bdb7bb1de7..8f2e74bff7c 100644 --- a/addons/association/i18n/pt_BR.po +++ b/addons/association/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ro.po b/addons/association/i18n/ro.po index 8b1f29eafe5..5c78315bcfd 100644 --- a/addons/association/i18n/ro.po +++ b/addons/association/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2013-01-19 09:53+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ru.po b/addons/association/i18n/ru.po index 84cbf991879..3b2ba0e000c 100644 --- a/addons/association/i18n/ru.po +++ b/addons/association/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sl.po b/addons/association/i18n/sl.po index 3ad5ae76fec..2763a546a77 100644 --- a/addons/association/i18n/sl.po +++ b/addons/association/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sq.po b/addons/association/i18n/sq.po index 5a9b00dc7e6..95e76dc2545 100644 --- a/addons/association/i18n/sq.po +++ b/addons/association/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sr.po b/addons/association/i18n/sr.po index 12702f0e63d..c822f5a177a 100644 --- a/addons/association/i18n/sr.po +++ b/addons/association/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sr@latin.po b/addons/association/i18n/sr@latin.po index 83f78cb7e37..3f2c80bc609 100644 --- a/addons/association/i18n/sr@latin.po +++ b/addons/association/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sv.po b/addons/association/i18n/sv.po index 137c960b3e9..76a9876f538 100644 --- a/addons/association/i18n/sv.po +++ b/addons/association/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/tlh.po b/addons/association/i18n/tlh.po index 28036b6e5e5..588ba0a3c63 100644 --- a/addons/association/i18n/tlh.po +++ b/addons/association/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/tr.po b/addons/association/i18n/tr.po index 7a6a8fc9e13..49e7e0bdc2b 100644 --- a/addons/association/i18n/tr.po +++ b/addons/association/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/uk.po b/addons/association/i18n/uk.po index 28dca63c4e7..dda077a4f29 100644 --- a/addons/association/i18n/uk.po +++ b/addons/association/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/vi.po b/addons/association/i18n/vi.po index 4bc44a6f737..05065e54f8a 100644 --- a/addons/association/i18n/vi.po +++ b/addons/association/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/zh_CN.po b/addons/association/i18n/zh_CN.po index 5ca2264767f..85979d50452 100644 --- a/addons/association/i18n/zh_CN.po +++ b/addons/association/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/zh_TW.po b/addons/association/i18n/zh_TW.po index b1a8a276032..91385f1e412 100644 --- a/addons/association/i18n/zh_TW.po +++ b/addons/association/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/audittrail/i18n/ar.po b/addons/audittrail/i18n/ar.po index 28f929aa4e4..d6df1696636 100644 --- a/addons/audittrail/i18n/ar.po +++ b/addons/audittrail/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bg.po b/addons/audittrail/i18n/bg.po index b12c93b3214..6024438e97c 100644 --- a/addons/audittrail/i18n/bg.po +++ b/addons/audittrail/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bs.po b/addons/audittrail/i18n/bs.po index dd7c149296a..820c3a3bf86 100644 --- a/addons/audittrail/i18n/bs.po +++ b/addons/audittrail/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ca.po b/addons/audittrail/i18n/ca.po index ec39fb25f54..7e0a740fa70 100644 --- a/addons/audittrail/i18n/ca.po +++ b/addons/audittrail/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/cs.po b/addons/audittrail/i18n/cs.po index c0c22fccd72..29115b2908e 100644 --- a/addons/audittrail/i18n/cs.po +++ b/addons/audittrail/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/da.po b/addons/audittrail/i18n/da.po index ffa0313ab88..977f793f497 100644 --- a/addons/audittrail/i18n/da.po +++ b/addons/audittrail/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/de.po b/addons/audittrail/i18n/de.po index 1653563897a..ef42e323800 100644 --- a/addons/audittrail/i18n/de.po +++ b/addons/audittrail/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/el.po b/addons/audittrail/i18n/el.po index 44122f484b6..daed4254dfd 100644 --- a/addons/audittrail/i18n/el.po +++ b/addons/audittrail/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es.po b/addons/audittrail/i18n/es.po index 31a60db4e34..a28ede05065 100644 --- a/addons/audittrail/i18n/es.po +++ b/addons/audittrail/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_AR.po b/addons/audittrail/i18n/es_AR.po index 9165b0b1f68..00f9f6e3a02 100644 --- a/addons/audittrail/i18n/es_AR.po +++ b/addons/audittrail/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_CR.po b/addons/audittrail/i18n/es_CR.po index 2335b26bc82..3f03fcc5961 100644 --- a/addons/audittrail/i18n/es_CR.po +++ b/addons/audittrail/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_EC.po b/addons/audittrail/i18n/es_EC.po index 4dc6171eb3d..11a4f42a553 100644 --- a/addons/audittrail/i18n/es_EC.po +++ b/addons/audittrail/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_PY.po b/addons/audittrail/i18n/es_PY.po index 55e6c96e9fd..dc93e1d93a3 100644 --- a/addons/audittrail/i18n/es_PY.po +++ b/addons/audittrail/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/et.po b/addons/audittrail/i18n/et.po index dcf9b69be63..80efe98c42d 100644 --- a/addons/audittrail/i18n/et.po +++ b/addons/audittrail/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa.po b/addons/audittrail/i18n/fa.po index 13c6a9f8a85..10e2cdcc025 100644 --- a/addons/audittrail/i18n/fa.po +++ b/addons/audittrail/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa_AF.po b/addons/audittrail/i18n/fa_AF.po index 1d2e56ebe97..eccbc914bd8 100644 --- a/addons/audittrail/i18n/fa_AF.po +++ b/addons/audittrail/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fi.po b/addons/audittrail/i18n/fi.po index 9bae6d671bf..63049c0126c 100644 --- a/addons/audittrail/i18n/fi.po +++ b/addons/audittrail/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fr.po b/addons/audittrail/i18n/fr.po index 86b99a09f7e..8cb7000837a 100644 --- a/addons/audittrail/i18n/fr.po +++ b/addons/audittrail/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-04 05:45+0000\n" -"X-Generator: Launchpad (build 16791)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gl.po b/addons/audittrail/i18n/gl.po index c3a59b1888c..6aa08b8e384 100644 --- a/addons/audittrail/i18n/gl.po +++ b/addons/audittrail/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gu.po b/addons/audittrail/i18n/gu.po index 74897f871f7..48c58e37aba 100644 --- a/addons/audittrail/i18n/gu.po +++ b/addons/audittrail/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hr.po b/addons/audittrail/i18n/hr.po index 86cbbccc0ad..1224436cd78 100644 --- a/addons/audittrail/i18n/hr.po +++ b/addons/audittrail/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hu.po b/addons/audittrail/i18n/hu.po index 9e71c2e9328..82104201ead 100644 --- a/addons/audittrail/i18n/hu.po +++ b/addons/audittrail/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/id.po b/addons/audittrail/i18n/id.po index bd947c48758..51561a46a4f 100644 --- a/addons/audittrail/i18n/id.po +++ b/addons/audittrail/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/it.po b/addons/audittrail/i18n/it.po index 658096b7652..d984155ed40 100644 --- a/addons/audittrail/i18n/it.po +++ b/addons/audittrail/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ja.po b/addons/audittrail/i18n/ja.po index 64d62fa15ab..96187492b7c 100644 --- a/addons/audittrail/i18n/ja.po +++ b/addons/audittrail/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ko.po b/addons/audittrail/i18n/ko.po index b5d96457fbf..3f9ae898866 100644 --- a/addons/audittrail/i18n/ko.po +++ b/addons/audittrail/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lt.po b/addons/audittrail/i18n/lt.po index b99e93d7536..89fe213310b 100644 --- a/addons/audittrail/i18n/lt.po +++ b/addons/audittrail/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lv.po b/addons/audittrail/i18n/lv.po index 439ee802545..f33f88629a5 100644 --- a/addons/audittrail/i18n/lv.po +++ b/addons/audittrail/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/mk.po b/addons/audittrail/i18n/mk.po index 9d4b8abcf08..07c42519ac0 100644 --- a/addons/audittrail/i18n/mk.po +++ b/addons/audittrail/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: audittrail diff --git a/addons/audittrail/i18n/mn.po b/addons/audittrail/i18n/mn.po index d1d736e088d..9dd57dd0ac8 100644 --- a/addons/audittrail/i18n/mn.po +++ b/addons/audittrail/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nb.po b/addons/audittrail/i18n/nb.po index 9d6ead6dc99..6464e455eb0 100644 --- a/addons/audittrail/i18n/nb.po +++ b/addons/audittrail/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl.po b/addons/audittrail/i18n/nl.po index 958bed8b241..f2382ba1742 100644 --- a/addons/audittrail/i18n/nl.po +++ b/addons/audittrail/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl_BE.po b/addons/audittrail/i18n/nl_BE.po index fabc6959061..39d841abb41 100644 --- a/addons/audittrail/i18n/nl_BE.po +++ b/addons/audittrail/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/oc.po b/addons/audittrail/i18n/oc.po index c6a9eeb60cc..175a3ad5bc5 100644 --- a/addons/audittrail/i18n/oc.po +++ b/addons/audittrail/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pl.po b/addons/audittrail/i18n/pl.po index 53307001749..75701ecd790 100644 --- a/addons/audittrail/i18n/pl.po +++ b/addons/audittrail/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt.po b/addons/audittrail/i18n/pt.po index 753bc946bcf..b5e84b37ddd 100644 --- a/addons/audittrail/i18n/pt.po +++ b/addons/audittrail/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt_BR.po b/addons/audittrail/i18n/pt_BR.po index 9d060361351..c31bdee5268 100644 --- a/addons/audittrail/i18n/pt_BR.po +++ b/addons/audittrail/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ro.po b/addons/audittrail/i18n/ro.po index 3535c983d45..c1151f3488a 100644 --- a/addons/audittrail/i18n/ro.po +++ b/addons/audittrail/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-18 18:59+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ru.po b/addons/audittrail/i18n/ru.po index 0438c2d3287..8e5ae34624e 100644 --- a/addons/audittrail/i18n/ru.po +++ b/addons/audittrail/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sl.po b/addons/audittrail/i18n/sl.po index bb2773c679d..eed944eae2a 100644 --- a/addons/audittrail/i18n/sl.po +++ b/addons/audittrail/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sq.po b/addons/audittrail/i18n/sq.po index 134527f7983..750f66a95aa 100644 --- a/addons/audittrail/i18n/sq.po +++ b/addons/audittrail/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sr@latin.po b/addons/audittrail/i18n/sr@latin.po index 00c2b30229b..ae7ed1c6a58 100644 --- a/addons/audittrail/i18n/sr@latin.po +++ b/addons/audittrail/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sv.po b/addons/audittrail/i18n/sv.po index d89d8daa2bb..907f5e7635f 100644 --- a/addons/audittrail/i18n/sv.po +++ b/addons/audittrail/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tlh.po b/addons/audittrail/i18n/tlh.po index 28666db2e7a..6b07cab8c01 100644 --- a/addons/audittrail/i18n/tlh.po +++ b/addons/audittrail/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tr.po b/addons/audittrail/i18n/tr.po index 5b38df839af..d24dc0ba80e 100644 --- a/addons/audittrail/i18n/tr.po +++ b/addons/audittrail/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/uk.po b/addons/audittrail/i18n/uk.po index e2b67e0149e..2ebec72731a 100644 --- a/addons/audittrail/i18n/uk.po +++ b/addons/audittrail/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/vi.po b/addons/audittrail/i18n/vi.po index 515231a3c0c..33aa028696b 100644 --- a/addons/audittrail/i18n/vi.po +++ b/addons/audittrail/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_CN.po b/addons/audittrail/i18n/zh_CN.po index 627a74aac79..adf9359ac1f 100644 --- a/addons/audittrail/i18n/zh_CN.po +++ b/addons/audittrail/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_TW.po b/addons/audittrail/i18n/zh_TW.po index d6612654237..4a391905974 100644 --- a/addons/audittrail/i18n/zh_TW.po +++ b/addons/audittrail/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/auth_crypt/i18n/ar.po b/addons/auth_crypt/i18n/ar.po index 75ac72f5b87..57ac44bdd33 100644 --- a/addons/auth_crypt/i18n/ar.po +++ b/addons/auth_crypt/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/cs.po b/addons/auth_crypt/i18n/cs.po index 48073ee3c05..83a734e5619 100644 --- a/addons/auth_crypt/i18n/cs.po +++ b/addons/auth_crypt/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/da.po b/addons/auth_crypt/i18n/da.po index 853b69bb936..3176c41ccc5 100644 --- a/addons/auth_crypt/i18n/da.po +++ b/addons/auth_crypt/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:13+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/de.po b/addons/auth_crypt/i18n/de.po index 35ea54b345e..d8f9733f349 100644 --- a/addons/auth_crypt/i18n/de.po +++ b/addons/auth_crypt/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/en_GB.po b/addons/auth_crypt/i18n/en_GB.po index 3693a1e2bea..423f14aa480 100644 --- a/addons/auth_crypt/i18n/en_GB.po +++ b/addons/auth_crypt/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/es.po b/addons/auth_crypt/i18n/es.po index 46c3065610b..943b3ada68c 100644 --- a/addons/auth_crypt/i18n/es.po +++ b/addons/auth_crypt/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/et.po b/addons/auth_crypt/i18n/et.po index be1b1e849d0..83b123fe268 100644 --- a/addons/auth_crypt/i18n/et.po +++ b/addons/auth_crypt/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 05:25+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/fr.po b/addons/auth_crypt/i18n/fr.po index c5c9bd00fcb..79d65617b27 100644 --- a/addons/auth_crypt/i18n/fr.po +++ b/addons/auth_crypt/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/hr.po b/addons/auth_crypt/i18n/hr.po index 779db54822b..8e8d7f8454a 100644 --- a/addons/auth_crypt/i18n/hr.po +++ b/addons/auth_crypt/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/hu.po b/addons/auth_crypt/i18n/hu.po index 7c75aecc5ef..df7526218e8 100644 --- a/addons/auth_crypt/i18n/hu.po +++ b/addons/auth_crypt/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/it.po b/addons/auth_crypt/i18n/it.po index 1210607183d..fd818801f91 100644 --- a/addons/auth_crypt/i18n/it.po +++ b/addons/auth_crypt/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/lt.po b/addons/auth_crypt/i18n/lt.po index 7bc670c6cef..47696e0a84a 100644 --- a/addons/auth_crypt/i18n/lt.po +++ b/addons/auth_crypt/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/mk.po b/addons/auth_crypt/i18n/mk.po index 3a7dc29c5ce..ddb05f064e2 100644 --- a/addons/auth_crypt/i18n/mk.po +++ b/addons/auth_crypt/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/mn.po b/addons/auth_crypt/i18n/mn.po index ffdcf650e0a..9834b32f1e7 100644 --- a/addons/auth_crypt/i18n/mn.po +++ b/addons/auth_crypt/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/nl.po b/addons/auth_crypt/i18n/nl.po index a3f8ba3e01d..6b5cee47b35 100644 --- a/addons/auth_crypt/i18n/nl.po +++ b/addons/auth_crypt/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-22 21:52+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/nl_BE.po b/addons/auth_crypt/i18n/nl_BE.po index a424848b4cf..3309a745639 100644 --- a/addons/auth_crypt/i18n/nl_BE.po +++ b/addons/auth_crypt/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pl.po b/addons/auth_crypt/i18n/pl.po index e1bc6f7ab6e..651babf477c 100644 --- a/addons/auth_crypt/i18n/pl.po +++ b/addons/auth_crypt/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-03 05:43+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pt.po b/addons/auth_crypt/i18n/pt.po index 899ea320bbd..9ef4430219e 100644 --- a/addons/auth_crypt/i18n/pt.po +++ b/addons/auth_crypt/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pt_BR.po b/addons/auth_crypt/i18n/pt_BR.po index 3516c3129b9..d8d1c792629 100644 --- a/addons/auth_crypt/i18n/pt_BR.po +++ b/addons/auth_crypt/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/ro.po b/addons/auth_crypt/i18n/ro.po index 64a8802391c..0d31cbe4cd2 100644 --- a/addons/auth_crypt/i18n/ro.po +++ b/addons/auth_crypt/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-13 19:29+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/ru.po b/addons/auth_crypt/i18n/ru.po index e588844567e..8cd5621699c 100644 --- a/addons/auth_crypt/i18n/ru.po +++ b/addons/auth_crypt/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/sl.po b/addons/auth_crypt/i18n/sl.po index 46becdd4bf1..046bd53dba5 100644 --- a/addons/auth_crypt/i18n/sl.po +++ b/addons/auth_crypt/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/sv.po b/addons/auth_crypt/i18n/sv.po index 9c62f15f88f..e567bff31fb 100644 --- a/addons/auth_crypt/i18n/sv.po +++ b/addons/auth_crypt/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/tr.po b/addons/auth_crypt/i18n/tr.po index 1bd7b7ef9c5..ff0c4334270 100644 --- a/addons/auth_crypt/i18n/tr.po +++ b/addons/auth_crypt/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/zh_CN.po b/addons/auth_crypt/i18n/zh_CN.po index 0c80ed401fa..7e1190f878c 100644 --- a/addons/auth_crypt/i18n/zh_CN.po +++ b/addons/auth_crypt/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-24 01:49+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_ldap/i18n/ar.po b/addons/auth_ldap/i18n/ar.po index 0f5807ea30a..55c10ac5172 100644 --- a/addons/auth_ldap/i18n/ar.po +++ b/addons/auth_ldap/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/bg.po b/addons/auth_ldap/i18n/bg.po index 579ed98b013..950d8d9eca4 100644 --- a/addons/auth_ldap/i18n/bg.po +++ b/addons/auth_ldap/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ca.po b/addons/auth_ldap/i18n/ca.po index 3b7293bac36..7dc0a4b5c9e 100644 --- a/addons/auth_ldap/i18n/ca.po +++ b/addons/auth_ldap/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/cs.po b/addons/auth_ldap/i18n/cs.po index 257ca129dcb..0501e52a28d 100644 --- a/addons/auth_ldap/i18n/cs.po +++ b/addons/auth_ldap/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/da.po b/addons/auth_ldap/i18n/da.po index c2d929bd7cc..a3fd637ce65 100644 --- a/addons/auth_ldap/i18n/da.po +++ b/addons/auth_ldap/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-10 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/de.po b/addons/auth_ldap/i18n/de.po index 4ac687a5b90..221fb30862a 100644 --- a/addons/auth_ldap/i18n/de.po +++ b/addons/auth_ldap/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/en_GB.po b/addons/auth_ldap/i18n/en_GB.po index 28f6ba9ef77..a9c046d552f 100644 --- a/addons/auth_ldap/i18n/en_GB.po +++ b/addons/auth_ldap/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/es.po b/addons/auth_ldap/i18n/es.po index 288179c82e4..204cc49c7c0 100644 --- a/addons/auth_ldap/i18n/es.po +++ b/addons/auth_ldap/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/es_CR.po b/addons/auth_ldap/i18n/es_CR.po index 4124a50d33b..843ceb76a39 100644 --- a/addons/auth_ldap/i18n/es_CR.po +++ b/addons/auth_ldap/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/fi.po b/addons/auth_ldap/i18n/fi.po index de15178a23d..6ff57c4dabb 100644 --- a/addons/auth_ldap/i18n/fi.po +++ b/addons/auth_ldap/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/fr.po b/addons/auth_ldap/i18n/fr.po index a9007dfe38d..6570bd3a765 100644 --- a/addons/auth_ldap/i18n/fr.po +++ b/addons/auth_ldap/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/gl.po b/addons/auth_ldap/i18n/gl.po index fc2cc5a1226..8609cd06541 100644 --- a/addons/auth_ldap/i18n/gl.po +++ b/addons/auth_ldap/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/hr.po b/addons/auth_ldap/i18n/hr.po index 60ee2fdeb5e..151160d4430 100644 --- a/addons/auth_ldap/i18n/hr.po +++ b/addons/auth_ldap/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/hu.po b/addons/auth_ldap/i18n/hu.po index 069b7e833b9..e702fe1d610 100644 --- a/addons/auth_ldap/i18n/hu.po +++ b/addons/auth_ldap/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/it.po b/addons/auth_ldap/i18n/it.po index 57947a79dc2..0b1c9abc73c 100644 --- a/addons/auth_ldap/i18n/it.po +++ b/addons/auth_ldap/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ja.po b/addons/auth_ldap/i18n/ja.po index bfbb46dbf90..3f72286cc49 100644 --- a/addons/auth_ldap/i18n/ja.po +++ b/addons/auth_ldap/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/mk.po b/addons/auth_ldap/i18n/mk.po index 1098f8be767..383481eb872 100644 --- a/addons/auth_ldap/i18n/mk.po +++ b/addons/auth_ldap/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/mn.po b/addons/auth_ldap/i18n/mn.po index 664b7610976..d95d8ffd074 100644 --- a/addons/auth_ldap/i18n/mn.po +++ b/addons/auth_ldap/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/nb.po b/addons/auth_ldap/i18n/nb.po index 1e4bdc81157..ce9b0b68a21 100644 --- a/addons/auth_ldap/i18n/nb.po +++ b/addons/auth_ldap/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/nl.po b/addons/auth_ldap/i18n/nl.po index 21e8e4cbdd8..87eadc8a9e5 100644 --- a/addons/auth_ldap/i18n/nl.po +++ b/addons/auth_ldap/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pl.po b/addons/auth_ldap/i18n/pl.po index e4c22d7ed3c..995217cb273 100644 --- a/addons/auth_ldap/i18n/pl.po +++ b/addons/auth_ldap/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-15 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/pt.po b/addons/auth_ldap/i18n/pt.po index f2ff9ab0d1a..600cd46bbb6 100644 --- a/addons/auth_ldap/i18n/pt.po +++ b/addons/auth_ldap/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pt_BR.po b/addons/auth_ldap/i18n/pt_BR.po index 2b6cfadc451..da8c3fa17bc 100644 --- a/addons/auth_ldap/i18n/pt_BR.po +++ b/addons/auth_ldap/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ro.po b/addons/auth_ldap/i18n/ro.po index 8adb1dd82af..8eb64a1567b 100644 --- a/addons/auth_ldap/i18n/ro.po +++ b/addons/auth_ldap/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-14 19:18+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ru.po b/addons/auth_ldap/i18n/ru.po index e664db59289..3f7f96957d8 100644 --- a/addons/auth_ldap/i18n/ru.po +++ b/addons/auth_ldap/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/sl.po b/addons/auth_ldap/i18n/sl.po index f7b0e1859cf..f1b7e810c6a 100644 --- a/addons/auth_ldap/i18n/sl.po +++ b/addons/auth_ldap/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/sv.po b/addons/auth_ldap/i18n/sv.po index 3a5a8b36987..c086ccc8774 100644 --- a/addons/auth_ldap/i18n/sv.po +++ b/addons/auth_ldap/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/tr.po b/addons/auth_ldap/i18n/tr.po index dcb96989999..b241c72aebb 100644 --- a/addons/auth_ldap/i18n/tr.po +++ b/addons/auth_ldap/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/zh_CN.po b/addons/auth_ldap/i18n/zh_CN.po index e8499a1f071..272e4e08f35 100644 --- a/addons/auth_ldap/i18n/zh_CN.po +++ b/addons/auth_ldap/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_oauth/i18n/ar.po b/addons/auth_oauth/i18n/ar.po index 8a59ef05ed8..2d11b65534e 100644 --- a/addons/auth_oauth/i18n/ar.po +++ b/addons/auth_oauth/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/cs.po b/addons/auth_oauth/i18n/cs.po index 9af5a5cbbc2..83bc7264236 100644 --- a/addons/auth_oauth/i18n/cs.po +++ b/addons/auth_oauth/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/de.po b/addons/auth_oauth/i18n/de.po index 75ff7c6c8cc..13dbe97684d 100644 --- a/addons/auth_oauth/i18n/de.po +++ b/addons/auth_oauth/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/en_GB.po b/addons/auth_oauth/i18n/en_GB.po index 54770f3bdfa..30ecb69d5ff 100644 --- a/addons/auth_oauth/i18n/en_GB.po +++ b/addons/auth_oauth/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/es.po b/addons/auth_oauth/i18n/es.po index c950c103fcc..97db94562fd 100644 --- a/addons/auth_oauth/i18n/es.po +++ b/addons/auth_oauth/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/fr.po b/addons/auth_oauth/i18n/fr.po index bc00f4b592d..67ef33957df 100644 --- a/addons/auth_oauth/i18n/fr.po +++ b/addons/auth_oauth/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/hr.po b/addons/auth_oauth/i18n/hr.po index fd45d24292b..c0c70daa4e2 100644 --- a/addons/auth_oauth/i18n/hr.po +++ b/addons/auth_oauth/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/hu.po b/addons/auth_oauth/i18n/hu.po index ee028fd4d33..81eaccd19ca 100644 --- a/addons/auth_oauth/i18n/hu.po +++ b/addons/auth_oauth/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/it.po b/addons/auth_oauth/i18n/it.po index 99059b238bb..c33c21b0687 100644 --- a/addons/auth_oauth/i18n/it.po +++ b/addons/auth_oauth/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/mk.po b/addons/auth_oauth/i18n/mk.po index d94898b936f..31d3ebc513d 100644 --- a/addons/auth_oauth/i18n/mk.po +++ b/addons/auth_oauth/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/nb.po b/addons/auth_oauth/i18n/nb.po index 613987d46e0..dfac3c3d743 100644 --- a/addons/auth_oauth/i18n/nb.po +++ b/addons/auth_oauth/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/nl.po b/addons/auth_oauth/i18n/nl.po index 008ed2a8643..31e7106d454 100644 --- a/addons/auth_oauth/i18n/nl.po +++ b/addons/auth_oauth/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-28 11:48+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pl.po b/addons/auth_oauth/i18n/pl.po index 52935527dca..f85c4e3b0e5 100644 --- a/addons/auth_oauth/i18n/pl.po +++ b/addons/auth_oauth/i18n/pl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-14 12:26+0000\n" +"PO-Revision-Date: 2013-11-20 18:08+0000\n" "Last-Translator: Mirosław Bojanowicz \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-15 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth @@ -30,7 +30,7 @@ msgstr "URL uwierzytelniania" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: auth_oauth #: field:auth.oauth.provider,name:0 @@ -108,7 +108,7 @@ msgstr "" #. module: auth_oauth #: help:res.users,oauth_uid:0 msgid "Oauth Provider user_id" -msgstr "" +msgstr "Dostawca Oauth user_id" #. module: auth_oauth #: field:auth.oauth.provider,data_endpoint:0 diff --git a/addons/auth_oauth/i18n/pt.po b/addons/auth_oauth/i18n/pt.po index d66b4f5ccd4..62f5ec98aac 100644 --- a/addons/auth_oauth/i18n/pt.po +++ b/addons/auth_oauth/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pt_BR.po b/addons/auth_oauth/i18n/pt_BR.po index 34ac4fe26b2..86478f83eaa 100644 --- a/addons/auth_oauth/i18n/pt_BR.po +++ b/addons/auth_oauth/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/ro.po b/addons/auth_oauth/i18n/ro.po index 8a9a35e2c09..9cf302fcd0b 100644 --- a/addons/auth_oauth/i18n/ro.po +++ b/addons/auth_oauth/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-14 19:28+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/ru.po b/addons/auth_oauth/i18n/ru.po index 85d8524c61d..0c57bf01be4 100644 --- a/addons/auth_oauth/i18n/ru.po +++ b/addons/auth_oauth/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 06:30+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/sl.po b/addons/auth_oauth/i18n/sl.po index 9b720557d3c..3aee15bce9e 100644 --- a/addons/auth_oauth/i18n/sl.po +++ b/addons/auth_oauth/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/sv.po b/addons/auth_oauth/i18n/sv.po index 4b835cbc87a..f4b73d21a74 100644 --- a/addons/auth_oauth/i18n/sv.po +++ b/addons/auth_oauth/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/tr.po b/addons/auth_oauth/i18n/tr.po index e6ec77630bf..200216496ca 100644 --- a/addons/auth_oauth/i18n/tr.po +++ b/addons/auth_oauth/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/zh_CN.po b/addons/auth_oauth/i18n/zh_CN.po index 7b29d0ddd6c..b9312b98dd3 100644 --- a/addons/auth_oauth/i18n/zh_CN.po +++ b/addons/auth_oauth/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth_signup/i18n/cs.po b/addons/auth_oauth_signup/i18n/cs.po index d0a81e844b9..16d26b98bda 100644 --- a/addons/auth_oauth_signup/i18n/cs.po +++ b/addons/auth_oauth_signup/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/da.po b/addons/auth_oauth_signup/i18n/da.po index 681c2c26b6e..80b664a6a3c 100644 --- a/addons/auth_oauth_signup/i18n/da.po +++ b/addons/auth_oauth_signup/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/de.po b/addons/auth_oauth_signup/i18n/de.po index 3773a744617..41ea25faeaf 100644 --- a/addons/auth_oauth_signup/i18n/de.po +++ b/addons/auth_oauth_signup/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/en_GB.po b/addons/auth_oauth_signup/i18n/en_GB.po index 04c86ee8816..95aa62f35a1 100644 --- a/addons/auth_oauth_signup/i18n/en_GB.po +++ b/addons/auth_oauth_signup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/es.po b/addons/auth_oauth_signup/i18n/es.po index 208fe59b499..fadd953beb3 100644 --- a/addons/auth_oauth_signup/i18n/es.po +++ b/addons/auth_oauth_signup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/et.po b/addons/auth_oauth_signup/i18n/et.po index ae6a5a3e8bb..8ab9fa996d9 100644 --- a/addons/auth_oauth_signup/i18n/et.po +++ b/addons/auth_oauth_signup/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 05:25+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/fr.po b/addons/auth_oauth_signup/i18n/fr.po index 17253a1f6b7..8c95c2ae05a 100644 --- a/addons/auth_oauth_signup/i18n/fr.po +++ b/addons/auth_oauth_signup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/hr.po b/addons/auth_oauth_signup/i18n/hr.po index 99751e21985..6ecba45be3f 100644 --- a/addons/auth_oauth_signup/i18n/hr.po +++ b/addons/auth_oauth_signup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/hu.po b/addons/auth_oauth_signup/i18n/hu.po index a3aac896449..3b23c8a1af0 100644 --- a/addons/auth_oauth_signup/i18n/hu.po +++ b/addons/auth_oauth_signup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/it.po b/addons/auth_oauth_signup/i18n/it.po index 8dda05e9f86..86080d893a7 100644 --- a/addons/auth_oauth_signup/i18n/it.po +++ b/addons/auth_oauth_signup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/lt.po b/addons/auth_oauth_signup/i18n/lt.po index 72020ba312a..343cd5d2b2e 100644 --- a/addons/auth_oauth_signup/i18n/lt.po +++ b/addons/auth_oauth_signup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/mk.po b/addons/auth_oauth_signup/i18n/mk.po index 315964f7261..e2022f0860e 100644 --- a/addons/auth_oauth_signup/i18n/mk.po +++ b/addons/auth_oauth_signup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/mn.po b/addons/auth_oauth_signup/i18n/mn.po index c6168fd0684..403365a066b 100644 --- a/addons/auth_oauth_signup/i18n/mn.po +++ b/addons/auth_oauth_signup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/nl.po b/addons/auth_oauth_signup/i18n/nl.po index b453e2fe8ca..df9318da102 100644 --- a/addons/auth_oauth_signup/i18n/nl.po +++ b/addons/auth_oauth_signup/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-22 21:47+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/nl_BE.po b/addons/auth_oauth_signup/i18n/nl_BE.po index dca8b3a6747..e2b7e633610 100644 --- a/addons/auth_oauth_signup/i18n/nl_BE.po +++ b/addons/auth_oauth_signup/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pl.po b/addons/auth_oauth_signup/i18n/pl.po index b968f7e7373..4a7d6c2e577 100644 --- a/addons/auth_oauth_signup/i18n/pl.po +++ b/addons/auth_oauth_signup/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-15 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/pt.po b/addons/auth_oauth_signup/i18n/pt.po index 031d5ee6e5a..655cfa6db85 100644 --- a/addons/auth_oauth_signup/i18n/pt.po +++ b/addons/auth_oauth_signup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pt_BR.po b/addons/auth_oauth_signup/i18n/pt_BR.po index 3405adfad75..80d7b976f64 100644 --- a/addons/auth_oauth_signup/i18n/pt_BR.po +++ b/addons/auth_oauth_signup/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/ro.po b/addons/auth_oauth_signup/i18n/ro.po index 5bd67502a1f..b853ec66d0f 100644 --- a/addons/auth_oauth_signup/i18n/ro.po +++ b/addons/auth_oauth_signup/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-14 19:07+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/ru.po b/addons/auth_oauth_signup/i18n/ru.po index 66111f6fcd1..ad9ef5e56ae 100644 --- a/addons/auth_oauth_signup/i18n/ru.po +++ b/addons/auth_oauth_signup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/sl.po b/addons/auth_oauth_signup/i18n/sl.po index 8468ded9219..5da4189b603 100644 --- a/addons/auth_oauth_signup/i18n/sl.po +++ b/addons/auth_oauth_signup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/sv.po b/addons/auth_oauth_signup/i18n/sv.po index 90f45fc6f33..c04b05334ba 100644 --- a/addons/auth_oauth_signup/i18n/sv.po +++ b/addons/auth_oauth_signup/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/tr.po b/addons/auth_oauth_signup/i18n/tr.po index ed7d448b926..6a079cb9400 100644 --- a/addons/auth_oauth_signup/i18n/tr.po +++ b/addons/auth_oauth_signup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/vi.po b/addons/auth_oauth_signup/i18n/vi.po index 306fd17c0bc..d5f44f4d124 100644 --- a/addons/auth_oauth_signup/i18n/vi.po +++ b/addons/auth_oauth_signup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/zh_CN.po b/addons/auth_oauth_signup/i18n/zh_CN.po index caa65639f4e..a8d8c65d6e7 100644 --- a/addons/auth_oauth_signup/i18n/zh_CN.po +++ b/addons/auth_oauth_signup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/zh_TW.po b/addons/auth_oauth_signup/i18n/zh_TW.po index ebf03ab1dfc..25fa94c88d0 100644 --- a/addons/auth_oauth_signup/i18n/zh_TW.po +++ b/addons/auth_oauth_signup/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_openid/i18n/ar.po b/addons/auth_openid/i18n/ar.po index dc4b3002784..6bea4cb2ed1 100644 --- a/addons/auth_openid/i18n/ar.po +++ b/addons/auth_openid/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/cs.po b/addons/auth_openid/i18n/cs.po index 263cb2ddfb6..7033489b8a6 100644 --- a/addons/auth_openid/i18n/cs.po +++ b/addons/auth_openid/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/de.po b/addons/auth_openid/i18n/de.po index b35f1610d3a..e28073c287b 100644 --- a/addons/auth_openid/i18n/de.po +++ b/addons/auth_openid/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/en_GB.po b/addons/auth_openid/i18n/en_GB.po index 4f83e5f4f0f..1ad967d4c11 100644 --- a/addons/auth_openid/i18n/en_GB.po +++ b/addons/auth_openid/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es.po b/addons/auth_openid/i18n/es.po index 9ce979072ec..7599a0b3f3c 100644 --- a/addons/auth_openid/i18n/es.po +++ b/addons/auth_openid/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es_CR.po b/addons/auth_openid/i18n/es_CR.po index 59c808d4be1..8353779034b 100644 --- a/addons/auth_openid/i18n/es_CR.po +++ b/addons/auth_openid/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fi.po b/addons/auth_openid/i18n/fi.po index eb0b9699cbf..b29889618b0 100644 --- a/addons/auth_openid/i18n/fi.po +++ b/addons/auth_openid/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fr.po b/addons/auth_openid/i18n/fr.po index cbf92e985ad..4d1544d0f55 100644 --- a/addons/auth_openid/i18n/fr.po +++ b/addons/auth_openid/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/gu.po b/addons/auth_openid/i18n/gu.po index c8596a207d9..e29deb7832b 100644 --- a/addons/auth_openid/i18n/gu.po +++ b/addons/auth_openid/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hr.po b/addons/auth_openid/i18n/hr.po index d092d9608dc..aca528fcba0 100644 --- a/addons/auth_openid/i18n/hr.po +++ b/addons/auth_openid/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hu.po b/addons/auth_openid/i18n/hu.po index 85777212f44..b43c5ea0b70 100644 --- a/addons/auth_openid/i18n/hu.po +++ b/addons/auth_openid/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/it.po b/addons/auth_openid/i18n/it.po index 1a274d4b01d..20020484aa7 100644 --- a/addons/auth_openid/i18n/it.po +++ b/addons/auth_openid/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ja.po b/addons/auth_openid/i18n/ja.po index 207bfd69696..9a0317a1bcf 100644 --- a/addons/auth_openid/i18n/ja.po +++ b/addons/auth_openid/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/mk.po b/addons/auth_openid/i18n/mk.po index f1185f1a9fc..266f7b73526 100644 --- a/addons/auth_openid/i18n/mk.po +++ b/addons/auth_openid/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/mn.po b/addons/auth_openid/i18n/mn.po index 87c0f6d3e6e..a031a35e824 100644 --- a/addons/auth_openid/i18n/mn.po +++ b/addons/auth_openid/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nb.po b/addons/auth_openid/i18n/nb.po index 75de12f3f81..449382604dc 100644 --- a/addons/auth_openid/i18n/nb.po +++ b/addons/auth_openid/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nl.po b/addons/auth_openid/i18n/nl.po index 3374859493d..beb30af4637 100644 --- a/addons/auth_openid/i18n/nl.po +++ b/addons/auth_openid/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pl.po b/addons/auth_openid/i18n/pl.po index 02d6d0e74d6..5c765d48044 100644 --- a/addons/auth_openid/i18n/pl.po +++ b/addons/auth_openid/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-15 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/pt.po b/addons/auth_openid/i18n/pt.po index 38bd8137f64..d398ce9c74a 100644 --- a/addons/auth_openid/i18n/pt.po +++ b/addons/auth_openid/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pt_BR.po b/addons/auth_openid/i18n/pt_BR.po index 4ac77a251b5..be7f193cac4 100644 --- a/addons/auth_openid/i18n/pt_BR.po +++ b/addons/auth_openid/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ro.po b/addons/auth_openid/i18n/ro.po index c3735cc041f..edf03c7a727 100644 --- a/addons/auth_openid/i18n/ro.po +++ b/addons/auth_openid/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ru.po b/addons/auth_openid/i18n/ru.po index e4cce352a8d..9aaca726549 100644 --- a/addons/auth_openid/i18n/ru.po +++ b/addons/auth_openid/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sk.po b/addons/auth_openid/i18n/sk.po index 792b0cbd82b..6d0a709d202 100644 --- a/addons/auth_openid/i18n/sk.po +++ b/addons/auth_openid/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sl.po b/addons/auth_openid/i18n/sl.po index 9725145e13e..eba75de73f3 100644 --- a/addons/auth_openid/i18n/sl.po +++ b/addons/auth_openid/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:50+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sr@latin.po b/addons/auth_openid/i18n/sr@latin.po index dd73f5c1f78..12ec80d911a 100644 --- a/addons/auth_openid/i18n/sr@latin.po +++ b/addons/auth_openid/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sv.po b/addons/auth_openid/i18n/sv.po index fbfae4e9899..337e4bb2561 100644 --- a/addons/auth_openid/i18n/sv.po +++ b/addons/auth_openid/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/tr.po b/addons/auth_openid/i18n/tr.po index 01f1af4f306..b41de6f352e 100644 --- a/addons/auth_openid/i18n/tr.po +++ b/addons/auth_openid/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/vi.po b/addons/auth_openid/i18n/vi.po index 4745e05f2f9..1fe746a55b2 100644 --- a/addons/auth_openid/i18n/vi.po +++ b/addons/auth_openid/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/zh_CN.po b/addons/auth_openid/i18n/zh_CN.po index 3671f74d987..6b52b81625e 100644 --- a/addons/auth_openid/i18n/zh_CN.po +++ b/addons/auth_openid/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-11 05:19+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_signup/i18n/ar.po b/addons/auth_signup/i18n/ar.po index 968840907fd..035ab0e2aa2 100644 --- a/addons/auth_signup/i18n/ar.po +++ b/addons/auth_signup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/cs.po b/addons/auth_signup/i18n/cs.po index 0fd8c42bb31..fcccdfe0eaf 100644 --- a/addons/auth_signup/i18n/cs.po +++ b/addons/auth_signup/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/de.po b/addons/auth_signup/i18n/de.po index e0f397e77da..4a161edc6d9 100644 --- a/addons/auth_signup/i18n/de.po +++ b/addons/auth_signup/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-27 05:02+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/en_GB.po b/addons/auth_signup/i18n/en_GB.po index a8fdc664943..1c0cd6cade0 100644 --- a/addons/auth_signup/i18n/en_GB.po +++ b/addons/auth_signup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/es.po b/addons/auth_signup/i18n/es.po index 1b6872eaba6..279658de474 100644 --- a/addons/auth_signup/i18n/es.po +++ b/addons/auth_signup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/es_CO.po b/addons/auth_signup/i18n/es_CO.po index b8c04a6bc99..e96d15d6325 100644 --- a/addons/auth_signup/i18n/es_CO.po +++ b/addons/auth_signup/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/fr.po b/addons/auth_signup/i18n/fr.po index 0ee21320fe3..e5758829106 100644 --- a/addons/auth_signup/i18n/fr.po +++ b/addons/auth_signup/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-21 01:48+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/hr.po b/addons/auth_signup/i18n/hr.po index 327b27110f1..a83d002ff35 100644 --- a/addons/auth_signup/i18n/hr.po +++ b/addons/auth_signup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/hu.po b/addons/auth_signup/i18n/hu.po index 47189a9b55d..b995b6b63e2 100644 --- a/addons/auth_signup/i18n/hu.po +++ b/addons/auth_signup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/it.po b/addons/auth_signup/i18n/it.po index 9ae979e312b..6afe5c4ac00 100644 --- a/addons/auth_signup/i18n/it.po +++ b/addons/auth_signup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/lt.po b/addons/auth_signup/i18n/lt.po index 713a40c1180..053b5eacfa8 100644 --- a/addons/auth_signup/i18n/lt.po +++ b/addons/auth_signup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/mk.po b/addons/auth_signup/i18n/mk.po index b907381c6a8..f3ad4806b46 100644 --- a/addons/auth_signup/i18n/mk.po +++ b/addons/auth_signup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/mn.po b/addons/auth_signup/i18n/mn.po index 2e88d78c80c..6df09ec5ccd 100644 --- a/addons/auth_signup/i18n/mn.po +++ b/addons/auth_signup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/nb.po b/addons/auth_signup/i18n/nb.po index 56faec299aa..670c12cd0bd 100644 --- a/addons/auth_signup/i18n/nb.po +++ b/addons/auth_signup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/nl.po b/addons/auth_signup/i18n/nl.po index 13b486ecebb..9916b540b50 100644 --- a/addons/auth_signup/i18n/nl.po +++ b/addons/auth_signup/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-08 11:16+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/pl.po b/addons/auth_signup/i18n/pl.po index a600241df03..4efc9750e6d 100644 --- a/addons/auth_signup/i18n/pl.po +++ b/addons/auth_signup/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/pt.po b/addons/auth_signup/i18n/pt.po index 560a4247141..bccb11d6a32 100644 --- a/addons/auth_signup/i18n/pt.po +++ b/addons/auth_signup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/pt_BR.po b/addons/auth_signup/i18n/pt_BR.po index ed47c5f4227..587868b0590 100644 --- a/addons/auth_signup/i18n/pt_BR.po +++ b/addons/auth_signup/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-01 04:52+0000\n" -"X-Generator: Launchpad (build 16750)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/ro.po b/addons/auth_signup/i18n/ro.po index 099dc96c5e5..d29e432ca98 100644 --- a/addons/auth_signup/i18n/ro.po +++ b/addons/auth_signup/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:28+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/ru.po b/addons/auth_signup/i18n/ru.po index 7e1db800be3..6ed3989f2b2 100644 --- a/addons/auth_signup/i18n/ru.po +++ b/addons/auth_signup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/sl.po b/addons/auth_signup/i18n/sl.po index 3ee02ebdf44..a86c6552744 100644 --- a/addons/auth_signup/i18n/sl.po +++ b/addons/auth_signup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/tr.po b/addons/auth_signup/i18n/tr.po index e9151c3fa9c..de91a09dd50 100644 --- a/addons/auth_signup/i18n/tr.po +++ b/addons/auth_signup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/vi.po b/addons/auth_signup/i18n/vi.po index 607d095c71d..30620b7e19b 100644 --- a/addons/auth_signup/i18n/vi.po +++ b/addons/auth_signup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/auth_signup/i18n/zh_CN.po b/addons/auth_signup/i18n/zh_CN.po index 6ac3c39b2c4..f1b77b3ee4c 100644 --- a/addons/auth_signup/i18n/zh_CN.po +++ b/addons/auth_signup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 @@ -27,7 +27,7 @@ msgstr "" #. module: auth_signup #: field:res.partner,signup_type:0 msgid "Signup Token Type" -msgstr "" +msgstr "注册令牌(Token)类型" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -109,6 +109,12 @@ msgid "" "\n" "

Note: If you do not expect this, you can safely ignore this email.

" msgstr "" +"\n" +"

您收到这封邮件是因为绑定该邮件的openerp用户申请了密码重置


\n" +"\n" +"

点我重置密码.


\n" +"\n" +"

注意: 如果该邮件不是你想要的,请忽略掉.

" #. module: auth_signup #: view:res.users:0 @@ -191,6 +197,8 @@ msgid "" "Cannot send email: no outgoing email server configured.\n" "You can configure it under Settings/General Settings." msgstr "" +"无法发送邮件: 没有设置发送邮件服务器信息.\n" +"请到菜单栏 Settings/General Settings 设置." #. module: auth_signup #. openerp-web @@ -235,7 +243,7 @@ msgstr "注册过期" #. module: auth_signup #: help:base.config.settings,auth_signup_reset_password:0 msgid "This allows users to trigger a password reset from the Login page." -msgstr "" +msgstr "用户可以在登录页点击来重置密码" #. module: auth_signup #. openerp-web @@ -260,21 +268,21 @@ msgstr "注册令牌( Token )是有效的" #: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" -msgstr "" +msgstr "用户名" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" -msgstr "" +msgstr "密码错误" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." -msgstr "" +msgstr "密码错误,请重新输入" #. module: auth_signup #. openerp-web @@ -282,12 +290,12 @@ msgstr "" #: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" -msgstr "" +msgstr "请选择一个数据库" #. module: auth_signup #: field:base.config.settings,auth_signup_reset_password:0 msgid "Enable password reset from Login page" -msgstr "" +msgstr "允许在登录页开启密码重置功能" #. module: auth_signup #: model:email.template,subject:auth_signup.set_password_email @@ -322,9 +330,6 @@ msgstr "注册" #~ msgid "New" #~ msgstr "新建" -#~ msgid "Active" -#~ msgstr "启用" - #~ msgid "Resetting Password" #~ msgstr "复位密码" @@ -337,3 +342,10 @@ msgstr "注册" #, python-format #~ msgid "Sign up" #~ msgstr "注册" + +#~ msgid "Active" +#~ msgstr "激活" + +#, python-format +#~ msgid "Mail sent to:" +#~ msgstr "收件人" diff --git a/addons/auth_signup/i18n/zh_TW.po b/addons/auth_signup/i18n/zh_TW.po index 727fd5bc30f..fe03cd0ad5f 100644 --- a/addons/auth_signup/i18n/zh_TW.po +++ b/addons/auth_signup/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: auth_signup #: view:res.users:0 diff --git a/addons/base_action_rule/i18n/ar.po b/addons/base_action_rule/i18n/ar.po index 1b5d82fb136..2e41d052efd 100644 --- a/addons/base_action_rule/i18n/ar.po +++ b/addons/base_action_rule/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/bg.po b/addons/base_action_rule/i18n/bg.po index db76d90dddc..1e23c477ffd 100644 --- a/addons/base_action_rule/i18n/bg.po +++ b/addons/base_action_rule/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/bs.po b/addons/base_action_rule/i18n/bs.po index 5096fb78d88..4a62829608a 100644 --- a/addons/base_action_rule/i18n/bs.po +++ b/addons/base_action_rule/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:24+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ca.po b/addons/base_action_rule/i18n/ca.po index a7b3c2feb0c..950e2986a48 100644 --- a/addons/base_action_rule/i18n/ca.po +++ b/addons/base_action_rule/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/cs.po b/addons/base_action_rule/i18n/cs.po index 70bed3bba3a..c15d7c2a91f 100644 --- a/addons/base_action_rule/i18n/cs.po +++ b/addons/base_action_rule/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/da.po b/addons/base_action_rule/i18n/da.po index e629a52e185..0e63a55691d 100644 --- a/addons/base_action_rule/i18n/da.po +++ b/addons/base_action_rule/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-15 05:18+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/de.po b/addons/base_action_rule/i18n/de.po index 62294cddbd8..87c585fe652 100644 --- a/addons/base_action_rule/i18n/de.po +++ b/addons/base_action_rule/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/el.po b/addons/base_action_rule/i18n/el.po index d9f545828e2..4e1840ec64d 100644 --- a/addons/base_action_rule/i18n/el.po +++ b/addons/base_action_rule/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es.po b/addons/base_action_rule/i18n/es.po index 3674f7d232f..4d6f211d2a4 100644 --- a/addons/base_action_rule/i18n/es.po +++ b/addons/base_action_rule/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_CR.po b/addons/base_action_rule/i18n/es_CR.po index 51d4fdc80a6..ab8d761ca68 100644 --- a/addons/base_action_rule/i18n/es_CR.po +++ b/addons/base_action_rule/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_EC.po b/addons/base_action_rule/i18n/es_EC.po index 3633bd9f354..947b2879372 100644 --- a/addons/base_action_rule/i18n/es_EC.po +++ b/addons/base_action_rule/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_PY.po b/addons/base_action_rule/i18n/es_PY.po index 175bd004dcb..99097bb8e53 100644 --- a/addons/base_action_rule/i18n/es_PY.po +++ b/addons/base_action_rule/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fa.po b/addons/base_action_rule/i18n/fa.po index e1e723e6c1a..2daee107c31 100644 --- a/addons/base_action_rule/i18n/fa.po +++ b/addons/base_action_rule/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fi.po b/addons/base_action_rule/i18n/fi.po index 47516acd99f..99a1b515502 100644 --- a/addons/base_action_rule/i18n/fi.po +++ b/addons/base_action_rule/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fr.po b/addons/base_action_rule/i18n/fr.po index 927c8c2c923..60baf32bbf1 100644 --- a/addons/base_action_rule/i18n/fr.po +++ b/addons/base_action_rule/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-29 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/gl.po b/addons/base_action_rule/i18n/gl.po index d3985641c55..61b0e53d116 100644 --- a/addons/base_action_rule/i18n/gl.po +++ b/addons/base_action_rule/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/gu.po b/addons/base_action_rule/i18n/gu.po index c7782741c30..0ac01329b81 100644 --- a/addons/base_action_rule/i18n/gu.po +++ b/addons/base_action_rule/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/hr.po b/addons/base_action_rule/i18n/hr.po index 1111ed06614..000900e50c8 100644 --- a/addons/base_action_rule/i18n/hr.po +++ b/addons/base_action_rule/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/hu.po b/addons/base_action_rule/i18n/hu.po index 599f3df4c22..dc9badb392d 100644 --- a/addons/base_action_rule/i18n/hu.po +++ b/addons/base_action_rule/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/it.po b/addons/base_action_rule/i18n/it.po index c01562475d2..df335a004d6 100644 --- a/addons/base_action_rule/i18n/it.po +++ b/addons/base_action_rule/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ja.po b/addons/base_action_rule/i18n/ja.po index aa4653108ed..d1753ed6bef 100644 --- a/addons/base_action_rule/i18n/ja.po +++ b/addons/base_action_rule/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/lt.po b/addons/base_action_rule/i18n/lt.po index 0884403763b..6669d912ae6 100644 --- a/addons/base_action_rule/i18n/lt.po +++ b/addons/base_action_rule/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/lv.po b/addons/base_action_rule/i18n/lv.po index 91d5d9154aa..90ff60fa984 100644 --- a/addons/base_action_rule/i18n/lv.po +++ b/addons/base_action_rule/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/mk.po b/addons/base_action_rule/i18n/mk.po index 80d5fb58162..6779f4206e9 100644 --- a/addons/base_action_rule/i18n/mk.po +++ b/addons/base_action_rule/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/mn.po b/addons/base_action_rule/i18n/mn.po index 1ce77ab7709..f00a29cc507 100644 --- a/addons/base_action_rule/i18n/mn.po +++ b/addons/base_action_rule/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/nb.po b/addons/base_action_rule/i18n/nb.po index 1f302542ed8..3c93a9d6161 100644 --- a/addons/base_action_rule/i18n/nb.po +++ b/addons/base_action_rule/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/nl.po b/addons/base_action_rule/i18n/nl.po index 14be315f4a8..1a09b73dc0b 100644 --- a/addons/base_action_rule/i18n/nl.po +++ b/addons/base_action_rule/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-16 05:13+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/pl.po b/addons/base_action_rule/i18n/pl.po index bc67f7240f7..3d9b9798be8 100644 --- a/addons/base_action_rule/i18n/pl.po +++ b/addons/base_action_rule/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/pt.po b/addons/base_action_rule/i18n/pt.po index 2998e2eac55..3fcf4f30790 100644 --- a/addons/base_action_rule/i18n/pt.po +++ b/addons/base_action_rule/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/pt_BR.po b/addons/base_action_rule/i18n/pt_BR.po index 1cb2391ca0f..7f30b4f7afb 100644 --- a/addons/base_action_rule/i18n/pt_BR.po +++ b/addons/base_action_rule/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 19:49+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:35+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ro.po b/addons/base_action_rule/i18n/ro.po index ba61bfb59be..2d21c0fa150 100644 --- a/addons/base_action_rule/i18n/ro.po +++ b/addons/base_action_rule/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-19 13:22+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ru.po b/addons/base_action_rule/i18n/ru.po index 374247d3a4b..03545fc51bd 100644 --- a/addons/base_action_rule/i18n/ru.po +++ b/addons/base_action_rule/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-17 07:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sl.po b/addons/base_action_rule/i18n/sl.po index 063983d2381..ff7bf81a5fb 100644 --- a/addons/base_action_rule/i18n/sl.po +++ b/addons/base_action_rule/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sq.po b/addons/base_action_rule/i18n/sq.po index f8b96bd8675..873b6dfde12 100644 --- a/addons/base_action_rule/i18n/sq.po +++ b/addons/base_action_rule/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sr.po b/addons/base_action_rule/i18n/sr.po index cd3a7a87ce1..cbbcc36b59c 100644 --- a/addons/base_action_rule/i18n/sr.po +++ b/addons/base_action_rule/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sr@latin.po b/addons/base_action_rule/i18n/sr@latin.po index 5a080726457..e5fd9d194ad 100644 --- a/addons/base_action_rule/i18n/sr@latin.po +++ b/addons/base_action_rule/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sv.po b/addons/base_action_rule/i18n/sv.po index ece63060523..a3546bc3847 100644 --- a/addons/base_action_rule/i18n/sv.po +++ b/addons/base_action_rule/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/tr.po b/addons/base_action_rule/i18n/tr.po index c9ed752d8eb..67b55305388 100644 --- a/addons/base_action_rule/i18n/tr.po +++ b/addons/base_action_rule/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/zh_CN.po b/addons/base_action_rule/i18n/zh_CN.po index 1227da8112e..c218ae2c6c6 100644 --- a/addons/base_action_rule/i18n/zh_CN.po +++ b/addons/base_action_rule/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/zh_TW.po b/addons/base_action_rule/i18n/zh_TW.po index 7a8f8bcc9af..7e6060166e7 100644 --- a/addons/base_action_rule/i18n/zh_TW.po +++ b/addons/base_action_rule/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_calendar/i18n/af.po b/addons/base_calendar/i18n/af.po index 7e796be6586..10ed40f5e72 100644 --- a/addons/base_calendar/i18n/af.po +++ b/addons/base_calendar/i18n/af.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ar.po b/addons/base_calendar/i18n/ar.po index f240277e37c..04cbda40fda 100644 --- a/addons/base_calendar/i18n/ar.po +++ b/addons/base_calendar/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/bg.po b/addons/base_calendar/i18n/bg.po index 2a197480ee3..e6166478279 100644 --- a/addons/base_calendar/i18n/bg.po +++ b/addons/base_calendar/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/bn.po b/addons/base_calendar/i18n/bn.po index 36754d1ef93..9a5cf32c194 100644 --- a/addons/base_calendar/i18n/bn.po +++ b/addons/base_calendar/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/bs.po b/addons/base_calendar/i18n/bs.po index 0450fb962e7..9a46d098613 100644 --- a/addons/base_calendar/i18n/bs.po +++ b/addons/base_calendar/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:24+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ca.po b/addons/base_calendar/i18n/ca.po index 953a91df002..37ee28afcbc 100644 --- a/addons/base_calendar/i18n/ca.po +++ b/addons/base_calendar/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/cs.po b/addons/base_calendar/i18n/cs.po index 1d1e29b8038..4985d5abafb 100644 --- a/addons/base_calendar/i18n/cs.po +++ b/addons/base_calendar/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/da.po b/addons/base_calendar/i18n/da.po index 28355af0f0c..992cef965e7 100644 --- a/addons/base_calendar/i18n/da.po +++ b/addons/base_calendar/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/de.po b/addons/base_calendar/i18n/de.po index 8d6d8375877..ecf5b19bafa 100644 --- a/addons/base_calendar/i18n/de.po +++ b/addons/base_calendar/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/el.po b/addons/base_calendar/i18n/el.po index 894aa7d1370..dc93b5e4012 100644 --- a/addons/base_calendar/i18n/el.po +++ b/addons/base_calendar/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/es.po b/addons/base_calendar/i18n/es.po index 603b37ccdbf..6832a844ec7 100644 --- a/addons/base_calendar/i18n/es.po +++ b/addons/base_calendar/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/es_CR.po b/addons/base_calendar/i18n/es_CR.po index ef7a2138194..1631a31bb3b 100644 --- a/addons/base_calendar/i18n/es_CR.po +++ b/addons/base_calendar/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/es_EC.po b/addons/base_calendar/i18n/es_EC.po index 81d42507142..bb3b8ba9d51 100644 --- a/addons/base_calendar/i18n/es_EC.po +++ b/addons/base_calendar/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/es_MX.po b/addons/base_calendar/i18n/es_MX.po index f7062cc3913..fe4e7be0a09 100644 --- a/addons/base_calendar/i18n/es_MX.po +++ b/addons/base_calendar/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/es_PY.po b/addons/base_calendar/i18n/es_PY.po index 3858a09a1ca..96a17a916c5 100644 --- a/addons/base_calendar/i18n/es_PY.po +++ b/addons/base_calendar/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/et.po b/addons/base_calendar/i18n/et.po index c8e51b872c7..210f75c361e 100644 --- a/addons/base_calendar/i18n/et.po +++ b/addons/base_calendar/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/fa.po b/addons/base_calendar/i18n/fa.po index 3561e22d3c9..c7aabec1228 100644 --- a/addons/base_calendar/i18n/fa.po +++ b/addons/base_calendar/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/fi.po b/addons/base_calendar/i18n/fi.po index 350f22eb0c7..9db6d451b9c 100644 --- a/addons/base_calendar/i18n/fi.po +++ b/addons/base_calendar/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/fr.po b/addons/base_calendar/i18n/fr.po index af25daf3545..f1ffe14250e 100644 --- a/addons/base_calendar/i18n/fr.po +++ b/addons/base_calendar/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-23 05:52+0000\n" -"X-Generator: Launchpad (build 16737)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/gl.po b/addons/base_calendar/i18n/gl.po index 0af4e83c47d..c5dd72f3b2d 100644 --- a/addons/base_calendar/i18n/gl.po +++ b/addons/base_calendar/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/hr.po b/addons/base_calendar/i18n/hr.po index 8e0d326349c..7d5510a5f5c 100644 --- a/addons/base_calendar/i18n/hr.po +++ b/addons/base_calendar/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/hu.po b/addons/base_calendar/i18n/hu.po index 4d85db1458f..88feccd8a14 100644 --- a/addons/base_calendar/i18n/hu.po +++ b/addons/base_calendar/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/id.po b/addons/base_calendar/i18n/id.po index ba2ac2ed90a..778dea848cb 100644 --- a/addons/base_calendar/i18n/id.po +++ b/addons/base_calendar/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/it.po b/addons/base_calendar/i18n/it.po index 631e42dd51d..3169fd030c7 100644 --- a/addons/base_calendar/i18n/it.po +++ b/addons/base_calendar/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ja.po b/addons/base_calendar/i18n/ja.po index 38d7184172c..c4267fa358a 100644 --- a/addons/base_calendar/i18n/ja.po +++ b/addons/base_calendar/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ln.po b/addons/base_calendar/i18n/ln.po index 257956f34dc..c5cd4dc7671 100644 --- a/addons/base_calendar/i18n/ln.po +++ b/addons/base_calendar/i18n/ln.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/lt.po b/addons/base_calendar/i18n/lt.po index a6eb13050fd..e4c476cf0fb 100644 --- a/addons/base_calendar/i18n/lt.po +++ b/addons/base_calendar/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/lv.po b/addons/base_calendar/i18n/lv.po index 44fa63c05e6..1c14dd88145 100644 --- a/addons/base_calendar/i18n/lv.po +++ b/addons/base_calendar/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/mk.po b/addons/base_calendar/i18n/mk.po index f791bebc135..7a5fdc91108 100644 --- a/addons/base_calendar/i18n/mk.po +++ b/addons/base_calendar/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/mn.po b/addons/base_calendar/i18n/mn.po index bdf1fd6f4f2..e5151e82a5b 100644 --- a/addons/base_calendar/i18n/mn.po +++ b/addons/base_calendar/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/nb.po b/addons/base_calendar/i18n/nb.po index 119d69e6b9f..a11a0c418f2 100644 --- a/addons/base_calendar/i18n/nb.po +++ b/addons/base_calendar/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/nl.po b/addons/base_calendar/i18n/nl.po index e346959a5c3..ea03e9f5c25 100644 --- a/addons/base_calendar/i18n/nl.po +++ b/addons/base_calendar/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-05-04 16:53+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/pl.po b/addons/base_calendar/i18n/pl.po index b5c995441d5..50d1309b5c4 100644 --- a/addons/base_calendar/i18n/pl.po +++ b/addons/base_calendar/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/pt.po b/addons/base_calendar/i18n/pt.po index a4290112101..5f8de69be57 100644 --- a/addons/base_calendar/i18n/pt.po +++ b/addons/base_calendar/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/pt_BR.po b/addons/base_calendar/i18n/pt_BR.po index 81f1a8bcea0..6c17e5bcb60 100644 --- a/addons/base_calendar/i18n/pt_BR.po +++ b/addons/base_calendar/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ro.po b/addons/base_calendar/i18n/ro.po index 7c854627431..537c9da2d1c 100644 --- a/addons/base_calendar/i18n/ro.po +++ b/addons/base_calendar/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ru.po b/addons/base_calendar/i18n/ru.po index 37f335a0ed3..4ab95c37851 100644 --- a/addons/base_calendar/i18n/ru.po +++ b/addons/base_calendar/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sk.po b/addons/base_calendar/i18n/sk.po index 8525a154a7d..ef196df9474 100644 --- a/addons/base_calendar/i18n/sk.po +++ b/addons/base_calendar/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sl.po b/addons/base_calendar/i18n/sl.po index 5feee6eeb55..71cf17e5649 100644 --- a/addons/base_calendar/i18n/sl.po +++ b/addons/base_calendar/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -465,7 +465,7 @@ msgstr "Podrobnosti opomina" #. module: base_calendar #: field:calendar.attendee,parent_ids:0 msgid "Delegrated From" -msgstr "" +msgstr "Zadolžen od" #. module: base_calendar #: selection:calendar.event,select1:0 @@ -811,7 +811,7 @@ msgstr "Lokacija Dogodka" #: field:calendar.todo,rrule:0 #: field:crm.meeting,rrule:0 msgid "Recurrent Rule" -msgstr "" +msgstr "Ponavljajoče pravilo" #. module: base_calendar #: selection:calendar.alarm,state:0 diff --git a/addons/base_calendar/i18n/sq.po b/addons/base_calendar/i18n/sq.po index 895036983b6..bfb9abc8f69 100644 --- a/addons/base_calendar/i18n/sq.po +++ b/addons/base_calendar/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sr.po b/addons/base_calendar/i18n/sr.po index 6e0d312c491..1005c041a2c 100644 --- a/addons/base_calendar/i18n/sr.po +++ b/addons/base_calendar/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:51+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sr@latin.po b/addons/base_calendar/i18n/sr@latin.po index 29f127256ad..7bcf32faf25 100644 --- a/addons/base_calendar/i18n/sr@latin.po +++ b/addons/base_calendar/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sv.po b/addons/base_calendar/i18n/sv.po index c7c2f2e1e81..72e8e7c6c0c 100644 --- a/addons/base_calendar/i18n/sv.po +++ b/addons/base_calendar/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/th.po b/addons/base_calendar/i18n/th.po index 6ab848de44f..fa264c43b43 100644 --- a/addons/base_calendar/i18n/th.po +++ b/addons/base_calendar/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/tr.po b/addons/base_calendar/i18n/tr.po index 95a84bf86c4..fd41eaf1684 100644 --- a/addons/base_calendar/i18n/tr.po +++ b/addons/base_calendar/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/vi.po b/addons/base_calendar/i18n/vi.po index 0e4a91480ea..6988c243778 100644 --- a/addons/base_calendar/i18n/vi.po +++ b/addons/base_calendar/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/zh_CN.po b/addons/base_calendar/i18n/zh_CN.po index 38baab79bb2..153a4cd1c01 100644 --- a/addons/base_calendar/i18n/zh_CN.po +++ b/addons/base_calendar/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-19 16:03+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-20 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/zh_TW.po b/addons/base_calendar/i18n/zh_TW.po index 60f0ed6460a..2e8dcac6b6e 100644 --- a/addons/base_calendar/i18n/zh_TW.po +++ b/addons/base_calendar/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_gengo/i18n/ar.po b/addons/base_gengo/i18n/ar.po index a9b9cfc86d9..861be6ad1de 100644 --- a/addons/base_gengo/i18n/ar.po +++ b/addons/base_gengo/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/bs.po b/addons/base_gengo/i18n/bs.po index d9aa2b11721..0129883e6b5 100644 --- a/addons/base_gengo/i18n/bs.po +++ b/addons/base_gengo/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:24+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/cs.po b/addons/base_gengo/i18n/cs.po index 76a1f63b0f9..2432fb68080 100644 --- a/addons/base_gengo/i18n/cs.po +++ b/addons/base_gengo/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/da.po b/addons/base_gengo/i18n/da.po index a6796ac9242..87c60004466 100644 --- a/addons/base_gengo/i18n/da.po +++ b/addons/base_gengo/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-15 05:18+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/de.po b/addons/base_gengo/i18n/de.po index bf4bdcf3bcb..2aea87e6dee 100644 --- a/addons/base_gengo/i18n/de.po +++ b/addons/base_gengo/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/es.po b/addons/base_gengo/i18n/es.po index 2baba0cbbb7..1a4da08f04e 100644 --- a/addons/base_gengo/i18n/es.po +++ b/addons/base_gengo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/fr.po b/addons/base_gengo/i18n/fr.po index 28fbafbb970..70b7158a4d9 100644 --- a/addons/base_gengo/i18n/fr.po +++ b/addons/base_gengo/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/hr.po b/addons/base_gengo/i18n/hr.po index 7b2ae7596d8..e33149c89c3 100644 --- a/addons/base_gengo/i18n/hr.po +++ b/addons/base_gengo/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/hu.po b/addons/base_gengo/i18n/hu.po index bb5f290db80..6aff532e8ee 100644 --- a/addons/base_gengo/i18n/hu.po +++ b/addons/base_gengo/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/it.po b/addons/base_gengo/i18n/it.po index ce0575a0550..170e01b7739 100644 --- a/addons/base_gengo/i18n/it.po +++ b/addons/base_gengo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/mk.po b/addons/base_gengo/i18n/mk.po index f5af34ca89c..024aed4865b 100644 --- a/addons/base_gengo/i18n/mk.po +++ b/addons/base_gengo/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/mn.po b/addons/base_gengo/i18n/mn.po index 03a8dd686cc..6d6f8e46796 100644 --- a/addons/base_gengo/i18n/mn.po +++ b/addons/base_gengo/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/nb.po b/addons/base_gengo/i18n/nb.po index b6fe7312351..893715192ca 100644 --- a/addons/base_gengo/i18n/nb.po +++ b/addons/base_gengo/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/nl.po b/addons/base_gengo/i18n/nl.po index c61ac1e9568..cfec942334d 100644 --- a/addons/base_gengo/i18n/nl.po +++ b/addons/base_gengo/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-08 11:16+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/pl.po b/addons/base_gengo/i18n/pl.po index 730808527c8..cae83e60f9f 100644 --- a/addons/base_gengo/i18n/pl.po +++ b/addons/base_gengo/i18n/pl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-16 20:14+0000\n" +"PO-Revision-Date: 2013-11-20 18:01+0000\n" "Last-Translator: Mirosław Bojanowicz \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: base_gengo @@ -57,7 +57,7 @@ msgstr "Dodaj publiczny klucz logowania Gengo ..." #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" -msgstr "" +msgstr "base.gengo.translations" #. module: base_gengo #: view:ir.translation:0 @@ -241,7 +241,7 @@ msgstr "Ultra" #. module: base_gengo #: model:ir.model,name:base_gengo.model_ir_translation msgid "ir.translation" -msgstr "" +msgstr "ir.translation" #. module: base_gengo #: view:ir.translation:0 diff --git a/addons/base_gengo/i18n/pt.po b/addons/base_gengo/i18n/pt.po index 9ecdec42b05..352a5ac429f 100644 --- a/addons/base_gengo/i18n/pt.po +++ b/addons/base_gengo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/pt_BR.po b/addons/base_gengo/i18n/pt_BR.po index 57b1b217bb5..63630c17f69 100644 --- a/addons/base_gengo/i18n/pt_BR.po +++ b/addons/base_gengo/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/ro.po b/addons/base_gengo/i18n/ro.po index e1280c8b2a4..5c3e000d8ed 100644 --- a/addons/base_gengo/i18n/ro.po +++ b/addons/base_gengo/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:34+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/sl.po b/addons/base_gengo/i18n/sl.po index dec9a183a16..57655fa36db 100644 --- a/addons/base_gengo/i18n/sl.po +++ b/addons/base_gengo/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/th.po b/addons/base_gengo/i18n/th.po index 38aa23e836f..367b23c1ec1 100644 --- a/addons/base_gengo/i18n/th.po +++ b/addons/base_gengo/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/tr.po b/addons/base_gengo/i18n/tr.po index 52ee9caa711..fa3df48a4a8 100644 --- a/addons/base_gengo/i18n/tr.po +++ b/addons/base_gengo/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/zh_CN.po b/addons/base_gengo/i18n/zh_CN.po index 1f10948a27e..7f5be9b0183 100644 --- a/addons/base_gengo/i18n/zh_CN.po +++ b/addons/base_gengo/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_iban/i18n/ar.po b/addons/base_iban/i18n/ar.po index 8561d3cf72b..cb94d8ae903 100644 --- a/addons/base_iban/i18n/ar.po +++ b/addons/base_iban/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/bg.po b/addons/base_iban/i18n/bg.po index 44e928d080a..894337686c1 100644 --- a/addons/base_iban/i18n/bg.po +++ b/addons/base_iban/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/bs.po b/addons/base_iban/i18n/bs.po index 5157febadee..ba6086cd423 100644 --- a/addons/base_iban/i18n/bs.po +++ b/addons/base_iban/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:24+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ca.po b/addons/base_iban/i18n/ca.po index af94f99167e..f4108fa543b 100644 --- a/addons/base_iban/i18n/ca.po +++ b/addons/base_iban/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/cs.po b/addons/base_iban/i18n/cs.po index 84f1d77dd97..b43a5df7fe7 100644 --- a/addons/base_iban/i18n/cs.po +++ b/addons/base_iban/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/da.po b/addons/base_iban/i18n/da.po index 0e6388d8b90..f47a2c604c6 100644 --- a/addons/base_iban/i18n/da.po +++ b/addons/base_iban/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/de.po b/addons/base_iban/i18n/de.po index 1f1db6320a2..36beb3a14a9 100644 --- a/addons/base_iban/i18n/de.po +++ b/addons/base_iban/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/el.po b/addons/base_iban/i18n/el.po index 5718cc5e98e..eec6ee1189e 100644 --- a/addons/base_iban/i18n/el.po +++ b/addons/base_iban/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/en_GB.po b/addons/base_iban/i18n/en_GB.po index 096d7baccad..8de6026be58 100644 --- a/addons/base_iban/i18n/en_GB.po +++ b/addons/base_iban/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es.po b/addons/base_iban/i18n/es.po index 270eba5c379..e4bf8f87630 100644 --- a/addons/base_iban/i18n/es.po +++ b/addons/base_iban/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_AR.po b/addons/base_iban/i18n/es_AR.po index 15d6c178edc..5e3e3c91794 100644 --- a/addons/base_iban/i18n/es_AR.po +++ b/addons/base_iban/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_CR.po b/addons/base_iban/i18n/es_CR.po index 95d3fa5b00f..35e9419a85b 100644 --- a/addons/base_iban/i18n/es_CR.po +++ b/addons/base_iban/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_EC.po b/addons/base_iban/i18n/es_EC.po index 37656660f44..20be62bfebc 100644 --- a/addons/base_iban/i18n/es_EC.po +++ b/addons/base_iban/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_PY.po b/addons/base_iban/i18n/es_PY.po index edbc62c2f2b..d58e9754a13 100644 --- a/addons/base_iban/i18n/es_PY.po +++ b/addons/base_iban/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/et.po b/addons/base_iban/i18n/et.po index 2b02b770763..0d51fc2983b 100644 --- a/addons/base_iban/i18n/et.po +++ b/addons/base_iban/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/eu.po b/addons/base_iban/i18n/eu.po index 83012768dd9..d99164eb959 100644 --- a/addons/base_iban/i18n/eu.po +++ b/addons/base_iban/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fa.po b/addons/base_iban/i18n/fa.po index c8af9b8426b..8078f1d1ac2 100644 --- a/addons/base_iban/i18n/fa.po +++ b/addons/base_iban/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fi.po b/addons/base_iban/i18n/fi.po index 46290b4ca53..5b92864ca88 100644 --- a/addons/base_iban/i18n/fi.po +++ b/addons/base_iban/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fr.po b/addons/base_iban/i18n/fr.po index d20c646d1f4..be4f430b061 100644 --- a/addons/base_iban/i18n/fr.po +++ b/addons/base_iban/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/gl.po b/addons/base_iban/i18n/gl.po index 1b4ed3b0ffa..836ccaeb975 100644 --- a/addons/base_iban/i18n/gl.po +++ b/addons/base_iban/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/gu.po b/addons/base_iban/i18n/gu.po index c26d9573a64..cdf6eb19e61 100644 --- a/addons/base_iban/i18n/gu.po +++ b/addons/base_iban/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/hr.po b/addons/base_iban/i18n/hr.po index 286582e0605..b570ff03782 100644 --- a/addons/base_iban/i18n/hr.po +++ b/addons/base_iban/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/hu.po b/addons/base_iban/i18n/hu.po index 5a6640ceaec..59826d9f9e4 100644 --- a/addons/base_iban/i18n/hu.po +++ b/addons/base_iban/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/id.po b/addons/base_iban/i18n/id.po index 879dce7b49a..9cfb4d85e0c 100644 --- a/addons/base_iban/i18n/id.po +++ b/addons/base_iban/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/it.po b/addons/base_iban/i18n/it.po index 7d510bb76ce..b86bf1118da 100644 --- a/addons/base_iban/i18n/it.po +++ b/addons/base_iban/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ja.po b/addons/base_iban/i18n/ja.po index 41d3c2f35af..c5b9baa0ade 100644 --- a/addons/base_iban/i18n/ja.po +++ b/addons/base_iban/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ko.po b/addons/base_iban/i18n/ko.po index eeae5a1b0cd..1f192dafbf6 100644 --- a/addons/base_iban/i18n/ko.po +++ b/addons/base_iban/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/lt.po b/addons/base_iban/i18n/lt.po index 99e1388fde9..891261dcdac 100644 --- a/addons/base_iban/i18n/lt.po +++ b/addons/base_iban/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/lv.po b/addons/base_iban/i18n/lv.po index 29c102202aa..b964d31ea0e 100644 --- a/addons/base_iban/i18n/lv.po +++ b/addons/base_iban/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/mk.po b/addons/base_iban/i18n/mk.po index 75e48614314..e5818140de2 100644 --- a/addons/base_iban/i18n/mk.po +++ b/addons/base_iban/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: base_iban diff --git a/addons/base_iban/i18n/mn.po b/addons/base_iban/i18n/mn.po index c4f3180fce9..3534a8c8132 100644 --- a/addons/base_iban/i18n/mn.po +++ b/addons/base_iban/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nb.po b/addons/base_iban/i18n/nb.po index c16bb0d7fdd..2a075630226 100644 --- a/addons/base_iban/i18n/nb.po +++ b/addons/base_iban/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nl.po b/addons/base_iban/i18n/nl.po index c87099d26b2..049af76298e 100644 --- a/addons/base_iban/i18n/nl.po +++ b/addons/base_iban/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nl_BE.po b/addons/base_iban/i18n/nl_BE.po index 42321545a93..e7cbe9f05c5 100644 --- a/addons/base_iban/i18n/nl_BE.po +++ b/addons/base_iban/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/oc.po b/addons/base_iban/i18n/oc.po index 2e6d867c2cd..24849ffdcec 100644 --- a/addons/base_iban/i18n/oc.po +++ b/addons/base_iban/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pl.po b/addons/base_iban/i18n/pl.po index 1fed7e0274f..2f8876a1121 100644 --- a/addons/base_iban/i18n/pl.po +++ b/addons/base_iban/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pt.po b/addons/base_iban/i18n/pt.po index da493565958..3cb1e6673d4 100644 --- a/addons/base_iban/i18n/pt.po +++ b/addons/base_iban/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pt_BR.po b/addons/base_iban/i18n/pt_BR.po index 84e32ccf004..4ced6747fb4 100644 --- a/addons/base_iban/i18n/pt_BR.po +++ b/addons/base_iban/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ro.po b/addons/base_iban/i18n/ro.po index d5051e3c161..08a1fb90a69 100644 --- a/addons/base_iban/i18n/ro.po +++ b/addons/base_iban/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-27 17:57+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ru.po b/addons/base_iban/i18n/ru.po index 565736e506c..ca5f9cd5825 100644 --- a/addons/base_iban/i18n/ru.po +++ b/addons/base_iban/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sk.po b/addons/base_iban/i18n/sk.po index f7f830ecf63..156a430b53d 100644 --- a/addons/base_iban/i18n/sk.po +++ b/addons/base_iban/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sl.po b/addons/base_iban/i18n/sl.po index ef7da656b43..0eb11c7217b 100644 --- a/addons/base_iban/i18n/sl.po +++ b/addons/base_iban/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sq.po b/addons/base_iban/i18n/sq.po index 96f123aed28..b04e636d62d 100644 --- a/addons/base_iban/i18n/sq.po +++ b/addons/base_iban/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sr.po b/addons/base_iban/i18n/sr.po index 4228c7610d1..0e6161c9f08 100644 --- a/addons/base_iban/i18n/sr.po +++ b/addons/base_iban/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sr@latin.po b/addons/base_iban/i18n/sr@latin.po index 999037d800f..9a588ceffed 100644 --- a/addons/base_iban/i18n/sr@latin.po +++ b/addons/base_iban/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sv.po b/addons/base_iban/i18n/sv.po index dababefc9d6..51848b56908 100644 --- a/addons/base_iban/i18n/sv.po +++ b/addons/base_iban/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ta.po b/addons/base_iban/i18n/ta.po index b1db28fa01d..effa09e9784 100644 --- a/addons/base_iban/i18n/ta.po +++ b/addons/base_iban/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/tlh.po b/addons/base_iban/i18n/tlh.po index b2c493e4648..fd633534b17 100644 --- a/addons/base_iban/i18n/tlh.po +++ b/addons/base_iban/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/tr.po b/addons/base_iban/i18n/tr.po index 2031ba2f5ca..eb9150ba063 100644 --- a/addons/base_iban/i18n/tr.po +++ b/addons/base_iban/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/uk.po b/addons/base_iban/i18n/uk.po index a3a052945bd..3631aa9461a 100644 --- a/addons/base_iban/i18n/uk.po +++ b/addons/base_iban/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/vi.po b/addons/base_iban/i18n/vi.po index 1b00e235c65..dd614e837a6 100644 --- a/addons/base_iban/i18n/vi.po +++ b/addons/base_iban/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/zh_CN.po b/addons/base_iban/i18n/zh_CN.po index 42fe1200510..c3e64d41725 100644 --- a/addons/base_iban/i18n/zh_CN.po +++ b/addons/base_iban/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/zh_TW.po b/addons/base_iban/i18n/zh_TW.po index 2f24770152e..b14ff6f5f1c 100644 --- a/addons/base_iban/i18n/zh_TW.po +++ b/addons/base_iban/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_import/i18n/ar.po b/addons/base_import/i18n/ar.po index 4d9c2926694..9519f698480 100644 --- a/addons/base_import/i18n/ar.po +++ b/addons/base_import/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/bs.po b/addons/base_import/i18n/bs.po index 6d4cfd6ace7..a9f9dedfa0f 100644 --- a/addons/base_import/i18n/bs.po +++ b/addons/base_import/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/cs.po b/addons/base_import/i18n/cs.po index 3ef84f7626f..44e21de9401 100644 --- a/addons/base_import/i18n/cs.po +++ b/addons/base_import/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/de.po b/addons/base_import/i18n/de.po index 0d7420f92a4..c728a0fcf2f 100644 --- a/addons/base_import/i18n/de.po +++ b/addons/base_import/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-09 05:48+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/es.po b/addons/base_import/i18n/es.po index 8f53b805803..2891ee00876 100644 --- a/addons/base_import/i18n/es.po +++ b/addons/base_import/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/et.po b/addons/base_import/i18n/et.po index d59fd8e30ff..d7df1f3615c 100644 --- a/addons/base_import/i18n/et.po +++ b/addons/base_import/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/fr.po b/addons/base_import/i18n/fr.po index a518b9612bb..4a109908a5e 100644 --- a/addons/base_import/i18n/fr.po +++ b/addons/base_import/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/hr.po b/addons/base_import/i18n/hr.po index 2697a066912..5bf74668b10 100644 --- a/addons/base_import/i18n/hr.po +++ b/addons/base_import/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/hu.po b/addons/base_import/i18n/hu.po index b09cf91d809..1033fa20eea 100644 --- a/addons/base_import/i18n/hu.po +++ b/addons/base_import/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/it.po b/addons/base_import/i18n/it.po index f475534417e..d22f4e6f679 100644 --- a/addons/base_import/i18n/it.po +++ b/addons/base_import/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/mk.po b/addons/base_import/i18n/mk.po index 1d9a23112d8..e27a8c471d5 100644 --- a/addons/base_import/i18n/mk.po +++ b/addons/base_import/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/mn.po b/addons/base_import/i18n/mn.po index d12f150bccd..6eaf15c2cb5 100644 --- a/addons/base_import/i18n/mn.po +++ b/addons/base_import/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/nb.po b/addons/base_import/i18n/nb.po index d40f5ae9849..be49881048c 100644 --- a/addons/base_import/i18n/nb.po +++ b/addons/base_import/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/nl.po b/addons/base_import/i18n/nl.po index 94de1c6aaf8..fdd3db2133f 100644 --- a/addons/base_import/i18n/nl.po +++ b/addons/base_import/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/pl.po b/addons/base_import/i18n/pl.po index 096b4cdb1f1..1a2849da3e9 100644 --- a/addons/base_import/i18n/pl.po +++ b/addons/base_import/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: base_import diff --git a/addons/base_import/i18n/pt.po b/addons/base_import/i18n/pt.po index a5b04e87922..8440f4d2a28 100644 --- a/addons/base_import/i18n/pt.po +++ b/addons/base_import/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/pt_BR.po b/addons/base_import/i18n/pt_BR.po index 0df207c6c9a..99fb3110b18 100644 --- a/addons/base_import/i18n/pt_BR.po +++ b/addons/base_import/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 19:40+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:35+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/ro.po b/addons/base_import/i18n/ro.po index 4f25ced7b38..dd5d5bfbe17 100644 --- a/addons/base_import/i18n/ro.po +++ b/addons/base_import/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:36+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/ru.po b/addons/base_import/i18n/ru.po index 7d96f5f7425..4cbd2b4bb71 100644 --- a/addons/base_import/i18n/ru.po +++ b/addons/base_import/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/sl.po b/addons/base_import/i18n/sl.po index 364e71dd9c3..2fa544d6b82 100644 --- a/addons/base_import/i18n/sl.po +++ b/addons/base_import/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/tr.po b/addons/base_import/i18n/tr.po index 184ae5c048f..644200ebb5a 100644 --- a/addons/base_import/i18n/tr.po +++ b/addons/base_import/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/zh_CN.po b/addons/base_import/i18n/zh_CN.po index 19362a4b952..32b230c8010 100644 --- a/addons/base_import/i18n/zh_CN.po +++ b/addons/base_import/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-08-17 15:21+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-18 05:04+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_import #. openerp-web diff --git a/addons/base_report_designer/i18n/ar.po b/addons/base_report_designer/i18n/ar.po index c95c8083f08..79a5d1f36d9 100644 --- a/addons/base_report_designer/i18n/ar.po +++ b/addons/base_report_designer/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/bg.po b/addons/base_report_designer/i18n/bg.po index 7fe6fda52de..7942f9a56b7 100644 --- a/addons/base_report_designer/i18n/bg.po +++ b/addons/base_report_designer/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/bs.po b/addons/base_report_designer/i18n/bs.po index 48bf8bb7a27..12df1d13531 100644 --- a/addons/base_report_designer/i18n/bs.po +++ b/addons/base_report_designer/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ca.po b/addons/base_report_designer/i18n/ca.po index 80e4e3c8141..38abc8806a6 100644 --- a/addons/base_report_designer/i18n/ca.po +++ b/addons/base_report_designer/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/cs.po b/addons/base_report_designer/i18n/cs.po index 965a2ecb427..5487d2f7702 100644 --- a/addons/base_report_designer/i18n/cs.po +++ b/addons/base_report_designer/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/da.po b/addons/base_report_designer/i18n/da.po index 3afde0eaf65..db6c28d35eb 100644 --- a/addons/base_report_designer/i18n/da.po +++ b/addons/base_report_designer/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/de.po b/addons/base_report_designer/i18n/de.po index 02684dd8b8b..26648b2b3c8 100644 --- a/addons/base_report_designer/i18n/de.po +++ b/addons/base_report_designer/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/el.po b/addons/base_report_designer/i18n/el.po index 83f0c805dcd..bd9e4ee103d 100644 --- a/addons/base_report_designer/i18n/el.po +++ b/addons/base_report_designer/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/en_GB.po b/addons/base_report_designer/i18n/en_GB.po index 66c410ea194..ceb33f43c2e 100644 --- a/addons/base_report_designer/i18n/en_GB.po +++ b/addons/base_report_designer/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es.po b/addons/base_report_designer/i18n/es.po index 72193faed2e..9f7a81df867 100644 --- a/addons/base_report_designer/i18n/es.po +++ b/addons/base_report_designer/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_AR.po b/addons/base_report_designer/i18n/es_AR.po index d824f3c9519..6dc0bd74505 100644 --- a/addons/base_report_designer/i18n/es_AR.po +++ b/addons/base_report_designer/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_CR.po b/addons/base_report_designer/i18n/es_CR.po index 6aa5964ab67..8121999e4dd 100644 --- a/addons/base_report_designer/i18n/es_CR.po +++ b/addons/base_report_designer/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_EC.po b/addons/base_report_designer/i18n/es_EC.po index 63316833c10..a7269c24124 100644 --- a/addons/base_report_designer/i18n/es_EC.po +++ b/addons/base_report_designer/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_PY.po b/addons/base_report_designer/i18n/es_PY.po index 070a12cb0a0..036cf397652 100644 --- a/addons/base_report_designer/i18n/es_PY.po +++ b/addons/base_report_designer/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/et.po b/addons/base_report_designer/i18n/et.po index 0bdd00acdb6..4cc9d7284cc 100644 --- a/addons/base_report_designer/i18n/et.po +++ b/addons/base_report_designer/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fa.po b/addons/base_report_designer/i18n/fa.po index 00f3e2a9c44..4c0c8b0a37b 100644 --- a/addons/base_report_designer/i18n/fa.po +++ b/addons/base_report_designer/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fi.po b/addons/base_report_designer/i18n/fi.po index 97a3ac1545f..e07f4024711 100644 --- a/addons/base_report_designer/i18n/fi.po +++ b/addons/base_report_designer/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fr.po b/addons/base_report_designer/i18n/fr.po index 4bc80f30783..1d30c8393f2 100644 --- a/addons/base_report_designer/i18n/fr.po +++ b/addons/base_report_designer/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/gl.po b/addons/base_report_designer/i18n/gl.po index 92476ce0643..3c719086c9c 100644 --- a/addons/base_report_designer/i18n/gl.po +++ b/addons/base_report_designer/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/hi.po b/addons/base_report_designer/i18n/hi.po index 9e0fd0f72af..26ee498dc37 100644 --- a/addons/base_report_designer/i18n/hi.po +++ b/addons/base_report_designer/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 05:25+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/hr.po b/addons/base_report_designer/i18n/hr.po index 78d44705482..4a7e86b6112 100644 --- a/addons/base_report_designer/i18n/hr.po +++ b/addons/base_report_designer/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/hu.po b/addons/base_report_designer/i18n/hu.po index f37aa8022e7..9bd3c72dfad 100644 --- a/addons/base_report_designer/i18n/hu.po +++ b/addons/base_report_designer/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/id.po b/addons/base_report_designer/i18n/id.po index d52b162e66d..9ca5be683ce 100644 --- a/addons/base_report_designer/i18n/id.po +++ b/addons/base_report_designer/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/it.po b/addons/base_report_designer/i18n/it.po index 255d1fb2ea8..f66095f608f 100644 --- a/addons/base_report_designer/i18n/it.po +++ b/addons/base_report_designer/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ja.po b/addons/base_report_designer/i18n/ja.po index c1024ed6bd0..c016557b9a2 100644 --- a/addons/base_report_designer/i18n/ja.po +++ b/addons/base_report_designer/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ko.po b/addons/base_report_designer/i18n/ko.po index 62151da73e0..fd5083b7396 100644 --- a/addons/base_report_designer/i18n/ko.po +++ b/addons/base_report_designer/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/lt.po b/addons/base_report_designer/i18n/lt.po index a39627b0dc5..8c8d83f48b1 100644 --- a/addons/base_report_designer/i18n/lt.po +++ b/addons/base_report_designer/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/mk.po b/addons/base_report_designer/i18n/mk.po index f99a5d0a298..c9cebaaeddb 100644 --- a/addons/base_report_designer/i18n/mk.po +++ b/addons/base_report_designer/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/mn.po b/addons/base_report_designer/i18n/mn.po index b6562c93504..d0330bcb355 100644 --- a/addons/base_report_designer/i18n/mn.po +++ b/addons/base_report_designer/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nb.po b/addons/base_report_designer/i18n/nb.po index e21cda08b4c..1c7eff8d610 100644 --- a/addons/base_report_designer/i18n/nb.po +++ b/addons/base_report_designer/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nl.po b/addons/base_report_designer/i18n/nl.po index 32e0ffe9ae1..cdc3521897b 100644 --- a/addons/base_report_designer/i18n/nl.po +++ b/addons/base_report_designer/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nl_BE.po b/addons/base_report_designer/i18n/nl_BE.po index 393eb944d3b..cacaa265306 100644 --- a/addons/base_report_designer/i18n/nl_BE.po +++ b/addons/base_report_designer/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pl.po b/addons/base_report_designer/i18n/pl.po index 578ee1364e3..19ff0d77859 100644 --- a/addons/base_report_designer/i18n/pl.po +++ b/addons/base_report_designer/i18n/pl.po @@ -8,19 +8,19 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-17 13:43+0000\n" +"PO-Revision-Date: 2013-11-20 17:35+0000\n" "Last-Translator: Mirosław Bojanowicz \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw msgid "base.report.sxw" -msgstr "" +msgstr "base.report.sxw" #. module: base_report_designer #: view:base_report_designer.installer:0 @@ -49,12 +49,12 @@ msgstr "Raport .SXW" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_designer_installer msgid "base_report_designer.installer" -msgstr "" +msgstr "base_report_designer.installer" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_rml_save msgid "base.report.rml.save" -msgstr "" +msgstr "base.report.rml.save" #. module: base_report_designer #: view:base_report_designer.installer:0 @@ -161,7 +161,7 @@ msgstr "Raport bazy sxw" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_file_sxw msgid "base.report.file.sxw" -msgstr "" +msgstr "base.report.file.sxw" #. module: base_report_designer #: field:base_report_designer.installer,plugin_file:0 @@ -186,7 +186,7 @@ msgstr "lub" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_ir_actions_report_xml msgid "ir.actions.report.xml" -msgstr "" +msgstr "ir.actions.report.xml" #. module: base_report_designer #: view:base.report.sxw:0 diff --git a/addons/base_report_designer/i18n/pt.po b/addons/base_report_designer/i18n/pt.po index bf12748d0fa..325e9af18a0 100644 --- a/addons/base_report_designer/i18n/pt.po +++ b/addons/base_report_designer/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pt_BR.po b/addons/base_report_designer/i18n/pt_BR.po index 3d0b6fa5144..5cef007e746 100644 --- a/addons/base_report_designer/i18n/pt_BR.po +++ b/addons/base_report_designer/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ro.po b/addons/base_report_designer/i18n/ro.po index dc5233e667b..e2f6fc01c38 100644 --- a/addons/base_report_designer/i18n/ro.po +++ b/addons/base_report_designer/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-20 09:14+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ru.po b/addons/base_report_designer/i18n/ru.po index defc6da5cd6..2ffd0aa9a17 100644 --- a/addons/base_report_designer/i18n/ru.po +++ b/addons/base_report_designer/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sk.po b/addons/base_report_designer/i18n/sk.po index 07e50d6c0d4..af047d7a42b 100644 --- a/addons/base_report_designer/i18n/sk.po +++ b/addons/base_report_designer/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sl.po b/addons/base_report_designer/i18n/sl.po index b4636986521..a9510c0afbe 100644 --- a/addons/base_report_designer/i18n/sl.po +++ b/addons/base_report_designer/i18n/sl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/sq.po b/addons/base_report_designer/i18n/sq.po index a0d7a5d32fe..b9fae22365a 100644 --- a/addons/base_report_designer/i18n/sq.po +++ b/addons/base_report_designer/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sr.po b/addons/base_report_designer/i18n/sr.po index fccb46d00bb..26f3b544bf3 100644 --- a/addons/base_report_designer/i18n/sr.po +++ b/addons/base_report_designer/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sr@latin.po b/addons/base_report_designer/i18n/sr@latin.po index 4f5ff13d48a..5245b5ea402 100644 --- a/addons/base_report_designer/i18n/sr@latin.po +++ b/addons/base_report_designer/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sv.po b/addons/base_report_designer/i18n/sv.po index f88a111cad7..9deb6eb152a 100644 --- a/addons/base_report_designer/i18n/sv.po +++ b/addons/base_report_designer/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/tlh.po b/addons/base_report_designer/i18n/tlh.po index 66bc87bdb67..d4b8a885f75 100644 --- a/addons/base_report_designer/i18n/tlh.po +++ b/addons/base_report_designer/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/tr.po b/addons/base_report_designer/i18n/tr.po index 980c70d50cc..385bb805007 100644 --- a/addons/base_report_designer/i18n/tr.po +++ b/addons/base_report_designer/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/uk.po b/addons/base_report_designer/i18n/uk.po index bc03527785f..fb5bb2c1dff 100644 --- a/addons/base_report_designer/i18n/uk.po +++ b/addons/base_report_designer/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/vi.po b/addons/base_report_designer/i18n/vi.po index d7d1dda292a..068df52138c 100644 --- a/addons/base_report_designer/i18n/vi.po +++ b/addons/base_report_designer/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/zh_CN.po b/addons/base_report_designer/i18n/zh_CN.po index c26fca7b0fd..14ad92794bc 100644 --- a/addons/base_report_designer/i18n/zh_CN.po +++ b/addons/base_report_designer/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/zh_TW.po b/addons/base_report_designer/i18n/zh_TW.po index ebcab53ff2a..294615cc079 100644 --- a/addons/base_report_designer/i18n/zh_TW.po +++ b/addons/base_report_designer/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_setup/i18n/ar.po b/addons/base_setup/i18n/ar.po index 9f971e96fff..efef7942151 100644 --- a/addons/base_setup/i18n/ar.po +++ b/addons/base_setup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/bg.po b/addons/base_setup/i18n/bg.po index 05278a2df65..5770cffd750 100644 --- a/addons/base_setup/i18n/bg.po +++ b/addons/base_setup/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/bs.po b/addons/base_setup/i18n/bs.po index 07bf17ef207..04da3b612ed 100644 --- a/addons/base_setup/i18n/bs.po +++ b/addons/base_setup/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ca.po b/addons/base_setup/i18n/ca.po index cb12d6073a3..8f1af1282a4 100644 --- a/addons/base_setup/i18n/ca.po +++ b/addons/base_setup/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/cs.po b/addons/base_setup/i18n/cs.po index 3b0e17a65c5..c7fa1028f70 100644 --- a/addons/base_setup/i18n/cs.po +++ b/addons/base_setup/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-25 05:19+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/da.po b/addons/base_setup/i18n/da.po index 3020255c99d..b1653c7024b 100644 --- a/addons/base_setup/i18n/da.po +++ b/addons/base_setup/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-16 05:13+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/de.po b/addons/base_setup/i18n/de.po index 4f4bc66e58b..aa5bd6140a3 100644 --- a/addons/base_setup/i18n/de.po +++ b/addons/base_setup/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/el.po b/addons/base_setup/i18n/el.po index 84e245405d0..a2eb7a5fbdc 100644 --- a/addons/base_setup/i18n/el.po +++ b/addons/base_setup/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/en_GB.po b/addons/base_setup/i18n/en_GB.po index 6b5819136f3..750fea8d731 100644 --- a/addons/base_setup/i18n/en_GB.po +++ b/addons/base_setup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es.po b/addons/base_setup/i18n/es.po index 5c172e1c258..d45c9a2b272 100644 --- a/addons/base_setup/i18n/es.po +++ b/addons/base_setup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_AR.po b/addons/base_setup/i18n/es_AR.po index f5bd42c3dde..70f957e7121 100644 --- a/addons/base_setup/i18n/es_AR.po +++ b/addons/base_setup/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_CL.po b/addons/base_setup/i18n/es_CL.po index 671582cd0bf..83d213eb51c 100644 --- a/addons/base_setup/i18n/es_CL.po +++ b/addons/base_setup/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_CR.po b/addons/base_setup/i18n/es_CR.po index d20f2455be8..cb99a4a5352 100644 --- a/addons/base_setup/i18n/es_CR.po +++ b/addons/base_setup/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_EC.po b/addons/base_setup/i18n/es_EC.po index 4a3a05fd1b9..ba04cc0eaa3 100644 --- a/addons/base_setup/i18n/es_EC.po +++ b/addons/base_setup/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_MX.po b/addons/base_setup/i18n/es_MX.po index ad3fb1640c8..dfde77919b1 100644 --- a/addons/base_setup/i18n/es_MX.po +++ b/addons/base_setup/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_PY.po b/addons/base_setup/i18n/es_PY.po index 4447b938fb3..7883449a3f6 100644 --- a/addons/base_setup/i18n/es_PY.po +++ b/addons/base_setup/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/et.po b/addons/base_setup/i18n/et.po index 8a9f5b39cc8..823a8ed9764 100644 --- a/addons/base_setup/i18n/et.po +++ b/addons/base_setup/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fa.po b/addons/base_setup/i18n/fa.po index c83e1e58d18..34221e4c9fd 100644 --- a/addons/base_setup/i18n/fa.po +++ b/addons/base_setup/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fi.po b/addons/base_setup/i18n/fi.po index 4f6b52a0f28..68a740e87c9 100644 --- a/addons/base_setup/i18n/fi.po +++ b/addons/base_setup/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 06:30+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fr.po b/addons/base_setup/i18n/fr.po index 33175afc48f..3fad23eb081 100644 --- a/addons/base_setup/i18n/fr.po +++ b/addons/base_setup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-23 05:52+0000\n" -"X-Generator: Launchpad (build 16737)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/gl.po b/addons/base_setup/i18n/gl.po index 6365dec2531..81f542754af 100644 --- a/addons/base_setup/i18n/gl.po +++ b/addons/base_setup/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/gu.po b/addons/base_setup/i18n/gu.po index 1a6d6a1c38e..7ec6a80f8da 100644 --- a/addons/base_setup/i18n/gu.po +++ b/addons/base_setup/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/hr.po b/addons/base_setup/i18n/hr.po index 8fa9c6f6ebe..e2f0a930715 100644 --- a/addons/base_setup/i18n/hr.po +++ b/addons/base_setup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/hu.po b/addons/base_setup/i18n/hu.po index 51b48ee746f..aa8e5dc0163 100644 --- a/addons/base_setup/i18n/hu.po +++ b/addons/base_setup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/id.po b/addons/base_setup/i18n/id.po index a128917287f..6e826529676 100644 --- a/addons/base_setup/i18n/id.po +++ b/addons/base_setup/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/it.po b/addons/base_setup/i18n/it.po index 8fbced6616b..4779ffdc34c 100644 --- a/addons/base_setup/i18n/it.po +++ b/addons/base_setup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ja.po b/addons/base_setup/i18n/ja.po index 2cc75f25c68..75f7eec462f 100644 --- a/addons/base_setup/i18n/ja.po +++ b/addons/base_setup/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-07 05:03+0000\n" -"X-Generator: Launchpad (build 16721)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ko.po b/addons/base_setup/i18n/ko.po index 4d1a9fbf499..f65e6eb5a6c 100644 --- a/addons/base_setup/i18n/ko.po +++ b/addons/base_setup/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/lt.po b/addons/base_setup/i18n/lt.po index 7e4524621c1..d63acaefabe 100644 --- a/addons/base_setup/i18n/lt.po +++ b/addons/base_setup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/lv.po b/addons/base_setup/i18n/lv.po index 96bb56100e7..1ce304f0d6f 100644 --- a/addons/base_setup/i18n/lv.po +++ b/addons/base_setup/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/mk.po b/addons/base_setup/i18n/mk.po index f94ac83f60f..a71d3ba0d4b 100644 --- a/addons/base_setup/i18n/mk.po +++ b/addons/base_setup/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: base_setup diff --git a/addons/base_setup/i18n/mn.po b/addons/base_setup/i18n/mn.po index 03f9f77e17f..0fcc5cbfe73 100644 --- a/addons/base_setup/i18n/mn.po +++ b/addons/base_setup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nb.po b/addons/base_setup/i18n/nb.po index 0ed4b1952c8..8e5be50b357 100644 --- a/addons/base_setup/i18n/nb.po +++ b/addons/base_setup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nl.po b/addons/base_setup/i18n/nl.po index 641d9bc4f1f..d3e4382fa73 100644 --- a/addons/base_setup/i18n/nl.po +++ b/addons/base_setup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:22+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nl_BE.po b/addons/base_setup/i18n/nl_BE.po index 14fa4c14de3..742b0f53734 100644 --- a/addons/base_setup/i18n/nl_BE.po +++ b/addons/base_setup/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pl.po b/addons/base_setup/i18n/pl.po index b2194642b24..a835c0c614c 100644 --- a/addons/base_setup/i18n/pl.po +++ b/addons/base_setup/i18n/pl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-11-20 17:59+0000\n" +"Last-Translator: Mirosław Bojanowicz \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -35,7 +35,7 @@ msgstr "Kontakty" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: base_setup #: field:base.config.settings,module_auth_oauth:0 @@ -69,7 +69,7 @@ msgstr "" #. module: base_setup #: field:sale.config.settings,module_sale:0 msgid "SALE" -msgstr "" +msgstr "Sprzedaż" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -106,12 +106,12 @@ msgstr "Darczyńca" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "Email" #. module: base_setup #: field:sale.config.settings,module_crm:0 msgid "CRM" -msgstr "" +msgstr "CRM" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -136,7 +136,7 @@ msgstr "W aplikacji mailowej" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=YOUR_DATABAE" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 @@ -151,7 +151,7 @@ msgstr "Włącz wtyczkę Tunderbird" #. module: base_setup #: view:base.setup.terminology:0 msgid "res_config_contents" -msgstr "" +msgstr "res_config_contents" #. module: base_setup #: view:sale.config.settings:0 @@ -183,7 +183,7 @@ msgstr "Ten kreator służy do zmiany terminologii w całej aplikacji." #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Tenant" -msgstr "" +msgstr "Wynajmujący" #. module: base_setup #: help:base.config.settings,module_share:0 @@ -211,6 +211,9 @@ msgid "" "companies.\n" " This installs the module multi_company." msgstr "" +"Pracuje w środowisku wielu firm, z odpowiednim zabezpieczonym dostępem " +"pomiędzy firmami.\n" +" To instaluje moduł multi_company." #. module: base_setup #: view:base.config.settings:0 @@ -219,6 +222,9 @@ msgid "" "You can\n" " launch the OpenERP Server with the option" msgstr "" +"Portal publiczny jest dostępny tylko jeśli jesteś w trybie pojedynczej bazy " +"danych. Możesz\n" +" uruchomić OpenERP Serwer tylko z opcją" #. module: base_setup #: view:base.config.settings:0 @@ -226,11 +232,13 @@ msgid "" "You will find more options in your company details: address for the header " "and footer, overdue payments texts, etc." msgstr "" +"Znajdziesz więcej opcji w szczegółach twojej firmy, adres w nagłowku i " +"stopce, tekst przeterminowanych płatności, itp." #. module: base_setup #: model:ir.model,name:base_setup.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: base_setup #: field:base.setup.terminology,partner:0 @@ -249,11 +257,19 @@ msgid "" "projects,\n" " etc." msgstr "" +"Kiedy wysyłasz dokument do klienta\n" +" (ofertę, fakturę), twój klient będzie w " +"stanie\n" +" się zarejestrować żeby pobrać wszystkie " +"jego dokumenty,\n" +" czytać aktualności firmy, sprawdzać jego " +"projekty,\n" +" itp." #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" -msgstr "" +msgstr "base.setup.terminology" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -276,11 +292,17 @@ msgid "" " Partner from the selected emails.\n" " This installs the module plugin_thunderbird." msgstr "" +"Ta wtyczka pozwala tobie archiwizować emaile i ich załączniki do wybranych\n" +" obiektów OpenERP. Możesz wybrać kontrahenta lub wątek i\n" +" załączyć wybrany email jako plik .eml w załączniku\n" +" wybranego rekordu. Możesz utworzyć dokument dla wątku CRM,\n" +" kontrahenta z wybranych emaili.\n" +" To instaluje moduł plugin_thunderbird." #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Partner" -msgstr "" +msgstr "Kontrahent" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form @@ -304,6 +326,13 @@ msgid "" " email into an OpenERP mail message with attachments.\n" " This installs the module plugin_outlook." msgstr "" +"Wtyczka Outlook pozwala na wybranie obiektu, który chciałbyś dodać do\n" +" twoich emailów i załączników z MS Outlook. Możesz wybrać " +"kontrahenta,\n" +" lub prowadzony obiekt i archiwizować wybrane emaile do " +"wiadomości\n" +" OpenERP z załącznikami.\n" +" To instaluje moduł plugin_outlook." #. module: base_setup #: view:base.config.settings:0 @@ -313,7 +342,7 @@ msgstr "Opcje" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Aktywuje portal klientów" #. module: base_setup #: view:base.config.settings:0 @@ -322,6 +351,9 @@ msgid "" " Once activated, the login page will be " "replaced by the public website." msgstr "" +"tak zrobić.\n" +" Raz aktywowana, strona logowania " +"zostanie zastąpiona przez stronę publiczną." #. module: base_setup #: field:base.config.settings,module_share:0 @@ -331,7 +363,7 @@ msgstr "Pozwalaj na współdzielenie dokumentów" #. module: base_setup #: view:base.config.settings:0 msgid "(company news, jobs, contact form, etc.)" -msgstr "" +msgstr "(aktualności firmy, stanowiska pracy, formularze kontaktu, itp.)" #. module: base_setup #: field:base.config.settings,module_portal_anonymous:0 @@ -351,7 +383,7 @@ msgstr "Integracja z portalami społecznościowymi" #. module: base_setup #: help:base.config.settings,module_portal:0 msgid "Give your customers access to their documents." -msgstr "" +msgstr "Daj swoim klientom dostęp do ich dokumentów." #. module: base_setup #: view:base.config.settings:0 @@ -374,7 +406,7 @@ msgstr "Ustal swoją terminologię" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "lub" #. module: base_setup #: view:base.config.settings:0 diff --git a/addons/base_setup/i18n/pt.po b/addons/base_setup/i18n/pt.po index c8f4b47d6cd..0aa057d912e 100644 --- a/addons/base_setup/i18n/pt.po +++ b/addons/base_setup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pt_BR.po b/addons/base_setup/i18n/pt_BR.po index ee7cda0258b..2707fc9838c 100644 --- a/addons/base_setup/i18n/pt_BR.po +++ b/addons/base_setup/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ro.po b/addons/base_setup/i18n/ro.po index aa598b7d3b6..2f8e4e6d08a 100644 --- a/addons/base_setup/i18n/ro.po +++ b/addons/base_setup/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-23 18:05+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ru.po b/addons/base_setup/i18n/ru.po index 5724ae19893..7e6575f8ab9 100644 --- a/addons/base_setup/i18n/ru.po +++ b/addons/base_setup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sk.po b/addons/base_setup/i18n/sk.po index 66736371459..da1866742e6 100644 --- a/addons/base_setup/i18n/sk.po +++ b/addons/base_setup/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sl.po b/addons/base_setup/i18n/sl.po index 0da87ddb980..2ccd46a35b0 100644 --- a/addons/base_setup/i18n/sl.po +++ b/addons/base_setup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-07 05:50+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sq.po b/addons/base_setup/i18n/sq.po index 20b84f3e249..a031ffb7211 100644 --- a/addons/base_setup/i18n/sq.po +++ b/addons/base_setup/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sr.po b/addons/base_setup/i18n/sr.po index 50ff7564f38..29cea4b7307 100644 --- a/addons/base_setup/i18n/sr.po +++ b/addons/base_setup/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:52+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sr@latin.po b/addons/base_setup/i18n/sr@latin.po index b9883c21ca2..7bd381a8acf 100644 --- a/addons/base_setup/i18n/sr@latin.po +++ b/addons/base_setup/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sv.po b/addons/base_setup/i18n/sv.po index a4ee380ff82..083e0d3f1cd 100644 --- a/addons/base_setup/i18n/sv.po +++ b/addons/base_setup/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/th.po b/addons/base_setup/i18n/th.po index d89f1288d61..96ba33bc615 100644 --- a/addons/base_setup/i18n/th.po +++ b/addons/base_setup/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/tlh.po b/addons/base_setup/i18n/tlh.po index 97cf81b18c4..b9df307362f 100644 --- a/addons/base_setup/i18n/tlh.po +++ b/addons/base_setup/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/tr.po b/addons/base_setup/i18n/tr.po index 20e136b18fe..396037740d3 100644 --- a/addons/base_setup/i18n/tr.po +++ b/addons/base_setup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/uk.po b/addons/base_setup/i18n/uk.po index 731001fe03c..1c1872b9117 100644 --- a/addons/base_setup/i18n/uk.po +++ b/addons/base_setup/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/vi.po b/addons/base_setup/i18n/vi.po index 05de2df5fcb..d3467acfa2c 100644 --- a/addons/base_setup/i18n/vi.po +++ b/addons/base_setup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/zh_CN.po b/addons/base_setup/i18n/zh_CN.po index 7c6bbec167b..f7fb8b5a7dc 100644 --- a/addons/base_setup/i18n/zh_CN.po +++ b/addons/base_setup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/zh_TW.po b/addons/base_setup/i18n/zh_TW.po index 9fb11530649..a3d467355b0 100644 --- a/addons/base_setup/i18n/zh_TW.po +++ b/addons/base_setup/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_status/i18n/ar.po b/addons/base_status/i18n/ar.po index bf0b0b0db4f..13eb11ad336 100644 --- a/addons/base_status/i18n/ar.po +++ b/addons/base_status/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/bs.po b/addons/base_status/i18n/bs.po index 87194c752c5..f6132064e87 100644 --- a/addons/base_status/i18n/bs.po +++ b/addons/base_status/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-09 05:35+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/cs.po b/addons/base_status/i18n/cs.po index f5d47b10b0a..536410d3f3b 100644 --- a/addons/base_status/i18n/cs.po +++ b/addons/base_status/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/da.po b/addons/base_status/i18n/da.po index c2e5f1d64dc..fea071d8d5e 100644 --- a/addons/base_status/i18n/da.po +++ b/addons/base_status/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-16 05:13+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/de.po b/addons/base_status/i18n/de.po index e823e00b0ba..c88b8c8159b 100644 --- a/addons/base_status/i18n/de.po +++ b/addons/base_status/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/en_GB.po b/addons/base_status/i18n/en_GB.po index bb42a4f6455..3bb38b68bb5 100644 --- a/addons/base_status/i18n/en_GB.po +++ b/addons/base_status/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/es.po b/addons/base_status/i18n/es.po index cd6a79d8ef0..791057a2774 100644 --- a/addons/base_status/i18n/es.po +++ b/addons/base_status/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/et.po b/addons/base_status/i18n/et.po index f54c08c9a06..f628104ba7b 100644 --- a/addons/base_status/i18n/et.po +++ b/addons/base_status/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 05:25+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/fi.po b/addons/base_status/i18n/fi.po index 077ab1291df..7209cce4309 100644 --- a/addons/base_status/i18n/fi.po +++ b/addons/base_status/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/fr.po b/addons/base_status/i18n/fr.po index 637a800a2b4..f6d7f60b74d 100644 --- a/addons/base_status/i18n/fr.po +++ b/addons/base_status/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/hr.po b/addons/base_status/i18n/hr.po index 357f383cf8c..e18a84d47c4 100644 --- a/addons/base_status/i18n/hr.po +++ b/addons/base_status/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/hu.po b/addons/base_status/i18n/hu.po index cb97453e0fa..22888f31382 100644 --- a/addons/base_status/i18n/hu.po +++ b/addons/base_status/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/id.po b/addons/base_status/i18n/id.po index 690d703c247..0fac26e061f 100644 --- a/addons/base_status/i18n/id.po +++ b/addons/base_status/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/it.po b/addons/base_status/i18n/it.po index 81143144f5c..fe38e7fefd0 100644 --- a/addons/base_status/i18n/it.po +++ b/addons/base_status/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/ja.po b/addons/base_status/i18n/ja.po index 02218f70ff6..c27fd3ba576 100644 --- a/addons/base_status/i18n/ja.po +++ b/addons/base_status/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-04 06:02+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/lt.po b/addons/base_status/i18n/lt.po index 261cfb045a3..a9d599f96e6 100644 --- a/addons/base_status/i18n/lt.po +++ b/addons/base_status/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/mk.po b/addons/base_status/i18n/mk.po index 311cf5619fc..28fa6accc25 100644 --- a/addons/base_status/i18n/mk.po +++ b/addons/base_status/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/mn.po b/addons/base_status/i18n/mn.po index 364923944fc..d943105bfc8 100644 --- a/addons/base_status/i18n/mn.po +++ b/addons/base_status/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/nl.po b/addons/base_status/i18n/nl.po index 174b2bf15f0..83f6faac78b 100644 --- a/addons/base_status/i18n/nl.po +++ b/addons/base_status/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/nl_BE.po b/addons/base_status/i18n/nl_BE.po index b7e96a9c54b..23e4fd823c5 100644 --- a/addons/base_status/i18n/nl_BE.po +++ b/addons/base_status/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/pl.po b/addons/base_status/i18n/pl.po index bf785c695a6..4ace4261fb4 100644 --- a/addons/base_status/i18n/pl.po +++ b/addons/base_status/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/pt.po b/addons/base_status/i18n/pt.po index 93c898bdc5b..d0d494d7799 100644 --- a/addons/base_status/i18n/pt.po +++ b/addons/base_status/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/pt_BR.po b/addons/base_status/i18n/pt_BR.po index 14bd7a0ea83..8600abf7756 100644 --- a/addons/base_status/i18n/pt_BR.po +++ b/addons/base_status/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/ro.po b/addons/base_status/i18n/ro.po index 024bbc9d565..66e721104a2 100644 --- a/addons/base_status/i18n/ro.po +++ b/addons/base_status/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-23 18:24+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/ru.po b/addons/base_status/i18n/ru.po index a9ef1f7e18c..e007031fedf 100644 --- a/addons/base_status/i18n/ru.po +++ b/addons/base_status/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/sl.po b/addons/base_status/i18n/sl.po index a2647345086..ff81902ee8d 100644 --- a/addons/base_status/i18n/sl.po +++ b/addons/base_status/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/sv.po b/addons/base_status/i18n/sv.po index a8d4fbfa9d2..5f7f548b915 100644 --- a/addons/base_status/i18n/sv.po +++ b/addons/base_status/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/tr.po b/addons/base_status/i18n/tr.po index 9c3877c834b..df6af5b999e 100644 --- a/addons/base_status/i18n/tr.po +++ b/addons/base_status/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/zh_CN.po b/addons/base_status/i18n/zh_CN.po index 7de4a7ef522..8585e67e7c2 100644 --- a/addons/base_status/i18n/zh_CN.po +++ b/addons/base_status/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/zh_TW.po b/addons/base_status/i18n/zh_TW.po index dd121d69434..9d498ae2ab5 100644 --- a/addons/base_status/i18n/zh_TW.po +++ b/addons/base_status/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_vat/i18n/ar.po b/addons/base_vat/i18n/ar.po index 73124a62974..145a429bb7e 100644 --- a/addons/base_vat/i18n/ar.po +++ b/addons/base_vat/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/bg.po b/addons/base_vat/i18n/bg.po index 956cb591824..f7f56acf0ef 100644 --- a/addons/base_vat/i18n/bg.po +++ b/addons/base_vat/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/bs.po b/addons/base_vat/i18n/bs.po index 12d85cf8ace..a47e72feee8 100644 --- a/addons/base_vat/i18n/bs.po +++ b/addons/base_vat/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ca.po b/addons/base_vat/i18n/ca.po index 5e545c86774..4961cf085b4 100644 --- a/addons/base_vat/i18n/ca.po +++ b/addons/base_vat/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/cs.po b/addons/base_vat/i18n/cs.po index 6b29d487d68..061d93c08b2 100644 --- a/addons/base_vat/i18n/cs.po +++ b/addons/base_vat/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/da.po b/addons/base_vat/i18n/da.po index fbcb01dafaf..b12fb81a62a 100644 --- a/addons/base_vat/i18n/da.po +++ b/addons/base_vat/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-10 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/de.po b/addons/base_vat/i18n/de.po index 104ec693121..8c2bff0914e 100644 --- a/addons/base_vat/i18n/de.po +++ b/addons/base_vat/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/el.po b/addons/base_vat/i18n/el.po index 32999a6d0fe..6357e96b5b7 100644 --- a/addons/base_vat/i18n/el.po +++ b/addons/base_vat/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/en_AU.po b/addons/base_vat/i18n/en_AU.po index adf823ad724..4e21c87d994 100644 --- a/addons/base_vat/i18n/en_AU.po +++ b/addons/base_vat/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/en_GB.po b/addons/base_vat/i18n/en_GB.po index 1c4f0879f02..259d117089e 100644 --- a/addons/base_vat/i18n/en_GB.po +++ b/addons/base_vat/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es.po b/addons/base_vat/i18n/es.po index d8b7667e523..9e9aea25aac 100644 --- a/addons/base_vat/i18n/es.po +++ b/addons/base_vat/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_AR.po b/addons/base_vat/i18n/es_AR.po index 855a2d5894d..aaa29431142 100644 --- a/addons/base_vat/i18n/es_AR.po +++ b/addons/base_vat/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_CL.po b/addons/base_vat/i18n/es_CL.po index 91a5f5dcea1..5720993b5ae 100644 --- a/addons/base_vat/i18n/es_CL.po +++ b/addons/base_vat/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_CR.po b/addons/base_vat/i18n/es_CR.po index cfcbe4e9a9d..737f154a30a 100644 --- a/addons/base_vat/i18n/es_CR.po +++ b/addons/base_vat/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_EC.po b/addons/base_vat/i18n/es_EC.po index 9c1a5d3b895..1cfa9e2d11e 100644 --- a/addons/base_vat/i18n/es_EC.po +++ b/addons/base_vat/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_MX.po b/addons/base_vat/i18n/es_MX.po index 2c74b9caf06..dba1b47ebc0 100644 --- a/addons/base_vat/i18n/es_MX.po +++ b/addons/base_vat/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-26 05:47+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_PY.po b/addons/base_vat/i18n/es_PY.po index ce71d3a0274..ed68c2566e5 100644 --- a/addons/base_vat/i18n/es_PY.po +++ b/addons/base_vat/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/et.po b/addons/base_vat/i18n/et.po index 44f224aaa36..399e66e4cd8 100644 --- a/addons/base_vat/i18n/et.po +++ b/addons/base_vat/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/eu.po b/addons/base_vat/i18n/eu.po index 61db67183b6..8b0f6cab77c 100644 --- a/addons/base_vat/i18n/eu.po +++ b/addons/base_vat/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/fa.po b/addons/base_vat/i18n/fa.po index 4790fcba223..8f605682591 100644 --- a/addons/base_vat/i18n/fa.po +++ b/addons/base_vat/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/fi.po b/addons/base_vat/i18n/fi.po index 63a3621bd82..38deea84d07 100644 --- a/addons/base_vat/i18n/fi.po +++ b/addons/base_vat/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/fr.po b/addons/base_vat/i18n/fr.po index 35a5963c5c4..20897e45aaf 100644 --- a/addons/base_vat/i18n/fr.po +++ b/addons/base_vat/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-14 16:40+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/gl.po b/addons/base_vat/i18n/gl.po index 4798169f3ac..edf90ec5614 100644 --- a/addons/base_vat/i18n/gl.po +++ b/addons/base_vat/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/gu.po b/addons/base_vat/i18n/gu.po index 13beb04f405..62198a8ce95 100644 --- a/addons/base_vat/i18n/gu.po +++ b/addons/base_vat/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/hr.po b/addons/base_vat/i18n/hr.po index b0e8c0758dd..52f336300d6 100644 --- a/addons/base_vat/i18n/hr.po +++ b/addons/base_vat/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/hu.po b/addons/base_vat/i18n/hu.po index 2805266cf6c..6c4519fce10 100644 --- a/addons/base_vat/i18n/hu.po +++ b/addons/base_vat/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/id.po b/addons/base_vat/i18n/id.po index 647b1ed1764..48ff7858f74 100644 --- a/addons/base_vat/i18n/id.po +++ b/addons/base_vat/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/it.po b/addons/base_vat/i18n/it.po index e6242f188b7..9517fcc3b96 100644 --- a/addons/base_vat/i18n/it.po +++ b/addons/base_vat/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ja.po b/addons/base_vat/i18n/ja.po index 7feb9bcc08e..d174445130d 100644 --- a/addons/base_vat/i18n/ja.po +++ b/addons/base_vat/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ko.po b/addons/base_vat/i18n/ko.po index 9fc769ce169..718865bb3bc 100644 --- a/addons/base_vat/i18n/ko.po +++ b/addons/base_vat/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/lt.po b/addons/base_vat/i18n/lt.po index db879ca60ae..b60931457e9 100644 --- a/addons/base_vat/i18n/lt.po +++ b/addons/base_vat/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/lv.po b/addons/base_vat/i18n/lv.po index 87476dd82a0..7f9b6c311a5 100644 --- a/addons/base_vat/i18n/lv.po +++ b/addons/base_vat/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/mk.po b/addons/base_vat/i18n/mk.po index 63d3e201205..3d6ca5305f1 100644 --- a/addons/base_vat/i18n/mk.po +++ b/addons/base_vat/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: base_vat diff --git a/addons/base_vat/i18n/mn.po b/addons/base_vat/i18n/mn.po index f7d41274589..edefab3d55d 100644 --- a/addons/base_vat/i18n/mn.po +++ b/addons/base_vat/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/nb.po b/addons/base_vat/i18n/nb.po index 260a3a69c55..4a1d72a2f62 100644 --- a/addons/base_vat/i18n/nb.po +++ b/addons/base_vat/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/nl.po b/addons/base_vat/i18n/nl.po index 45224b1cf0e..e3697ac27b7 100644 --- a/addons/base_vat/i18n/nl.po +++ b/addons/base_vat/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-10 08:23+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/nl_BE.po b/addons/base_vat/i18n/nl_BE.po index 7a5e23240d9..6d55ffdbdb2 100644 --- a/addons/base_vat/i18n/nl_BE.po +++ b/addons/base_vat/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/oc.po b/addons/base_vat/i18n/oc.po index 9fedfe6f792..e45e7ac461b 100644 --- a/addons/base_vat/i18n/oc.po +++ b/addons/base_vat/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/pl.po b/addons/base_vat/i18n/pl.po index 41cc63a5dd4..d948951d244 100644 --- a/addons/base_vat/i18n/pl.po +++ b/addons/base_vat/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/pt.po b/addons/base_vat/i18n/pt.po index 8861927c3f8..95529046444 100644 --- a/addons/base_vat/i18n/pt.po +++ b/addons/base_vat/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/pt_BR.po b/addons/base_vat/i18n/pt_BR.po index 0292edd9a91..90e75f33347 100644 --- a/addons/base_vat/i18n/pt_BR.po +++ b/addons/base_vat/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ro.po b/addons/base_vat/i18n/ro.po index 46ea79d6c83..5e5fec0200e 100644 --- a/addons/base_vat/i18n/ro.po +++ b/addons/base_vat/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:36+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ru.po b/addons/base_vat/i18n/ru.po index 900fefa0e40..30b9661a73f 100644 --- a/addons/base_vat/i18n/ru.po +++ b/addons/base_vat/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sk.po b/addons/base_vat/i18n/sk.po index 1ae65b3b803..ea842d36cbf 100644 --- a/addons/base_vat/i18n/sk.po +++ b/addons/base_vat/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sl.po b/addons/base_vat/i18n/sl.po index 05987c4f99f..836396242d0 100644 --- a/addons/base_vat/i18n/sl.po +++ b/addons/base_vat/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sq.po b/addons/base_vat/i18n/sq.po index f20f437a165..95062e1c759 100644 --- a/addons/base_vat/i18n/sq.po +++ b/addons/base_vat/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sr.po b/addons/base_vat/i18n/sr.po index e55246724a0..9346e307b82 100644 --- a/addons/base_vat/i18n/sr.po +++ b/addons/base_vat/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sr@latin.po b/addons/base_vat/i18n/sr@latin.po index 70bd814be34..483ccd515d1 100644 --- a/addons/base_vat/i18n/sr@latin.po +++ b/addons/base_vat/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sv.po b/addons/base_vat/i18n/sv.po index 9c76a1538fd..53fe15ac4f9 100644 --- a/addons/base_vat/i18n/sv.po +++ b/addons/base_vat/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/th.po b/addons/base_vat/i18n/th.po index a7283bc2136..6b4dca6f509 100644 --- a/addons/base_vat/i18n/th.po +++ b/addons/base_vat/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/tlh.po b/addons/base_vat/i18n/tlh.po index 600ac1fd405..aa2c3fb1e16 100644 --- a/addons/base_vat/i18n/tlh.po +++ b/addons/base_vat/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/tr.po b/addons/base_vat/i18n/tr.po index 07650f08fcf..ae5cb607ed7 100644 --- a/addons/base_vat/i18n/tr.po +++ b/addons/base_vat/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/uk.po b/addons/base_vat/i18n/uk.po index d26f7b63137..d92fceef213 100644 --- a/addons/base_vat/i18n/uk.po +++ b/addons/base_vat/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/vi.po b/addons/base_vat/i18n/vi.po index 6542b0e4239..a8fb28ea7e8 100644 --- a/addons/base_vat/i18n/vi.po +++ b/addons/base_vat/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/zh_CN.po b/addons/base_vat/i18n/zh_CN.po index aa935abd3b4..e17ccb36333 100644 --- a/addons/base_vat/i18n/zh_CN.po +++ b/addons/base_vat/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-08 14:12+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/zh_TW.po b/addons/base_vat/i18n/zh_TW.po index d36a2230808..964e23b222c 100644 --- a/addons/base_vat/i18n/zh_TW.po +++ b/addons/base_vat/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/board/i18n/ar.po b/addons/board/i18n/ar.po index e730a3646e6..5bcc71609fb 100644 --- a/addons/board/i18n/ar.po +++ b/addons/board/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/bg.po b/addons/board/i18n/bg.po index 9676f4c6e0c..8beb326f500 100644 --- a/addons/board/i18n/bg.po +++ b/addons/board/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/br.po b/addons/board/i18n/br.po index 4b6f89d4a8a..fb8fafa6194 100644 --- a/addons/board/i18n/br.po +++ b/addons/board/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/bs.po b/addons/board/i18n/bs.po index c5d1019e9e4..15ff212384f 100644 --- a/addons/board/i18n/bs.po +++ b/addons/board/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:12+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ca.po b/addons/board/i18n/ca.po index c64cb1f6191..64a23576aaf 100644 --- a/addons/board/i18n/ca.po +++ b/addons/board/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/cs.po b/addons/board/i18n/cs.po index 23837122288..495a6d40083 100644 --- a/addons/board/i18n/cs.po +++ b/addons/board/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/da.po b/addons/board/i18n/da.po index 922bc2bb990..5ce91f969f5 100644 --- a/addons/board/i18n/da.po +++ b/addons/board/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-16 05:13+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/de.po b/addons/board/i18n/de.po index 24c1c137322..700e3b3048d 100644 --- a/addons/board/i18n/de.po +++ b/addons/board/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/el.po b/addons/board/i18n/el.po index c4c9e8c925a..4e138892625 100644 --- a/addons/board/i18n/el.po +++ b/addons/board/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/en_GB.po b/addons/board/i18n/en_GB.po index 14dee5f7732..2d07387393f 100644 --- a/addons/board/i18n/en_GB.po +++ b/addons/board/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es.po b/addons/board/i18n/es.po index 8f090bf0912..13b47cb6b36 100644 --- a/addons/board/i18n/es.po +++ b/addons/board/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_AR.po b/addons/board/i18n/es_AR.po index 2a61513ca16..3dd34c59f2d 100644 --- a/addons/board/i18n/es_AR.po +++ b/addons/board/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_CL.po b/addons/board/i18n/es_CL.po index e3b79805fad..725068ec7b7 100644 --- a/addons/board/i18n/es_CL.po +++ b/addons/board/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_CR.po b/addons/board/i18n/es_CR.po index 2af433f6271..d9a8107c20c 100644 --- a/addons/board/i18n/es_CR.po +++ b/addons/board/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_EC.po b/addons/board/i18n/es_EC.po index c96c7b3b2d8..63dffd1dec6 100644 --- a/addons/board/i18n/es_EC.po +++ b/addons/board/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_PY.po b/addons/board/i18n/es_PY.po index f8ddc574c47..7e24c3e63c0 100644 --- a/addons/board/i18n/es_PY.po +++ b/addons/board/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/et.po b/addons/board/i18n/et.po index e2278d389af..b618796a0fe 100644 --- a/addons/board/i18n/et.po +++ b/addons/board/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fa.po b/addons/board/i18n/fa.po index 51bd3754913..4780d4a194d 100644 --- a/addons/board/i18n/fa.po +++ b/addons/board/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fi.po b/addons/board/i18n/fi.po index b0c7ff2fee5..49676cf456e 100644 --- a/addons/board/i18n/fi.po +++ b/addons/board/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fr.po b/addons/board/i18n/fr.po index e1deefb67c0..1c32b0f5855 100644 --- a/addons/board/i18n/fr.po +++ b/addons/board/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/gl.po b/addons/board/i18n/gl.po index cda3cece6a7..761b304a8a8 100644 --- a/addons/board/i18n/gl.po +++ b/addons/board/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/gu.po b/addons/board/i18n/gu.po index 53d5ba7e33c..10cb72b43a2 100644 --- a/addons/board/i18n/gu.po +++ b/addons/board/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/hr.po b/addons/board/i18n/hr.po index efb747386a3..fa3e8c7749d 100644 --- a/addons/board/i18n/hr.po +++ b/addons/board/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/hu.po b/addons/board/i18n/hu.po index 7392ef27212..4de4473c857 100644 --- a/addons/board/i18n/hu.po +++ b/addons/board/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/id.po b/addons/board/i18n/id.po index 775be05ac74..c6f4a6ceb28 100644 --- a/addons/board/i18n/id.po +++ b/addons/board/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/it.po b/addons/board/i18n/it.po index 13cec8064d8..6267f7370ce 100644 --- a/addons/board/i18n/it.po +++ b/addons/board/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ja.po b/addons/board/i18n/ja.po index cee3b2e16d1..0912ee41aad 100644 --- a/addons/board/i18n/ja.po +++ b/addons/board/i18n/ja.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-11-21 03:36+0000\n" +"Last-Translator: Yoshi Tashiro \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create @@ -88,7 +88,7 @@ msgstr "" #: code:addons/board/static/src/xml/board.xml:67 #, python-format msgid "Add to Dashboard" -msgstr "" +msgstr "ダッシュボードに追加" #. module: board #. openerp-web diff --git a/addons/board/i18n/ko.po b/addons/board/i18n/ko.po index 18689c0de0f..e0bc9c49f06 100644 --- a/addons/board/i18n/ko.po +++ b/addons/board/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ln.po b/addons/board/i18n/ln.po index 906f0ed2bc7..b409ba54c7c 100644 --- a/addons/board/i18n/ln.po +++ b/addons/board/i18n/ln.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/lt.po b/addons/board/i18n/lt.po index b69e869009d..228b8562c80 100644 --- a/addons/board/i18n/lt.po +++ b/addons/board/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/lv.po b/addons/board/i18n/lv.po index 654ace9cdea..f718e28c737 100644 --- a/addons/board/i18n/lv.po +++ b/addons/board/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-17 05:59+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/mk.po b/addons/board/i18n/mk.po index 159e6f1edf6..9c0e1b9e96e 100644 --- a/addons/board/i18n/mk.po +++ b/addons/board/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: board diff --git a/addons/board/i18n/mn.po b/addons/board/i18n/mn.po index 7ca0956c31b..9a4e0fec6da 100644 --- a/addons/board/i18n/mn.po +++ b/addons/board/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nb.po b/addons/board/i18n/nb.po index d2289a0bcd8..b4a6808b9c9 100644 --- a/addons/board/i18n/nb.po +++ b/addons/board/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nl.po b/addons/board/i18n/nl.po index 2788136a256..184e79a2105 100644 --- a/addons/board/i18n/nl.po +++ b/addons/board/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nl_BE.po b/addons/board/i18n/nl_BE.po index 9f359130f55..7b92ee17c58 100644 --- a/addons/board/i18n/nl_BE.po +++ b/addons/board/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pl.po b/addons/board/i18n/pl.po index d36e797129d..c2dcb1fb015 100644 --- a/addons/board/i18n/pl.po +++ b/addons/board/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-03 05:43+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pt.po b/addons/board/i18n/pt.po index 128684c5a50..0f487f33f33 100644 --- a/addons/board/i18n/pt.po +++ b/addons/board/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pt_BR.po b/addons/board/i18n/pt_BR.po index 0244d2be3eb..822f5055763 100644 --- a/addons/board/i18n/pt_BR.po +++ b/addons/board/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ro.po b/addons/board/i18n/ro.po index c68ca6d2db8..7eafc3ed70a 100644 --- a/addons/board/i18n/ro.po +++ b/addons/board/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-23 19:52+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ru.po b/addons/board/i18n/ru.po index 64d71f15ae4..18e11b148f3 100644 --- a/addons/board/i18n/ru.po +++ b/addons/board/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sk.po b/addons/board/i18n/sk.po index ee5f91bab63..99d557b9555 100644 --- a/addons/board/i18n/sk.po +++ b/addons/board/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sl.po b/addons/board/i18n/sl.po index dc777632256..76cbe10bb0b 100644 --- a/addons/board/i18n/sl.po +++ b/addons/board/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sq.po b/addons/board/i18n/sq.po index 9faedd14b5f..cce8552b5ab 100644 --- a/addons/board/i18n/sq.po +++ b/addons/board/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sr.po b/addons/board/i18n/sr.po index 1ce38531fae..b7e6e0d4671 100644 --- a/addons/board/i18n/sr.po +++ b/addons/board/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sr@latin.po b/addons/board/i18n/sr@latin.po index e1d8fd6fb87..002954113da 100644 --- a/addons/board/i18n/sr@latin.po +++ b/addons/board/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sv.po b/addons/board/i18n/sv.po index 3148963677d..67e929b7b27 100644 --- a/addons/board/i18n/sv.po +++ b/addons/board/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/th.po b/addons/board/i18n/th.po index 9e23472d768..bf9a48c2ced 100644 --- a/addons/board/i18n/th.po +++ b/addons/board/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/tlh.po b/addons/board/i18n/tlh.po index c18d1768e36..2de34345a62 100644 --- a/addons/board/i18n/tlh.po +++ b/addons/board/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/tr.po b/addons/board/i18n/tr.po index 2f81859f31e..96349c629cc 100644 --- a/addons/board/i18n/tr.po +++ b/addons/board/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/uk.po b/addons/board/i18n/uk.po index 70b114b2895..2988c699a5c 100644 --- a/addons/board/i18n/uk.po +++ b/addons/board/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/vi.po b/addons/board/i18n/vi.po index 03cf1e93ed4..39ae455cffb 100644 --- a/addons/board/i18n/vi.po +++ b/addons/board/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/zh_CN.po b/addons/board/i18n/zh_CN.po index 1ebf66a6800..9e01a603091 100644 --- a/addons/board/i18n/zh_CN.po +++ b/addons/board/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-15 06:10+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/zh_TW.po b/addons/board/i18n/zh_TW.po index c4d49cb4600..a1d4acf0c83 100644 --- a/addons/board/i18n/zh_TW.po +++ b/addons/board/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/claim_from_delivery/i18n/ar.po b/addons/claim_from_delivery/i18n/ar.po index ca7b74bd763..96419602d42 100644 --- a/addons/claim_from_delivery/i18n/ar.po +++ b/addons/claim_from_delivery/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/bg.po b/addons/claim_from_delivery/i18n/bg.po index fa9aaf68b9a..ff4814f5092 100644 --- a/addons/claim_from_delivery/i18n/bg.po +++ b/addons/claim_from_delivery/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/bs.po b/addons/claim_from_delivery/i18n/bs.po index 534b7ffe3cd..8a6437604aa 100644 --- a/addons/claim_from_delivery/i18n/bs.po +++ b/addons/claim_from_delivery/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:12+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ca.po b/addons/claim_from_delivery/i18n/ca.po index 1e0e52952a7..f2c6d86544c 100644 --- a/addons/claim_from_delivery/i18n/ca.po +++ b/addons/claim_from_delivery/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/cs.po b/addons/claim_from_delivery/i18n/cs.po index ad78e8b3925..d78a6798d63 100644 --- a/addons/claim_from_delivery/i18n/cs.po +++ b/addons/claim_from_delivery/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/da.po b/addons/claim_from_delivery/i18n/da.po index 0fa1d9c41a3..5a5a4a27a3b 100644 --- a/addons/claim_from_delivery/i18n/da.po +++ b/addons/claim_from_delivery/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-16 05:13+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/de.po b/addons/claim_from_delivery/i18n/de.po index 75086029410..9cf25e1159a 100644 --- a/addons/claim_from_delivery/i18n/de.po +++ b/addons/claim_from_delivery/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/en_GB.po b/addons/claim_from_delivery/i18n/en_GB.po index 3ac05d969f9..7c709a0d151 100644 --- a/addons/claim_from_delivery/i18n/en_GB.po +++ b/addons/claim_from_delivery/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es.po b/addons/claim_from_delivery/i18n/es.po index 8b542967c84..63a3b3fce9c 100644 --- a/addons/claim_from_delivery/i18n/es.po +++ b/addons/claim_from_delivery/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_AR.po b/addons/claim_from_delivery/i18n/es_AR.po index 62570fbe3ef..e8172614c8f 100644 --- a/addons/claim_from_delivery/i18n/es_AR.po +++ b/addons/claim_from_delivery/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CL.po b/addons/claim_from_delivery/i18n/es_CL.po index 6d8e97518de..0380addda3b 100644 --- a/addons/claim_from_delivery/i18n/es_CL.po +++ b/addons/claim_from_delivery/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CR.po b/addons/claim_from_delivery/i18n/es_CR.po index 02389f4fd82..d50d7b5d217 100644 --- a/addons/claim_from_delivery/i18n/es_CR.po +++ b/addons/claim_from_delivery/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_EC.po b/addons/claim_from_delivery/i18n/es_EC.po index 40b0d32200e..74e3a743128 100644 --- a/addons/claim_from_delivery/i18n/es_EC.po +++ b/addons/claim_from_delivery/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_PY.po b/addons/claim_from_delivery/i18n/es_PY.po index 3d52d195875..24ef5b6bd84 100644 --- a/addons/claim_from_delivery/i18n/es_PY.po +++ b/addons/claim_from_delivery/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/et.po b/addons/claim_from_delivery/i18n/et.po index b142f57c3e6..fced5be9813 100644 --- a/addons/claim_from_delivery/i18n/et.po +++ b/addons/claim_from_delivery/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 05:25+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fa.po b/addons/claim_from_delivery/i18n/fa.po index b80c649746f..a8e2404e3e6 100644 --- a/addons/claim_from_delivery/i18n/fa.po +++ b/addons/claim_from_delivery/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fi.po b/addons/claim_from_delivery/i18n/fi.po index 9ee66a4c1fc..6d7df9aa2cf 100644 --- a/addons/claim_from_delivery/i18n/fi.po +++ b/addons/claim_from_delivery/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fr.po b/addons/claim_from_delivery/i18n/fr.po index 045acd511c6..c6808519b1d 100644 --- a/addons/claim_from_delivery/i18n/fr.po +++ b/addons/claim_from_delivery/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/gl.po b/addons/claim_from_delivery/i18n/gl.po index cc7684db354..2a87308f60e 100644 --- a/addons/claim_from_delivery/i18n/gl.po +++ b/addons/claim_from_delivery/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/gu.po b/addons/claim_from_delivery/i18n/gu.po index 5aea34cccb1..89eb6e22479 100644 --- a/addons/claim_from_delivery/i18n/gu.po +++ b/addons/claim_from_delivery/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hr.po b/addons/claim_from_delivery/i18n/hr.po index f6b7a88c389..2e85a61224f 100644 --- a/addons/claim_from_delivery/i18n/hr.po +++ b/addons/claim_from_delivery/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hu.po b/addons/claim_from_delivery/i18n/hu.po index ff1f38af09a..606227bc1eb 100644 --- a/addons/claim_from_delivery/i18n/hu.po +++ b/addons/claim_from_delivery/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/id.po b/addons/claim_from_delivery/i18n/id.po index dce269bbf2a..0b835cefb19 100644 --- a/addons/claim_from_delivery/i18n/id.po +++ b/addons/claim_from_delivery/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/it.po b/addons/claim_from_delivery/i18n/it.po index bc25aa9b4a3..19d8c5a30d8 100644 --- a/addons/claim_from_delivery/i18n/it.po +++ b/addons/claim_from_delivery/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ja.po b/addons/claim_from_delivery/i18n/ja.po index f4ee71ced9f..54e95847eb0 100644 --- a/addons/claim_from_delivery/i18n/ja.po +++ b/addons/claim_from_delivery/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lo.po b/addons/claim_from_delivery/i18n/lo.po index b45f4663713..4f562b3cbee 100644 --- a/addons/claim_from_delivery/i18n/lo.po +++ b/addons/claim_from_delivery/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lt.po b/addons/claim_from_delivery/i18n/lt.po index 64ca302f883..70e9c3c5a8e 100644 --- a/addons/claim_from_delivery/i18n/lt.po +++ b/addons/claim_from_delivery/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/mk.po b/addons/claim_from_delivery/i18n/mk.po index b4cff4b60ae..8966375ad67 100644 --- a/addons/claim_from_delivery/i18n/mk.po +++ b/addons/claim_from_delivery/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/mn.po b/addons/claim_from_delivery/i18n/mn.po index 677682af531..9f93c79ac3a 100644 --- a/addons/claim_from_delivery/i18n/mn.po +++ b/addons/claim_from_delivery/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nb.po b/addons/claim_from_delivery/i18n/nb.po index b3312e68752..29bdeb5cb2e 100644 --- a/addons/claim_from_delivery/i18n/nb.po +++ b/addons/claim_from_delivery/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl.po b/addons/claim_from_delivery/i18n/nl.po index dd30cfdeafa..75dfc50d7bc 100644 --- a/addons/claim_from_delivery/i18n/nl.po +++ b/addons/claim_from_delivery/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl_BE.po b/addons/claim_from_delivery/i18n/nl_BE.po index 237e2618222..27750baa7ce 100644 --- a/addons/claim_from_delivery/i18n/nl_BE.po +++ b/addons/claim_from_delivery/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/oc.po b/addons/claim_from_delivery/i18n/oc.po index 4e42a6bfaf2..c4225bd1204 100644 --- a/addons/claim_from_delivery/i18n/oc.po +++ b/addons/claim_from_delivery/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pl.po b/addons/claim_from_delivery/i18n/pl.po index 6fdc9feae71..abfd900e5d2 100644 --- a/addons/claim_from_delivery/i18n/pl.po +++ b/addons/claim_from_delivery/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt.po b/addons/claim_from_delivery/i18n/pt.po index 6d7ea121b32..6426e25f3b3 100644 --- a/addons/claim_from_delivery/i18n/pt.po +++ b/addons/claim_from_delivery/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt_BR.po b/addons/claim_from_delivery/i18n/pt_BR.po index fc228ffe00a..b0a52884d21 100644 --- a/addons/claim_from_delivery/i18n/pt_BR.po +++ b/addons/claim_from_delivery/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ro.po b/addons/claim_from_delivery/i18n/ro.po index f8933abe206..f7cc95f477b 100644 --- a/addons/claim_from_delivery/i18n/ro.po +++ b/addons/claim_from_delivery/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-23 19:36+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ru.po b/addons/claim_from_delivery/i18n/ru.po index b8be9902034..d8bd0147f33 100644 --- a/addons/claim_from_delivery/i18n/ru.po +++ b/addons/claim_from_delivery/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sl.po b/addons/claim_from_delivery/i18n/sl.po index 073e461d0f6..ec7b7b54f56 100644 --- a/addons/claim_from_delivery/i18n/sl.po +++ b/addons/claim_from_delivery/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sq.po b/addons/claim_from_delivery/i18n/sq.po index 54be19c512e..c29d6dd70d2 100644 --- a/addons/claim_from_delivery/i18n/sq.po +++ b/addons/claim_from_delivery/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr.po b/addons/claim_from_delivery/i18n/sr.po index 8bf7eefff08..7aeec864a81 100644 --- a/addons/claim_from_delivery/i18n/sr.po +++ b/addons/claim_from_delivery/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr@latin.po b/addons/claim_from_delivery/i18n/sr@latin.po index a0a31baaf02..42e2d91854a 100644 --- a/addons/claim_from_delivery/i18n/sr@latin.po +++ b/addons/claim_from_delivery/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sv.po b/addons/claim_from_delivery/i18n/sv.po index acf6e9eb5fc..35b0d046741 100644 --- a/addons/claim_from_delivery/i18n/sv.po +++ b/addons/claim_from_delivery/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ta.po b/addons/claim_from_delivery/i18n/ta.po index 27b42fae24f..ef22cbf723a 100644 --- a/addons/claim_from_delivery/i18n/ta.po +++ b/addons/claim_from_delivery/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/tr.po b/addons/claim_from_delivery/i18n/tr.po index 360bf8a7486..18a59ae6b47 100644 --- a/addons/claim_from_delivery/i18n/tr.po +++ b/addons/claim_from_delivery/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/vi.po b/addons/claim_from_delivery/i18n/vi.po index d7cf57c08cd..2994f9ee01f 100644 --- a/addons/claim_from_delivery/i18n/vi.po +++ b/addons/claim_from_delivery/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_CN.po b/addons/claim_from_delivery/i18n/zh_CN.po index 8c865d29621..aa9ccc820f1 100644 --- a/addons/claim_from_delivery/i18n/zh_CN.po +++ b/addons/claim_from_delivery/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_TW.po b/addons/claim_from_delivery/i18n/zh_TW.po index 723b0c67f67..6ce41056e59 100644 --- a/addons/claim_from_delivery/i18n/zh_TW.po +++ b/addons/claim_from_delivery/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/contacts/i18n/ar.po b/addons/contacts/i18n/ar.po index 91e106be14d..0a19b43ab14 100644 --- a/addons/contacts/i18n/ar.po +++ b/addons/contacts/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/bs.po b/addons/contacts/i18n/bs.po index 97b69b0ffc4..bd9c30297d5 100644 --- a/addons/contacts/i18n/bs.po +++ b/addons/contacts/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:12+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/cs.po b/addons/contacts/i18n/cs.po index 38bf6b7fb63..f20ac1190f1 100644 --- a/addons/contacts/i18n/cs.po +++ b/addons/contacts/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/da.po b/addons/contacts/i18n/da.po index a2bacbcddfa..ae73035521f 100644 --- a/addons/contacts/i18n/da.po +++ b/addons/contacts/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/de.po b/addons/contacts/i18n/de.po index 8722a0a0964..6553155b8c0 100644 --- a/addons/contacts/i18n/de.po +++ b/addons/contacts/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/en_GB.po b/addons/contacts/i18n/en_GB.po index d0489f19314..9e10dcad438 100644 --- a/addons/contacts/i18n/en_GB.po +++ b/addons/contacts/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/es.po b/addons/contacts/i18n/es.po index f4641e1ff98..4735d5bc722 100644 --- a/addons/contacts/i18n/es.po +++ b/addons/contacts/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/es_CO.po b/addons/contacts/i18n/es_CO.po index 24da1a9bfe1..6a8d70521f1 100644 --- a/addons/contacts/i18n/es_CO.po +++ b/addons/contacts/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/et.po b/addons/contacts/i18n/et.po index 0da8576f0e1..423c6537d27 100644 --- a/addons/contacts/i18n/et.po +++ b/addons/contacts/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 05:25+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/fi.po b/addons/contacts/i18n/fi.po index 061d21f5a4d..59eb4bacebf 100644 --- a/addons/contacts/i18n/fi.po +++ b/addons/contacts/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/fr.po b/addons/contacts/i18n/fr.po index 0987a3ec400..9812750115e 100644 --- a/addons/contacts/i18n/fr.po +++ b/addons/contacts/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/hr.po b/addons/contacts/i18n/hr.po index 62532a262f7..b921960b831 100644 --- a/addons/contacts/i18n/hr.po +++ b/addons/contacts/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/hu.po b/addons/contacts/i18n/hu.po index d5a3f5a14fa..856d3ca7649 100644 --- a/addons/contacts/i18n/hu.po +++ b/addons/contacts/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/it.po b/addons/contacts/i18n/it.po index 884048f27eb..92a3b611c00 100644 --- a/addons/contacts/i18n/it.po +++ b/addons/contacts/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ja.po b/addons/contacts/i18n/ja.po index 7a9c0131fcd..4cab5ec8475 100644 --- a/addons/contacts/i18n/ja.po +++ b/addons/contacts/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-23 05:22+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ko.po b/addons/contacts/i18n/ko.po index cf3713640df..5d5537d402a 100644 --- a/addons/contacts/i18n/ko.po +++ b/addons/contacts/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/lt.po b/addons/contacts/i18n/lt.po index aa37779eda9..5faaeeb18ed 100644 --- a/addons/contacts/i18n/lt.po +++ b/addons/contacts/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/lv.po b/addons/contacts/i18n/lv.po index e0d92a9b88f..bda63674418 100644 --- a/addons/contacts/i18n/lv.po +++ b/addons/contacts/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-17 05:59+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/mk.po b/addons/contacts/i18n/mk.po index 45aeaf4ff7f..b218ce397e2 100644 --- a/addons/contacts/i18n/mk.po +++ b/addons/contacts/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: contacts diff --git a/addons/contacts/i18n/mn.po b/addons/contacts/i18n/mn.po index 56aa9c24cd6..5519676bdc4 100644 --- a/addons/contacts/i18n/mn.po +++ b/addons/contacts/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/nl.po b/addons/contacts/i18n/nl.po index cdf4175a29e..d9e30b0b448 100644 --- a/addons/contacts/i18n/nl.po +++ b/addons/contacts/i18n/nl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: contacts diff --git a/addons/contacts/i18n/nl_BE.po b/addons/contacts/i18n/nl_BE.po index 492c2bf4fc0..be338613566 100644 --- a/addons/contacts/i18n/nl_BE.po +++ b/addons/contacts/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pl.po b/addons/contacts/i18n/pl.po index 7d8b35cbc5a..6a6e61850aa 100644 --- a/addons/contacts/i18n/pl.po +++ b/addons/contacts/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt.po b/addons/contacts/i18n/pt.po index 45c1d36e2ef..7894668738e 100644 --- a/addons/contacts/i18n/pt.po +++ b/addons/contacts/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt_BR.po b/addons/contacts/i18n/pt_BR.po index 92291e19214..40e50e8a9b9 100644 --- a/addons/contacts/i18n/pt_BR.po +++ b/addons/contacts/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ro.po b/addons/contacts/i18n/ro.po index cb22ac2aa68..ec3d4ce69a5 100644 --- a/addons/contacts/i18n/ro.po +++ b/addons/contacts/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ru.po b/addons/contacts/i18n/ru.po index 7e87602eb87..5afafe3c4cc 100644 --- a/addons/contacts/i18n/ru.po +++ b/addons/contacts/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sl.po b/addons/contacts/i18n/sl.po index 80b01518e44..7735bdd635b 100644 --- a/addons/contacts/i18n/sl.po +++ b/addons/contacts/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sv.po b/addons/contacts/i18n/sv.po index e64c2e50842..4c135cee29e 100644 --- a/addons/contacts/i18n/sv.po +++ b/addons/contacts/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/th.po b/addons/contacts/i18n/th.po index e177681b592..a972b454624 100644 --- a/addons/contacts/i18n/th.po +++ b/addons/contacts/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/tr.po b/addons/contacts/i18n/tr.po index 5f52d5830da..580e476c510 100644 --- a/addons/contacts/i18n/tr.po +++ b/addons/contacts/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/vi.po b/addons/contacts/i18n/vi.po index 97fc567f630..beec0ed14c8 100644 --- a/addons/contacts/i18n/vi.po +++ b/addons/contacts/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/zh_CN.po b/addons/contacts/i18n/zh_CN.po index c13a17040ee..41198969025 100644 --- a/addons/contacts/i18n/zh_CN.po +++ b/addons/contacts/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/zh_TW.po b/addons/contacts/i18n/zh_TW.po index 7df8afb54a7..97d48e09aa7 100644 --- a/addons/contacts/i18n/zh_TW.po +++ b/addons/contacts/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/crm/i18n/ar.po b/addons/crm/i18n/ar.po index 9f7fdfaf13d..47c5087b617 100644 --- a/addons/crm/i18n/ar.po +++ b/addons/crm/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/bg.po b/addons/crm/i18n/bg.po index 2798a11489c..729bb1ee79b 100644 --- a/addons/crm/i18n/bg.po +++ b/addons/crm/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/bs.po b/addons/crm/i18n/bs.po index 2cda9b3582e..af94ce2a232 100644 --- a/addons/crm/i18n/bs.po +++ b/addons/crm/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:12+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ca.po b/addons/crm/i18n/ca.po index 5545f3a8606..0128657e6e1 100644 --- a/addons/crm/i18n/ca.po +++ b/addons/crm/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/cs.po b/addons/crm/i18n/cs.po index 3777f5614c0..143dc6624f3 100644 --- a/addons/crm/i18n/cs.po +++ b/addons/crm/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: Czech\n" #. module: crm diff --git a/addons/crm/i18n/da.po b/addons/crm/i18n/da.po index 42e104a86b3..953834956ac 100644 --- a/addons/crm/i18n/da.po +++ b/addons/crm/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-08 06:25+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/de.po b/addons/crm/i18n/de.po index 9dcfeee20c5..5ae97c88b7b 100644 --- a/addons/crm/i18n/de.po +++ b/addons/crm/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/el.po b/addons/crm/i18n/el.po index ff1f7a43bcd..df6989e5abc 100644 --- a/addons/crm/i18n/el.po +++ b/addons/crm/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es.po b/addons/crm/i18n/es.po index 6a8f19b8902..dd89a721189 100644 --- a/addons/crm/i18n/es.po +++ b/addons/crm/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es_AR.po b/addons/crm/i18n/es_AR.po index c6c08abc9db..cb15b1e6037 100644 --- a/addons/crm/i18n/es_AR.po +++ b/addons/crm/i18n/es_AR.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 msgid "# Leads" -msgstr "" +msgstr "# Iniciativas" #. module: crm #: help:sale.config.settings,fetchmail_lead:0 @@ -28,6 +28,8 @@ msgid "" "Allows you to configure your incoming mail server, and create leads from " "incoming emails." msgstr "" +"Le permite configurar su servidor de correo entrante y crear iniciativas " +"desde los correos entrantes." #. module: crm #: code:addons/crm/crm_lead.py:898 @@ -38,13 +40,13 @@ msgstr "" #: selection:crm.lead.report,type:0 #, python-format msgid "Lead" -msgstr "" +msgstr "Iniciativa" #. module: crm #: view:crm.lead:0 #: field:crm.lead,title:0 msgid "Title" -msgstr "" +msgstr "Denominación" #. module: crm #: model:ir.actions.server,message:crm.action_email_reminder_lead @@ -55,34 +57,39 @@ msgid "" "Description: [[object.description]]\n" " " msgstr "" +"Advertencia: Una iniciativa entrante está sin procesar más de 5 días.\n" +"Nombre: [[object.name ]]\n" +"ID: [[object.id ]]\n" +"Descripción: [[object.description]]\n" +" " #. module: crm #: field:crm.opportunity2phonecall,action:0 #: field:crm.phonecall2phonecall,action:0 msgid "Action" -msgstr "" +msgstr "Acción" #. module: crm #: model:ir.actions.server,name:crm.action_set_team_sales_department msgid "Set team to Sales Department" -msgstr "" +msgstr "Establecer como equipo al Departamento de ventas" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Select Opportunities" -msgstr "" +msgstr "Seleccionar oportunidades" #. module: crm #: model:res.groups,name:crm.group_fund_raising #: field:sale.config.settings,group_fund_raising:0 msgid "Manage Fund Raising" -msgstr "" +msgstr "Administrar recaudación de fondos" #. module: crm #: view:crm.lead.report:0 #: field:crm.phonecall.report,delay_close:0 msgid "Delay to close" -msgstr "" +msgstr "Demora para cerrar" #. module: crm #: view:crm.lead:0 @@ -93,7 +100,7 @@ msgstr "" #: view:crm.case.stage:0 #: field:crm.case.stage,name:0 msgid "Stage Name" -msgstr "" +msgstr "Nombre de etapa" #. module: crm #: view:crm.lead:0 @@ -101,40 +108,40 @@ msgstr "" #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 msgid "Salesperson" -msgstr "" +msgstr "Comercial" #. module: crm #: model:ir.model,name:crm.model_crm_lead_report msgid "CRM Lead Analysis" -msgstr "" +msgstr "Análisis Iniciativas CRM" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,day:0 msgid "Day" -msgstr "" +msgstr "Día" #. module: crm #: view:crm.lead:0 msgid "Company Name" -msgstr "" +msgstr "Nombre de la compañía" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor6 msgid "Training" -msgstr "" +msgstr "Formación" #. module: crm #: model:ir.actions.act_window,name:crm.crm_lead_categ_action #: model:ir.ui.menu,name:crm.menu_crm_lead_categ msgid "Sales Tags" -msgstr "" +msgstr "Etiquetas de ventas" #. module: crm #: view:crm.lead.report:0 msgid "Exp. Closing" -msgstr "" +msgstr "Cierre Esperado" #. module: crm #: view:crm.phonecall:0 @@ -144,7 +151,7 @@ msgstr "" #. module: crm #: help:crm.lead.report,creation_day:0 msgid "Creation day" -msgstr "" +msgstr "Fecha creación" #. module: crm #: field:crm.segmentation.line,name:0 @@ -155,7 +162,7 @@ msgstr "Nombre de regla" #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "It's only possible to convert one phonecall at a time." -msgstr "" +msgstr "Sólo es posible convertir una llamada telefónica cada vez." #. module: crm #: view:crm.case.resource.type:0 @@ -165,17 +172,17 @@ msgstr "" #: field:crm.lead.report,type_id:0 #: model:ir.model,name:crm.model_crm_case_resource_type msgid "Campaign" -msgstr "" +msgstr "Campaña" #. module: crm #: view:crm.lead:0 msgid "Search Opportunities" -msgstr "" +msgstr "Busqueda de oportunidades" #. module: crm #: help:crm.lead.report,deadline_month:0 msgid "Expected closing month" -msgstr "" +msgstr "Mes esperado de cierre" #. module: crm #: help:crm.case.section,message_summary:0 @@ -185,6 +192,9 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contiene el resumen del chatter (nº de mensajes, ...). Este resumen está " +"generado directamente en formato HTML para poder ser insertado en las vistas " +"kanban." #. module: crm #: code:addons/crm/crm_lead.py:640 @@ -192,7 +202,7 @@ msgstr "" #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" -msgstr "" +msgstr "Alerta!" #. module: crm #: view:crm.lead:0 @@ -207,25 +217,25 @@ msgstr "" #: model:ir.model,name:crm.model_res_partner #: model:process.node,name:crm.process_node_partner0 msgid "Partner" -msgstr "Partner" +msgstr "Empresa" #. module: crm #: view:crm.phonecall:0 #: model:ir.actions.act_window,name:crm.phonecall_to_phonecall_act msgid "Schedule Other Call" -msgstr "" +msgstr "Planificar otra llamada" #. module: crm #: code:addons/crm/crm_phonecall.py:209 #: view:crm.phonecall:0 #, python-format msgid "Phone Call" -msgstr "" +msgstr "Llamada de teléfono" #. module: crm #: field:crm.lead,opt_out:0 msgid "Opt-Out" -msgstr "" +msgstr "No acepta recibir mensajes" #. module: crm #: view:crm.lead:0 @@ -235,17 +245,17 @@ msgstr "" #. module: crm #: field:res.partner,meeting_count:0 msgid "# Meetings" -msgstr "" +msgstr "Nº reuniones" #. module: crm #: model:ir.actions.server,name:crm.action_email_reminder_lead msgid "Reminder to User" -msgstr "" +msgstr "Recordatorio al usuario" #. module: crm #: field:crm.segmentation,segmentation_line:0 msgid "Criteria" -msgstr "Criterios" +msgstr "Criterio" #. module: crm #: view:crm.lead:0 @@ -260,26 +270,26 @@ msgstr "Respuestas excluidas:" #. module: crm #: model:ir.model,name:crm.model_crm_merge_opportunity msgid "Merge opportunities" -msgstr "" +msgstr "Fusionar oportunidades" #. module: crm #: view:crm.lead.report:0 #: model:ir.actions.act_window,name:crm.action_report_crm_lead #: model:ir.ui.menu,name:crm.menu_report_crm_leads_tree msgid "Leads Analysis" -msgstr "" +msgstr "Análisis de iniciativas" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_resource_type_act #: model:ir.ui.menu,name:crm.menu_crm_case_resource_type_act msgid "Campaigns" -msgstr "" +msgstr "Campañas" #. module: crm #: view:crm.lead:0 #: field:crm.lead,state_id:0 msgid "State" -msgstr "" +msgstr "Estado" #. module: crm #: view:crm.lead:0 @@ -302,12 +312,12 @@ msgstr "" #: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" -msgstr "" +msgstr "Sin título" #. module: crm #: field:crm.lead,contact_name:0 msgid "Contact Name" -msgstr "" +msgstr "Nombre del contacto" #. module: crm #: help:crm.segmentation,categ_id:0 @@ -315,7 +325,7 @@ msgid "" "The partner category that will be added to partners that match the " "segmentation criterions after computation." msgstr "" -"La categoría del partner que será añadida a las empresas que cumplan los " +"La categoría del partner será añadida a las empresas que cumplan los " "criterios de segmentación después del cálculo." #. module: crm @@ -331,40 +341,50 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para definir una nueva segmentación de clientes.\n" +"

\n" +"Cree categorías específicas que puede asignar a sus contactos para " +"administrar mejor sus interacciones con ellos. La herramienta de " +"segmentación es capaz de asignar categorías a los contactos de acuerdo a los " +"criterios que establezca.\n" +"

\n" +" " #. module: crm #: field:crm.opportunity2phonecall,contact_name:0 #: field:crm.phonecall,partner_id:0 #: field:crm.phonecall2phonecall,contact_name:0 msgid "Contact" -msgstr "" +msgstr "Contacto" #. module: crm #: help:crm.case.section,change_responsible:0 msgid "" "When escalating to this team override the salesman with the team leader." msgstr "" +"Al escalar a este equipo sobreescribir al comercial con el jefe de equipo." #. module: crm #: model:process.transition,name:crm.process_transition_opportunitymeeting0 msgid "Opportunity Meeting" -msgstr "" +msgstr "Reunión de oportunidad" #. module: crm #: help:crm.lead.report,delay_close:0 #: help:crm.phonecall.report,delay_close:0 msgid "Number of Days to close the case" -msgstr "" +msgstr "Número de días para cerrar el caso" #. module: crm #: model:process.node,note:crm.process_node_opportunities0 msgid "When a real project/opportunity is detected" -msgstr "" +msgstr "Cuando un proyecto/oportunidad es detectado" #. module: crm #: field:res.partner,opportunity_ids:0 msgid "Leads and Opportunities" -msgstr "" +msgstr "Iniciativas y oportunidades" #. module: crm #: model:ir.actions.act_window,help:crm.relate_partner_opportunities @@ -383,12 +403,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear una oportunidad relacionada con este cliente.\n" +"

\n" +"Use las oportunidades para seguir la pista al flujo de sus ventas, seguir " +"una venta potencial y prever mejor sus futuros ingresos.\n" +"

\n" +"Podrá planificar reuniones y llamadas telefónicas desde las oportunidades, " +"convertirlas en ofertas, adjuntar documentos relacionados, rastrear todas " +"las discusiones, y mucho más.\n" +"

\n" +" " #. module: crm #: model:crm.case.stage,name:crm.stage_lead7 #: view:crm.lead:0 msgid "Dead" -msgstr "" +msgstr "Muerta" #. module: crm #: field:crm.case.section,message_unread:0 @@ -396,7 +427,7 @@ msgstr "" #: field:crm.lead,message_unread:0 #: field:crm.phonecall,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensajes no leídos" #. module: crm #: view:crm.segmentation:0 @@ -410,17 +441,17 @@ msgstr "Segmentación" #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Link to an existing customer" -msgstr "" +msgstr "Enlace a cliente existente" #. module: crm #: field:crm.lead,write_date:0 msgid "Update Date" -msgstr "" +msgstr "Actualizar fecha" #. module: crm #: field:crm.case.section,user_id:0 msgid "Team Leader" -msgstr "" +msgstr "Jefe de equipo" #. module: crm #: code:addons/crm/crm_lead.py:1052 @@ -434,6 +465,8 @@ msgid "" "This percentage depicts the default/average probability of the Case for this " "stage to be a success" msgstr "" +"Este porcentaje representa la probabilidad por defecto / media para que los " +"casos de esta etapa tengan éxito." #. module: crm #: view:crm.lead:0 @@ -448,7 +481,7 @@ msgstr "Categoría" #. module: crm #: view:crm.lead.report:0 msgid "#Opportunities" -msgstr "" +msgstr "# Oportunidades" #. module: crm #: code:addons/crm/crm_lead.py:640 @@ -456,11 +489,13 @@ msgstr "" msgid "" "Please select more than one element (lead or opportunity) from the list view." msgstr "" +"Seleccione más de un elemento (iniciativa u oportunidad) desde la vista " +"lista." #. module: crm #: field:crm.lead,partner_address_email:0 msgid "Partner Contact Email" -msgstr "" +msgstr "Dirección de correo del contacto de la empresa" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_section_act @@ -474,11 +509,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para definir un nuevo equipo de ventas.\n" +"

\n" +"Use los equipos de venta para organizar a los diferentes comerciales o " +"departamentos en equipos separados. Cada equipo trabajará en su propia lista " +"de oportunidades.\n" +"

\n" +" " #. module: crm #: model:process.transition,note:crm.process_transition_opportunitymeeting0 msgid "Normal or phone meeting for opportunity" -msgstr "" +msgstr "Reunión o conferencia telefónica para oportunidad" #. module: crm #: field:crm.lead,state:0 @@ -487,17 +530,17 @@ msgstr "" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: crm #: view:crm.lead2opportunity.partner:0 msgid "Create Opportunity" -msgstr "" +msgstr "Crear oportunidad" #. module: crm #: view:sale.config.settings:0 msgid "Configure" -msgstr "" +msgstr "Configurar" #. module: crm #: view:crm.lead:0 @@ -507,19 +550,19 @@ msgstr "Escalar" #. module: crm #: view:crm.lead:0 msgid "Mailings" -msgstr "" +msgstr "Mailings" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_stage msgid "Stage changed" -msgstr "" +msgstr "Etapa cambiada" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "June" -msgstr "" +msgstr "Junio" #. module: crm #: selection:crm.segmentation,state:0 @@ -529,7 +572,7 @@ msgstr "No está en ejecución" #. module: crm #: field:crm.lead.report,planned_revenue:0 msgid "Planned Revenue" -msgstr "Ingreso planeado" +msgstr "Ingreso previsto" #. module: crm #: code:addons/crm/crm_lead.py:988 @@ -540,14 +583,14 @@ msgstr "" #. module: crm #: field:crm.lead,planned_revenue:0 msgid "Expected Revenue" -msgstr "" +msgstr "Ingreso esperado" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "October" -msgstr "" +msgstr "Octubre" #. module: crm #: view:crm.segmentation:0 @@ -563,18 +606,22 @@ msgid "" " If the call needs to be done then the status is set " "to 'Not Held'." msgstr "" +"El estado se establece a 'Para hacer', cuando un caso es creado. Si el caso " +"está en progreso el estado se establece a 'Abierto'. Cuando la llamada " +"finaliza, el estado se establece a 'Realizada'. si la llamada requiere ser " +"realizada entonces el estado se establece a 'No realizada'" #. module: crm #: field:crm.case.section,message_summary:0 #: field:crm.lead,message_summary:0 #: field:crm.phonecall,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumen" #. module: crm #: view:crm.merge.opportunity:0 msgid "Merge" -msgstr "" +msgstr "Fusionar" #. module: crm #: view:crm.case.categ:0 @@ -584,7 +631,7 @@ msgstr "Categoría del caso" #. module: crm #: field:crm.lead,partner_address_name:0 msgid "Partner Contact Name" -msgstr "" +msgstr "Nombre del contacto de la empresa" #. module: crm #: model:ir.actions.server,subject:crm.action_email_reminder_lead @@ -592,6 +639,8 @@ msgid "" "Reminder on Lead: [[object.id ]] [[object.partner_id and 'of ' " "+object.partner_id.name or '']]" msgstr "" +"Recordatorio en iniciativa: [[object.id ]] [[object.partner_id and 'of ' " +"+object.partner_id.name or '']]" #. module: crm #: code:addons/crm/crm_lead.py:762 @@ -609,24 +658,24 @@ msgstr "Opciones de perfiles" #. module: crm #: view:crm.phonecall.report:0 msgid "#Phone calls" -msgstr "" +msgstr "#Llamadas telefónicas" #. module: crm #: sql_constraint:crm.case.section:0 msgid "The code of the sales team must be unique !" -msgstr "" +msgstr "¡El código del equipo de ventas debe ser único!" #. module: crm #: help:crm.lead,email_from:0 msgid "Email address of the contact" -msgstr "" +msgstr "Dirección de correo electrónico del contacto" #. module: crm #: selection:crm.case.stage,state:0 #: view:crm.lead:0 #: selection:crm.lead,state:0 msgid "In Progress" -msgstr "" +msgstr "En proceso" #. module: crm #: model:ir.actions.act_window,help:crm.crm_phonecall_categ_action @@ -640,6 +689,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para añadir una nueva categoría.\n" +"

\n" +"Cree categorías específicas de llamadas telefónicas para definir mejor el " +"tipo de llamadas registradas en el sistema.\n" +"

\n" +" " #. module: crm #: help:crm.case.section,reply_to:0 @@ -647,54 +703,57 @@ msgid "" "The email address put in the 'Reply-To' of all emails sent by OpenERP about " "cases in this sales team" msgstr "" +"La dirección de correo electrónico usada como \"Responder a\" de todos los " +"correos electrónicos enviados por OpenERP para los casos de este equipo de " +"ventas." #. module: crm #: field:crm.lead.report,creation_month:0 msgid "Creation Month" -msgstr "" +msgstr "Mes de creación" #. module: crm #: field:crm.case.section,resource_calendar_id:0 #: model:ir.ui.menu,name:crm.menu_action_resource_calendar_form msgid "Working Time" -msgstr "" +msgstr "Horario de trabajo" #. module: crm #: view:crm.segmentation.line:0 msgid "Partner Segmentation Lines" -msgstr "Líneas de Segmentación de Empresa" +msgstr "Líneas de segmentación de empresa" #. module: crm #: model:ir.actions.act_window,name:crm.action_report_crm_phonecall #: model:ir.ui.menu,name:crm.menu_report_crm_phonecalls_tree msgid "Phone Calls Analysis" -msgstr "" +msgstr "Análisis de llamadas" #. module: crm #: view:crm.lead:0 msgid "Leads Form" -msgstr "" +msgstr "Formulario de iniciativas" #. module: crm #: view:crm.segmentation:0 #: model:ir.model,name:crm.model_crm_segmentation msgid "Partner Segmentation" -msgstr "Segmentación de Empresa" +msgstr "Segmentación de empresa" #. module: crm #: field:crm.lead,company_currency:0 msgid "Currency" -msgstr "" +msgstr "Moneda" #. module: crm #: field:crm.lead.report,probable_revenue:0 msgid "Probable Revenue" -msgstr "" +msgstr "Ingreso estimado" #. module: crm #: help:crm.lead.report,creation_month:0 msgid "Creation month" -msgstr "" +msgstr "Mes de creación" #. module: crm #: help:crm.segmentation,name:0 @@ -704,22 +763,22 @@ msgstr "El nombre de la segmentación." #. module: crm #: model:ir.filters,name:crm.filter_usa_lead msgid "Leads from USA" -msgstr "" +msgstr "Iniciativas de EEUU" #. module: crm #: sql_constraint:crm.lead:0 msgid "The probability of closing the deal should be between 0% and 100%!" -msgstr "" +msgstr "¡La probabilidad de cierre debería estar entre 0% y 100%!" #. module: crm #: view:crm.lead:0 msgid "Leads Generation" -msgstr "" +msgstr "Generación de iniciativas" #. module: crm #: view:board.board:0 msgid "Statistics Dashboard" -msgstr "" +msgstr "Tablero de estadísticas" #. module: crm #: code:addons/crm/crm_lead.py:878 @@ -733,43 +792,45 @@ msgstr "" #: field:res.partner,opportunity_count:0 #, python-format msgid "Opportunity" -msgstr "" +msgstr "Oportunidad" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead7 msgid "Television" -msgstr "" +msgstr "Televisión" #. module: crm #: model:ir.actions.act_window,name:crm.action_crm_send_mass_convert msgid "Convert to opportunities" -msgstr "" +msgstr "Convertir a oportunidad" #. module: crm #: model:ir.model,name:crm.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: crm #: view:crm.segmentation:0 msgid "Stop Process" -msgstr "Detener Proceso" +msgstr "Detener el proceso" #. module: crm #: field:crm.case.section,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Alias" #. module: crm #: view:crm.phonecall:0 msgid "Search Phonecalls" -msgstr "" +msgstr "Buscar llamadas" #. module: crm #: view:crm.lead.report:0 msgid "" "Leads/Opportunities that are assigned to one of the sale teams I manage" msgstr "" +"Iniciativas/Oportunidades que están asignadas a uno de los equipos de venta " +"que gestiono" #. module: crm #: field:crm.segmentation.line,expr_value:0 @@ -779,7 +840,7 @@ msgstr "Valor" #. module: crm #: field:calendar.attendee,categ_id:0 msgid "Event Type" -msgstr "" +msgstr "Tipo de evento" #. module: crm #: field:crm.segmentation,exclusif:0 @@ -790,12 +851,12 @@ msgstr "Exclusivo" #: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" -msgstr "" +msgstr "Desde %s : %s" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Convert to Opportunities" -msgstr "" +msgstr "Convertir a oportunidad" #. module: crm #: view:crm.lead:0 @@ -809,13 +870,13 @@ msgstr "" #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "or" -msgstr "" +msgstr "o" #. module: crm #: field:crm.lead.report,create_date:0 #: field:crm.phonecall.report,create_date:0 msgid "Create Date" -msgstr "" +msgstr "Fecha de creación" #. module: crm #: field:crm.lead,ref2:0 @@ -828,22 +889,24 @@ msgid "" "Link between stages and sales teams. When set, this limitate the current " "stage to the selected sales teams." msgstr "" +"Enlace entre etapas y equipos de ventas. Cuando se asigna, las etapas están " +"limitadas al equipo de venta seleccionado." #. module: crm #: view:crm.case.stage:0 #: field:crm.case.stage,requirements:0 msgid "Requirements" -msgstr "" +msgstr "Requisitos" #. module: crm #: field:crm.lead,zip:0 msgid "Zip" -msgstr "" +msgstr "Código postal" #. module: crm #: view:crm.phonecall:0 msgid "Unassigned Phonecalls" -msgstr "" +msgstr "Llamadas sin asignar" #. module: crm #: view:crm.lead:0 @@ -856,17 +919,17 @@ msgstr "" #: model:process.node,name:crm.process_node_opportunities0 #: view:res.partner:0 msgid "Opportunities" -msgstr "" +msgstr "Oportunidades" #. module: crm #: field:crm.segmentation,categ_id:0 msgid "Partner Category" -msgstr "Categoría de partner" +msgstr "Categoría de empresa" #. module: crm #: field:crm.lead,probability:0 msgid "Success Rate (%)" -msgstr "" +msgstr "Tasa de éxito (%)" #. module: crm #: field:crm.segmentation,sales_purchase_active:0 @@ -876,7 +939,7 @@ msgstr "Utiliza las reglas de compra-ventas" #. module: crm #: model:crm.case.categ,name:crm.categ_phone2 msgid "Outbound" -msgstr "" +msgstr "Saliente" #. module: crm #: view:crm.lead:0 @@ -886,7 +949,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Mark Won" -msgstr "" +msgstr "Marcar como ganado" #. module: crm #: field:crm.case.stage,probability:0 @@ -896,42 +959,42 @@ msgstr "Probabilidad (%)" #. module: crm #: view:crm.lead:0 msgid "Mark Lost" -msgstr "" +msgstr "Marcar perdido" #. module: crm #: model:ir.filters,name:crm.filter_draft_lead msgid "Draft Leads" -msgstr "" +msgstr "Iniciativas borrador" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "March" -msgstr "" +msgstr "Marzo" #. module: crm #: view:crm.lead:0 msgid "Send Email" -msgstr "" +msgstr "Enviar correo electrónico" #. module: crm #: code:addons/crm/wizard/crm_lead_to_opportunity.py:89 #, python-format msgid "Warning !" -msgstr "Atención !" +msgstr "Alerta!" #. module: crm #: help:crm.case.section,message_unread:0 #: help:crm.lead,message_unread:0 #: help:crm.phonecall,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Si está marcado, los nuevos mensajes requerirán su atención" #. module: crm #: field:crm.lead,day_open:0 msgid "Days to Open" -msgstr "" +msgstr "Días para abrir" #. module: crm #: view:crm.lead:0 @@ -3082,3 +3145,24 @@ msgid "" "

\n" " " msgstr "" + +#, python-format +#~ msgid "%s a call for the %s." +#~ msgstr "" +#~ "Copy text \t\r\n" +#~ "%s una llamada para el %s." + +#~ msgid "" +#~ "If opt-out is checked, this contact has refused to receive emails or " +#~ "unsubscribed to a campaign." +#~ msgstr "" +#~ "Si se marca la casilla 'No acepta recibir mensajes', este contacto ha " +#~ "rehusado recibir correos electrónicos o ha eliminado su suscripción a una " +#~ "campaña." + +#~ msgid "Leads that are assigned to one of the sale teams I manage, or to me" +#~ msgstr "" +#~ "Iniciativas asignadas a uno de los equipos que gestiono, o a mí mismo" + +#~ msgid "Opportunity ${object.name | h})" +#~ msgstr "Oportunidad ${object.name | h})" diff --git a/addons/crm/i18n/es_CR.po b/addons/crm/i18n/es_CR.po index fbfcb9b8eb5..1d60f01f8c5 100644 --- a/addons/crm/i18n/es_CR.po +++ b/addons/crm/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es_EC.po b/addons/crm/i18n/es_EC.po index e100f80d670..de1737a798d 100644 --- a/addons/crm/i18n/es_EC.po +++ b/addons/crm/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es_MX.po b/addons/crm/i18n/es_MX.po index 44d2900b6b0..c6c811b68e8 100644 --- a/addons/crm/i18n/es_MX.po +++ b/addons/crm/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es_PY.po b/addons/crm/i18n/es_PY.po index 21a0aca52dc..d96f1b6aaac 100644 --- a/addons/crm/i18n/es_PY.po +++ b/addons/crm/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/et.po b/addons/crm/i18n/et.po index 38fb8314521..b702b503064 100644 --- a/addons/crm/i18n/et.po +++ b/addons/crm/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 05:25+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/fi.po b/addons/crm/i18n/fi.po index 1aae0011be4..c0750537f82 100644 --- a/addons/crm/i18n/fi.po +++ b/addons/crm/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: crm diff --git a/addons/crm/i18n/fr.po b/addons/crm/i18n/fr.po index a3f76d40af6..984587b1bbc 100644 --- a/addons/crm/i18n/fr.po +++ b/addons/crm/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-23 05:52+0000\n" -"X-Generator: Launchpad (build 16737)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/gl.po b/addons/crm/i18n/gl.po index 820c5933907..20960bc5620 100644 --- a/addons/crm/i18n/gl.po +++ b/addons/crm/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/gu.po b/addons/crm/i18n/gu.po index 81376724751..f36adaa1a74 100644 --- a/addons/crm/i18n/gu.po +++ b/addons/crm/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/hr.po b/addons/crm/i18n/hr.po index 0bb14239339..78d875f00c9 100644 --- a/addons/crm/i18n/hr.po +++ b/addons/crm/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/hu.po b/addons/crm/i18n/hu.po index 14b95627bfe..70f922b8404 100644 --- a/addons/crm/i18n/hu.po +++ b/addons/crm/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/id.po b/addons/crm/i18n/id.po index 2338c9c78a4..9130924cd1b 100644 --- a/addons/crm/i18n/id.po +++ b/addons/crm/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/it.po b/addons/crm/i18n/it.po index 0779aba8655..86c128670df 100644 --- a/addons/crm/i18n/it.po +++ b/addons/crm/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ja.po b/addons/crm/i18n/ja.po index 51bd36931e2..6bb556f516c 100644 --- a/addons/crm/i18n/ja.po +++ b/addons/crm/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ko.po b/addons/crm/i18n/ko.po index bff0be1c60e..358d6fbce62 100644 --- a/addons/crm/i18n/ko.po +++ b/addons/crm/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/lo.po b/addons/crm/i18n/lo.po index 7e926cd12c5..611db9fee07 100644 --- a/addons/crm/i18n/lo.po +++ b/addons/crm/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/lt.po b/addons/crm/i18n/lt.po index 79ddb2d135b..f2f9bc401aa 100644 --- a/addons/crm/i18n/lt.po +++ b/addons/crm/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-22 05:39+0000\n" -"X-Generator: Launchpad (build 16734)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/lv.po b/addons/crm/i18n/lv.po index 863aea81fad..2cc3af820cb 100644 --- a/addons/crm/i18n/lv.po +++ b/addons/crm/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/mk.po b/addons/crm/i18n/mk.po index 236719e8f1c..43398576a8c 100644 --- a/addons/crm/i18n/mk.po +++ b/addons/crm/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: crm diff --git a/addons/crm/i18n/mn.po b/addons/crm/i18n/mn.po index 834f243bfb9..bb23f3f6656 100644 --- a/addons/crm/i18n/mn.po +++ b/addons/crm/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/nb.po b/addons/crm/i18n/nb.po index c9033f93f7b..3bd3cec573b 100644 --- a/addons/crm/i18n/nb.po +++ b/addons/crm/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/nl.po b/addons/crm/i18n/nl.po index c6577109f8c..85f66a36d89 100644 --- a/addons/crm/i18n/nl.po +++ b/addons/crm/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-19 05:27+0000\n" -"X-Generator: Launchpad (build 16807)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/nl_BE.po b/addons/crm/i18n/nl_BE.po index 8b9fd818a31..103bcdde356 100644 --- a/addons/crm/i18n/nl_BE.po +++ b/addons/crm/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/pl.po b/addons/crm/i18n/pl.po index e645e099986..d900a20cbad 100644 --- a/addons/crm/i18n/pl.po +++ b/addons/crm/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/pt.po b/addons/crm/i18n/pt.po index b81ea59e6d6..2ac74545606 100644 --- a/addons/crm/i18n/pt.po +++ b/addons/crm/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/pt_BR.po b/addons/crm/i18n/pt_BR.po index 4c8ab194c7d..3192876039f 100644 --- a/addons/crm/i18n/pt_BR.po +++ b/addons/crm/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 19:53+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:35+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ro.po b/addons/crm/i18n/ro.po index a6fce065960..d8c841a353e 100644 --- a/addons/crm/i18n/ro.po +++ b/addons/crm/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:44+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ru.po b/addons/crm/i18n/ru.po index 8ba007a4d64..65dcfeea5dd 100644 --- a/addons/crm/i18n/ru.po +++ b/addons/crm/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-06 05:04+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sk.po b/addons/crm/i18n/sk.po index b84ef150fd7..59953811f0c 100644 --- a/addons/crm/i18n/sk.po +++ b/addons/crm/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sl.po b/addons/crm/i18n/sl.po index 1c5ee0df360..46ae74dc0b7 100644 --- a/addons/crm/i18n/sl.po +++ b/addons/crm/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-09 10:45+0000\n" +"PO-Revision-Date: 2013-11-20 21:53+0000\n" "Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 @@ -602,6 +602,9 @@ msgid "" " If the call needs to be done then the status is set " "to 'Not Held'." msgstr "" +"Status je 'Opravila', ko je primer kreiran. Ko je primer v napredovanju, se " +"status spremeni v 'Odprt'. Ko je klic zaključen, je status nastavljen na " +"'Zadržano'. Če je treba poklicati, je status 'Ni zadržano'." #. module: crm #: field:crm.case.section,message_summary:0 @@ -1985,7 +1988,7 @@ msgstr "Možn osti/priložnosti v statusu 'Nov'" #: selection:crm.phonecall,state:0 #: view:crm.phonecall.report:0 msgid "Not Held" -msgstr "" +msgstr "Ni zadržano" #. module: crm #: field:crm.lead.report,probability:0 @@ -3115,7 +3118,7 @@ msgstr "Navedeno" #. module: crm #: view:crm.phonecall:0 msgid "Reset to Todo" -msgstr "Ponastavitev na Todo" +msgstr "Ponastavitev na 'Opravila'" #. module: crm #: field:crm.case.section,working_hours:0 diff --git a/addons/crm/i18n/sq.po b/addons/crm/i18n/sq.po index e84254aca4f..2fc185d3c69 100644 --- a/addons/crm/i18n/sq.po +++ b/addons/crm/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:53+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sr.po b/addons/crm/i18n/sr.po index 09b4afaab44..7b511f958be 100644 --- a/addons/crm/i18n/sr.po +++ b/addons/crm/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:04+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sr@latin.po b/addons/crm/i18n/sr@latin.po index 9e459cb0e4a..6e6b0cd8375 100644 --- a/addons/crm/i18n/sr@latin.po +++ b/addons/crm/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sv.po b/addons/crm/i18n/sv.po index da2f53d425c..5a8f546f86e 100644 --- a/addons/crm/i18n/sv.po +++ b/addons/crm/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/th.po b/addons/crm/i18n/th.po index 8567776453a..e360bb0e6c7 100644 --- a/addons/crm/i18n/th.po +++ b/addons/crm/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-27 05:28+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/tlh.po b/addons/crm/i18n/tlh.po index faead1dc476..74fa9ce0bfe 100644 --- a/addons/crm/i18n/tlh.po +++ b/addons/crm/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/tr.po b/addons/crm/i18n/tr.po index 78b14c8fc74..17ef7b19e37 100644 --- a/addons/crm/i18n/tr.po +++ b/addons/crm/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: tr\n" #. module: crm diff --git a/addons/crm/i18n/uk.po b/addons/crm/i18n/uk.po index 47eea94e7ab..10e2e655ab8 100644 --- a/addons/crm/i18n/uk.po +++ b/addons/crm/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/vi.po b/addons/crm/i18n/vi.po index 76bbf821250..454b932f98a 100644 --- a/addons/crm/i18n/vi.po +++ b/addons/crm/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/zh_CN.po b/addons/crm/i18n/zh_CN.po index eec4b0037e6..c2424f89b4e 100644 --- a/addons/crm/i18n/zh_CN.po +++ b/addons/crm/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 06:30+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/zh_TW.po b/addons/crm/i18n/zh_TW.po index e84e4646425..5325f4a07dc 100644 --- a/addons/crm/i18n/zh_TW.po +++ b/addons/crm/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm_claim/i18n/ar.po b/addons/crm_claim/i18n/ar.po index 79d771072bc..4cd53e238f4 100644 --- a/addons/crm_claim/i18n/ar.po +++ b/addons/crm_claim/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/bg.po b/addons/crm_claim/i18n/bg.po index 0bf495d6d3d..f48ae942ed1 100644 --- a/addons/crm_claim/i18n/bg.po +++ b/addons/crm_claim/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/bs.po b/addons/crm_claim/i18n/bs.po index 41244559963..57a9f7ae32c 100644 --- a/addons/crm_claim/i18n/bs.po +++ b/addons/crm_claim/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:12+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ca.po b/addons/crm_claim/i18n/ca.po index 5d8797afdb9..3a7103f78ec 100644 --- a/addons/crm_claim/i18n/ca.po +++ b/addons/crm_claim/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/cs.po b/addons/crm_claim/i18n/cs.po index dcb21b10003..dc0b0eea48e 100644 --- a/addons/crm_claim/i18n/cs.po +++ b/addons/crm_claim/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/da.po b/addons/crm_claim/i18n/da.po index 41d929bb45c..879ddb1fc98 100644 --- a/addons/crm_claim/i18n/da.po +++ b/addons/crm_claim/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/de.po b/addons/crm_claim/i18n/de.po index 66f5402cfc0..e4f8c249c1d 100644 --- a/addons/crm_claim/i18n/de.po +++ b/addons/crm_claim/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/el.po b/addons/crm_claim/i18n/el.po index f8ea1e0770c..a6604f304ba 100644 --- a/addons/crm_claim/i18n/el.po +++ b/addons/crm_claim/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/es.po b/addons/crm_claim/i18n/es.po index 69222568570..d9e6aa1b353 100644 --- a/addons/crm_claim/i18n/es.po +++ b/addons/crm_claim/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/es_CR.po b/addons/crm_claim/i18n/es_CR.po index 5bcb823f2bb..bb39beca82c 100644 --- a/addons/crm_claim/i18n/es_CR.po +++ b/addons/crm_claim/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/es_EC.po b/addons/crm_claim/i18n/es_EC.po index 7ae1b09e211..65437aa7209 100644 --- a/addons/crm_claim/i18n/es_EC.po +++ b/addons/crm_claim/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/es_PY.po b/addons/crm_claim/i18n/es_PY.po index b7b6d1a6676..8b30e1ba404 100644 --- a/addons/crm_claim/i18n/es_PY.po +++ b/addons/crm_claim/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/fi.po b/addons/crm_claim/i18n/fi.po index affdbceb699..bffac4e7b26 100644 --- a/addons/crm_claim/i18n/fi.po +++ b/addons/crm_claim/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/fr.po b/addons/crm_claim/i18n/fr.po index 517543f1701..8879158b082 100644 --- a/addons/crm_claim/i18n/fr.po +++ b/addons/crm_claim/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/gl.po b/addons/crm_claim/i18n/gl.po index 372f56b6a3b..2a883adbe6f 100644 --- a/addons/crm_claim/i18n/gl.po +++ b/addons/crm_claim/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/gu.po b/addons/crm_claim/i18n/gu.po index b2c489c0756..2ab2caadf95 100644 --- a/addons/crm_claim/i18n/gu.po +++ b/addons/crm_claim/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/hr.po b/addons/crm_claim/i18n/hr.po index 477b193da95..c4d79ced14d 100644 --- a/addons/crm_claim/i18n/hr.po +++ b/addons/crm_claim/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/hu.po b/addons/crm_claim/i18n/hu.po index 51134ca4c93..8bb1abc355d 100644 --- a/addons/crm_claim/i18n/hu.po +++ b/addons/crm_claim/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/it.po b/addons/crm_claim/i18n/it.po index 64ce6fd95fd..27f0b293e63 100644 --- a/addons/crm_claim/i18n/it.po +++ b/addons/crm_claim/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ja.po b/addons/crm_claim/i18n/ja.po index b47df1cb9ac..39dfb13494a 100644 --- a/addons/crm_claim/i18n/ja.po +++ b/addons/crm_claim/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ko.po b/addons/crm_claim/i18n/ko.po index 51d40475fd7..0e2ef978de4 100644 --- a/addons/crm_claim/i18n/ko.po +++ b/addons/crm_claim/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/lt.po b/addons/crm_claim/i18n/lt.po index f834371f933..27e2bd32baf 100644 --- a/addons/crm_claim/i18n/lt.po +++ b/addons/crm_claim/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/mk.po b/addons/crm_claim/i18n/mk.po index 6397b7af7b4..71e0579368a 100644 --- a/addons/crm_claim/i18n/mk.po +++ b/addons/crm_claim/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/mn.po b/addons/crm_claim/i18n/mn.po index 62ce19ae6e5..64b303f372e 100644 --- a/addons/crm_claim/i18n/mn.po +++ b/addons/crm_claim/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/nb.po b/addons/crm_claim/i18n/nb.po index db76c63a3a5..bde676c1c76 100644 --- a/addons/crm_claim/i18n/nb.po +++ b/addons/crm_claim/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/nl.po b/addons/crm_claim/i18n/nl.po index 0ed41c770cd..8db11c3914a 100644 --- a/addons/crm_claim/i18n/nl.po +++ b/addons/crm_claim/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-08 11:21+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/pl.po b/addons/crm_claim/i18n/pl.po index 95b64584282..2803f949d1e 100644 --- a/addons/crm_claim/i18n/pl.po +++ b/addons/crm_claim/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/pt.po b/addons/crm_claim/i18n/pt.po index c62bd4a1553..cbdcf93f8a0 100644 --- a/addons/crm_claim/i18n/pt.po +++ b/addons/crm_claim/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/pt_BR.po b/addons/crm_claim/i18n/pt_BR.po index f9510495266..10238433852 100644 --- a/addons/crm_claim/i18n/pt_BR.po +++ b/addons/crm_claim/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 19:55+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ro.po b/addons/crm_claim/i18n/ro.po index bee872f200e..a349ffa61f8 100644 --- a/addons/crm_claim/i18n/ro.po +++ b/addons/crm_claim/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-11 07:59+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ru.po b/addons/crm_claim/i18n/ru.po index 3ed8384f500..78df027cc30 100644 --- a/addons/crm_claim/i18n/ru.po +++ b/addons/crm_claim/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sl.po b/addons/crm_claim/i18n/sl.po index 493c946d8de..5f87a08b228 100644 --- a/addons/crm_claim/i18n/sl.po +++ b/addons/crm_claim/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sq.po b/addons/crm_claim/i18n/sq.po index 0e1ba79989b..d6a908a473d 100644 --- a/addons/crm_claim/i18n/sq.po +++ b/addons/crm_claim/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:54+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sr.po b/addons/crm_claim/i18n/sr.po index 4f10a3c6fc9..674f7745c64 100644 --- a/addons/crm_claim/i18n/sr.po +++ b/addons/crm_claim/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sr@latin.po b/addons/crm_claim/i18n/sr@latin.po index 63f55c05d89..60a1fd516fc 100644 --- a/addons/crm_claim/i18n/sr@latin.po +++ b/addons/crm_claim/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sv.po b/addons/crm_claim/i18n/sv.po index 7bef19e3c3e..1203a9d5d4d 100644 --- a/addons/crm_claim/i18n/sv.po +++ b/addons/crm_claim/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/tr.po b/addons/crm_claim/i18n/tr.po index e42b5854d3f..f53997a422b 100644 --- a/addons/crm_claim/i18n/tr.po +++ b/addons/crm_claim/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/zh_CN.po b/addons/crm_claim/i18n/zh_CN.po index 6e445d9d6b1..e5d3666d982 100644 --- a/addons/crm_claim/i18n/zh_CN.po +++ b/addons/crm_claim/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-13 07:11+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 @@ -91,6 +91,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击创建投诉类别。\n" +"

\n" +" 创建投诉类别来更好地对投诉进行管理和分类。\n" +" 例如:预防措施,纠正措施等。\n" +"

\n" +" " #. module: crm_claim #: view:crm.claim.report:0 @@ -357,6 +364,7 @@ msgid "" "is related to the status 'Close', when your document reaches this stage, it " "will be automatically have the 'closed' status." msgstr "" +"与此阶段对应的相关状态。文档的状态将根据所选阶段自动变更。例如:某阶段与状态“关闭”相关,当文档处于该阶段时,该文档自动设为“关闭”状态。" #. module: crm_claim #: view:crm.claim:0 @@ -572,6 +580,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击创建处理投诉的新阶段。 \n" +"

\n" +" 能够创建投诉阶段来分类管理每个进入系统的投诉。\n" +" 阶段可以定义解决投诉的所有必要的步骤。\n" +"

\n" +" " #. module: crm_claim #: help:crm.claim,state:0 diff --git a/addons/crm_claim/i18n/zh_TW.po b/addons/crm_claim/i18n/zh_TW.po index 63abba890cb..6b419100519 100644 --- a/addons/crm_claim/i18n/zh_TW.po +++ b/addons/crm_claim/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_helpdesk/i18n/ar.po b/addons/crm_helpdesk/i18n/ar.po index 87ed75569ba..b4547f4d6d5 100644 --- a/addons/crm_helpdesk/i18n/ar.po +++ b/addons/crm_helpdesk/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/bg.po b/addons/crm_helpdesk/i18n/bg.po index 9cfb8335270..c741899c1e6 100644 --- a/addons/crm_helpdesk/i18n/bg.po +++ b/addons/crm_helpdesk/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/bs.po b/addons/crm_helpdesk/i18n/bs.po index 383b44fe505..f5866b4f5f8 100644 --- a/addons/crm_helpdesk/i18n/bs.po +++ b/addons/crm_helpdesk/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:12+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ca.po b/addons/crm_helpdesk/i18n/ca.po index 2f17677d956..5428c13858c 100644 --- a/addons/crm_helpdesk/i18n/ca.po +++ b/addons/crm_helpdesk/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/cs.po b/addons/crm_helpdesk/i18n/cs.po index 24d5bed03f4..71c92a589de 100644 --- a/addons/crm_helpdesk/i18n/cs.po +++ b/addons/crm_helpdesk/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/da.po b/addons/crm_helpdesk/i18n/da.po index 089464260b8..7b379d20c52 100644 --- a/addons/crm_helpdesk/i18n/da.po +++ b/addons/crm_helpdesk/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/de.po b/addons/crm_helpdesk/i18n/de.po index 46db036bec7..9b1e99abe47 100644 --- a/addons/crm_helpdesk/i18n/de.po +++ b/addons/crm_helpdesk/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/el.po b/addons/crm_helpdesk/i18n/el.po index ef0d7bdc48d..13c915d4c21 100644 --- a/addons/crm_helpdesk/i18n/el.po +++ b/addons/crm_helpdesk/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/es.po b/addons/crm_helpdesk/i18n/es.po index 1a318cad759..34dd1e82970 100644 --- a/addons/crm_helpdesk/i18n/es.po +++ b/addons/crm_helpdesk/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/es_CR.po b/addons/crm_helpdesk/i18n/es_CR.po index 6194380bdb5..d0e7d50e22d 100644 --- a/addons/crm_helpdesk/i18n/es_CR.po +++ b/addons/crm_helpdesk/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/es_PY.po b/addons/crm_helpdesk/i18n/es_PY.po index 2e9680ce27c..b25ce8cee21 100644 --- a/addons/crm_helpdesk/i18n/es_PY.po +++ b/addons/crm_helpdesk/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/fi.po b/addons/crm_helpdesk/i18n/fi.po index ee60c5f047f..381cbfc0e35 100644 --- a/addons/crm_helpdesk/i18n/fi.po +++ b/addons/crm_helpdesk/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/fr.po b/addons/crm_helpdesk/i18n/fr.po index 26b5ddf25a7..577d8a5eb83 100644 --- a/addons/crm_helpdesk/i18n/fr.po +++ b/addons/crm_helpdesk/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/gl.po b/addons/crm_helpdesk/i18n/gl.po index 1bacedee828..864eb43f1f6 100644 --- a/addons/crm_helpdesk/i18n/gl.po +++ b/addons/crm_helpdesk/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/gu.po b/addons/crm_helpdesk/i18n/gu.po index f7020c53237..20dd0ef31e5 100644 --- a/addons/crm_helpdesk/i18n/gu.po +++ b/addons/crm_helpdesk/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/hr.po b/addons/crm_helpdesk/i18n/hr.po index 1a55994ed18..504120fc2c7 100644 --- a/addons/crm_helpdesk/i18n/hr.po +++ b/addons/crm_helpdesk/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-21 05:59+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/hu.po b/addons/crm_helpdesk/i18n/hu.po index d828d918d60..8643c5e7176 100644 --- a/addons/crm_helpdesk/i18n/hu.po +++ b/addons/crm_helpdesk/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/it.po b/addons/crm_helpdesk/i18n/it.po index 8b80e9c9c85..7ee18f1805e 100644 --- a/addons/crm_helpdesk/i18n/it.po +++ b/addons/crm_helpdesk/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ja.po b/addons/crm_helpdesk/i18n/ja.po index b93376f8f67..b95cb9a29a9 100644 --- a/addons/crm_helpdesk/i18n/ja.po +++ b/addons/crm_helpdesk/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ko.po b/addons/crm_helpdesk/i18n/ko.po index ec1811b7489..f4faf431e51 100644 --- a/addons/crm_helpdesk/i18n/ko.po +++ b/addons/crm_helpdesk/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/lt.po b/addons/crm_helpdesk/i18n/lt.po index 28c254529b4..22de1a7c078 100644 --- a/addons/crm_helpdesk/i18n/lt.po +++ b/addons/crm_helpdesk/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/lv.po b/addons/crm_helpdesk/i18n/lv.po index f8e2873aaf7..026b36eb563 100644 --- a/addons/crm_helpdesk/i18n/lv.po +++ b/addons/crm_helpdesk/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/mk.po b/addons/crm_helpdesk/i18n/mk.po index e7e6940af5f..3783045a43c 100644 --- a/addons/crm_helpdesk/i18n/mk.po +++ b/addons/crm_helpdesk/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/mn.po b/addons/crm_helpdesk/i18n/mn.po index be77d25f089..9afc9e860b8 100644 --- a/addons/crm_helpdesk/i18n/mn.po +++ b/addons/crm_helpdesk/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/nb.po b/addons/crm_helpdesk/i18n/nb.po index 4e7a3fd9afa..c8626810abb 100644 --- a/addons/crm_helpdesk/i18n/nb.po +++ b/addons/crm_helpdesk/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/nl.po b/addons/crm_helpdesk/i18n/nl.po index fabc9b10c66..972c01fabb7 100644 --- a/addons/crm_helpdesk/i18n/nl.po +++ b/addons/crm_helpdesk/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-26 12:57+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/pl.po b/addons/crm_helpdesk/i18n/pl.po index e2d71b2f3a0..359690b10f8 100644 --- a/addons/crm_helpdesk/i18n/pl.po +++ b/addons/crm_helpdesk/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/pt.po b/addons/crm_helpdesk/i18n/pt.po index 7ccf56ad290..4444643048e 100644 --- a/addons/crm_helpdesk/i18n/pt.po +++ b/addons/crm_helpdesk/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/pt_BR.po b/addons/crm_helpdesk/i18n/pt_BR.po index 7513c5abefc..f2b3c0b49c6 100644 --- a/addons/crm_helpdesk/i18n/pt_BR.po +++ b/addons/crm_helpdesk/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ro.po b/addons/crm_helpdesk/i18n/ro.po index 49bd765f731..789ba6bc1cb 100644 --- a/addons/crm_helpdesk/i18n/ro.po +++ b/addons/crm_helpdesk/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:46+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ru.po b/addons/crm_helpdesk/i18n/ru.po index ac874f4b3e1..2133e8d4ece 100644 --- a/addons/crm_helpdesk/i18n/ru.po +++ b/addons/crm_helpdesk/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sl.po b/addons/crm_helpdesk/i18n/sl.po index eb152c9a83c..129c809bee4 100644 --- a/addons/crm_helpdesk/i18n/sl.po +++ b/addons/crm_helpdesk/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sq.po b/addons/crm_helpdesk/i18n/sq.po index 397a73385da..ce28190febb 100644 --- a/addons/crm_helpdesk/i18n/sq.po +++ b/addons/crm_helpdesk/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sr.po b/addons/crm_helpdesk/i18n/sr.po index 85b937497a1..19e080cb148 100644 --- a/addons/crm_helpdesk/i18n/sr.po +++ b/addons/crm_helpdesk/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sr@latin.po b/addons/crm_helpdesk/i18n/sr@latin.po index 330fa798d00..f48d692bd6f 100644 --- a/addons/crm_helpdesk/i18n/sr@latin.po +++ b/addons/crm_helpdesk/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sv.po b/addons/crm_helpdesk/i18n/sv.po index 9e407529fcf..a32cfbc4424 100644 --- a/addons/crm_helpdesk/i18n/sv.po +++ b/addons/crm_helpdesk/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/tr.po b/addons/crm_helpdesk/i18n/tr.po index ecc95df8cfd..8a40498843b 100644 --- a/addons/crm_helpdesk/i18n/tr.po +++ b/addons/crm_helpdesk/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/zh_CN.po b/addons/crm_helpdesk/i18n/zh_CN.po index 9a9c06415ef..1fc00077927 100644 --- a/addons/crm_helpdesk/i18n/zh_CN.po +++ b/addons/crm_helpdesk/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-13 07:11+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 @@ -452,6 +452,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击创建新的请求. \n" +"

\n" +" 服务台和支持服务允许您跟踪自己的的操作。\n" +"

\n" +" 使用openerp的问题系统来管理你的服务活动。\n" +" 所有问题都可以通过邮件服务器连接: 所有新的问题都会创建邮件, 这些邮件自动获取用户的交流记录.\n" +"

\n" +" " #. module: crm_helpdesk #: field:crm.helpdesk,planned_revenue:0 diff --git a/addons/crm_helpdesk/i18n/zh_TW.po b/addons/crm_helpdesk/i18n/zh_TW.po index 15441f614a2..3806e41892e 100644 --- a/addons/crm_helpdesk/i18n/zh_TW.po +++ b/addons/crm_helpdesk/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ar.po b/addons/crm_partner_assign/i18n/ar.po index 399f36a90c1..e8b5d051de9 100644 --- a/addons/crm_partner_assign/i18n/ar.po +++ b/addons/crm_partner_assign/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/bg.po b/addons/crm_partner_assign/i18n/bg.po index 54177dae7e7..6334b210d70 100644 --- a/addons/crm_partner_assign/i18n/bg.po +++ b/addons/crm_partner_assign/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/bs.po b/addons/crm_partner_assign/i18n/bs.po index 9183c8f376e..6158fd0b94d 100644 --- a/addons/crm_partner_assign/i18n/bs.po +++ b/addons/crm_partner_assign/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:12+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ca.po b/addons/crm_partner_assign/i18n/ca.po index 62d7ed681cf..8787133939c 100644 --- a/addons/crm_partner_assign/i18n/ca.po +++ b/addons/crm_partner_assign/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/cs.po b/addons/crm_partner_assign/i18n/cs.po index 2e91201bb3c..7f88c243db9 100644 --- a/addons/crm_partner_assign/i18n/cs.po +++ b/addons/crm_partner_assign/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/da.po b/addons/crm_partner_assign/i18n/da.po index f571b4cd5a1..4e230149c93 100644 --- a/addons/crm_partner_assign/i18n/da.po +++ b/addons/crm_partner_assign/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-07 05:50+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/de.po b/addons/crm_partner_assign/i18n/de.po index 41d3231225c..49ed1efb91d 100644 --- a/addons/crm_partner_assign/i18n/de.po +++ b/addons/crm_partner_assign/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/el.po b/addons/crm_partner_assign/i18n/el.po index 6bf73cc7beb..80e61d862f4 100644 --- a/addons/crm_partner_assign/i18n/el.po +++ b/addons/crm_partner_assign/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/es.po b/addons/crm_partner_assign/i18n/es.po index 4227bc6f9aa..db0b315c54a 100644 --- a/addons/crm_partner_assign/i18n/es.po +++ b/addons/crm_partner_assign/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/es_CR.po b/addons/crm_partner_assign/i18n/es_CR.po index b468338816e..e7bd1991593 100644 --- a/addons/crm_partner_assign/i18n/es_CR.po +++ b/addons/crm_partner_assign/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/es_PY.po b/addons/crm_partner_assign/i18n/es_PY.po index d718b48cfdb..9314e3133bf 100644 --- a/addons/crm_partner_assign/i18n/es_PY.po +++ b/addons/crm_partner_assign/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/fi.po b/addons/crm_partner_assign/i18n/fi.po index 6b1b6fb0d43..6a7474fd07d 100644 --- a/addons/crm_partner_assign/i18n/fi.po +++ b/addons/crm_partner_assign/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 06:30+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/fr.po b/addons/crm_partner_assign/i18n/fr.po index d4ecc7408b1..11863ad2d87 100644 --- a/addons/crm_partner_assign/i18n/fr.po +++ b/addons/crm_partner_assign/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/gl.po b/addons/crm_partner_assign/i18n/gl.po index 9878aa99687..714b727424d 100644 --- a/addons/crm_partner_assign/i18n/gl.po +++ b/addons/crm_partner_assign/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/hr.po b/addons/crm_partner_assign/i18n/hr.po index fa5c3c04d72..b009c48df00 100644 --- a/addons/crm_partner_assign/i18n/hr.po +++ b/addons/crm_partner_assign/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-21 05:59+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/hu.po b/addons/crm_partner_assign/i18n/hu.po index 7486a204444..0827966179a 100644 --- a/addons/crm_partner_assign/i18n/hu.po +++ b/addons/crm_partner_assign/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/it.po b/addons/crm_partner_assign/i18n/it.po index bf712b059b9..b0924fcbf5b 100644 --- a/addons/crm_partner_assign/i18n/it.po +++ b/addons/crm_partner_assign/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ja.po b/addons/crm_partner_assign/i18n/ja.po index c243efb1a4c..95557a6a294 100644 --- a/addons/crm_partner_assign/i18n/ja.po +++ b/addons/crm_partner_assign/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ko.po b/addons/crm_partner_assign/i18n/ko.po index 5d37d0dbe6f..e918892f39a 100644 --- a/addons/crm_partner_assign/i18n/ko.po +++ b/addons/crm_partner_assign/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/lt.po b/addons/crm_partner_assign/i18n/lt.po index a3cdfa7589e..c8d7bc20da4 100644 --- a/addons/crm_partner_assign/i18n/lt.po +++ b/addons/crm_partner_assign/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/lv.po b/addons/crm_partner_assign/i18n/lv.po index 888bdd36241..a5b1c5cd548 100644 --- a/addons/crm_partner_assign/i18n/lv.po +++ b/addons/crm_partner_assign/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/mk.po b/addons/crm_partner_assign/i18n/mk.po index 9db8eb8c3f2..0f74ca8ec03 100644 --- a/addons/crm_partner_assign/i18n/mk.po +++ b/addons/crm_partner_assign/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/mn.po b/addons/crm_partner_assign/i18n/mn.po index d398d574cf8..701da4aac93 100644 --- a/addons/crm_partner_assign/i18n/mn.po +++ b/addons/crm_partner_assign/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/nb.po b/addons/crm_partner_assign/i18n/nb.po index 6adf8d1f78f..c1361b9bf59 100644 --- a/addons/crm_partner_assign/i18n/nb.po +++ b/addons/crm_partner_assign/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/nl.po b/addons/crm_partner_assign/i18n/nl.po index 04d7451fa4e..b25d35bfa38 100644 --- a/addons/crm_partner_assign/i18n/nl.po +++ b/addons/crm_partner_assign/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" "PO-Revision-Date: 2013-06-20 12:13+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/pl.po b/addons/crm_partner_assign/i18n/pl.po index 1463d870f40..bcefa5f7217 100644 --- a/addons/crm_partner_assign/i18n/pl.po +++ b/addons/crm_partner_assign/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/pt.po b/addons/crm_partner_assign/i18n/pt.po index d4280270b32..ebd51c8c21d 100644 --- a/addons/crm_partner_assign/i18n/pt.po +++ b/addons/crm_partner_assign/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/pt_BR.po b/addons/crm_partner_assign/i18n/pt_BR.po index 2f8416fe582..0021b037b2b 100644 --- a/addons/crm_partner_assign/i18n/pt_BR.po +++ b/addons/crm_partner_assign/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ro.po b/addons/crm_partner_assign/i18n/ro.po index d3b8e73bed1..648364d2fb0 100644 --- a/addons/crm_partner_assign/i18n/ro.po +++ b/addons/crm_partner_assign/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" "PO-Revision-Date: 2013-01-11 12:27+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ru.po b/addons/crm_partner_assign/i18n/ru.po index 6de51d0905c..9ba221ba6f7 100644 --- a/addons/crm_partner_assign/i18n/ru.po +++ b/addons/crm_partner_assign/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/sl.po b/addons/crm_partner_assign/i18n/sl.po index 084552f82ba..5a1949138b3 100644 --- a/addons/crm_partner_assign/i18n/sl.po +++ b/addons/crm_partner_assign/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/sq.po b/addons/crm_partner_assign/i18n/sq.po index 98fe0b1320d..9e04671b785 100644 --- a/addons/crm_partner_assign/i18n/sq.po +++ b/addons/crm_partner_assign/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:55+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/sr@latin.po b/addons/crm_partner_assign/i18n/sr@latin.po index 9003855232e..fe842617fc6 100644 --- a/addons/crm_partner_assign/i18n/sr@latin.po +++ b/addons/crm_partner_assign/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/sv.po b/addons/crm_partner_assign/i18n/sv.po index 05f21700b97..d560c343edc 100644 --- a/addons/crm_partner_assign/i18n/sv.po +++ b/addons/crm_partner_assign/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/tr.po b/addons/crm_partner_assign/i18n/tr.po index ca560fec792..153db303d8e 100644 --- a/addons/crm_partner_assign/i18n/tr.po +++ b/addons/crm_partner_assign/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-29 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/zh_CN.po b/addons/crm_partner_assign/i18n/zh_CN.po index f2e48425bdf..35062382572 100644 --- a/addons/crm_partner_assign/i18n/zh_CN.po +++ b/addons/crm_partner_assign/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 @@ -37,7 +37,7 @@ msgstr "计划收入" msgid "" "Message type: email for email message, notification for system message, " "comment for other messages such as user replies" -msgstr "" +msgstr "消息类型:Email 用于 邮件消息, 通知用户系统消息,评论用于其他消息,例如用户回复。" #. module: crm_partner_assign #: field:crm.lead.report.assign,nbr:0 @@ -53,7 +53,7 @@ msgstr "分组..." #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,body:0 msgid "Automatically sanitized HTML contents" -msgstr "" +msgstr "自动整理HTML内容" #. module: crm_partner_assign #: view:crm.lead:0 @@ -68,7 +68,7 @@ msgstr "geolocalization定位" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,starred:0 msgid "Starred" -msgstr "" +msgstr "加星号的邮件" #. module: crm_partner_assign #: view:crm.lead.forward.to.partner:0 @@ -80,12 +80,12 @@ msgstr "正文" msgid "" "Email address of the sender. This field is set when no matching partner is " "found for incoming emails." -msgstr "" +msgstr "发送者的Email地址。当收取的email没有对应的合作伙伴时,此字段被设置" #. module: crm_partner_assign #: view:crm.partner.report.assign:0 msgid "Date Partnership" -msgstr "" +msgstr "合作伙伴日期" #. module: crm_partner_assign #: selection:crm.lead.report.assign,type:0 @@ -111,7 +111,7 @@ msgstr "公司" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,notification_ids:0 msgid "Notifications" -msgstr "" +msgstr "通知" #. module: crm_partner_assign #: field:crm.lead.report.assign,date_assign:0 @@ -123,7 +123,7 @@ msgstr "业务伙伴日期" #: view:crm.partner.report.assign:0 #: view:res.partner:0 msgid "Salesperson" -msgstr "" +msgstr "销售员" #. module: crm_partner_assign #: selection:crm.lead.report.assign,priority:0 @@ -144,7 +144,7 @@ msgstr "消息唯一编号" #. module: crm_partner_assign #: field:res.partner,date_review_next:0 msgid "Next Partner Review" -msgstr "" +msgstr "下一个合作伙伴评价" #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,history_mode:0 @@ -170,7 +170,7 @@ msgstr "指派的geolocalization" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_crm_lead_forward_to_partner msgid "Email composition wizard" -msgstr "" +msgstr "Email撰写向导" #. module: crm_partner_assign #: field:crm.partner.report.assign,turnover:0 @@ -192,7 +192,7 @@ msgstr "为线索指定一个业务伙伴的概率(0表示没指派)" #. module: crm_partner_assign #: view:res.partner:0 msgid "Partner Activation" -msgstr "" +msgstr "激活合作伙伴" #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,type:0 @@ -203,7 +203,7 @@ msgstr "系统通知" #: code:addons/crm_partner_assign/wizard/crm_forward_to_partner.py:74 #, python-format msgid "Lead forward" -msgstr "" +msgstr "转发的线索" #. module: crm_partner_assign #: field:crm.lead.report.assign,probability:0 @@ -284,7 +284,7 @@ msgstr "最低" #. module: crm_partner_assign #: view:crm.partner.report.assign:0 msgid "Date Invoice" -msgstr "" +msgstr "发票排程" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,template_id:0 @@ -309,7 +309,7 @@ msgstr "创建日期" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_res_partner_activation msgid "res.partner.activation" -msgstr "" +msgstr "res.partner.activation" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,parent_id:0 @@ -344,7 +344,7 @@ msgstr "7月" #. module: crm_partner_assign #: view:crm.partner.report.assign:0 msgid "Date Review" -msgstr "" +msgstr "回顾排程" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -356,12 +356,12 @@ msgstr "阶段" #: view:crm.lead.report.assign:0 #: field:crm.lead.report.assign,state:0 msgid "Status" -msgstr "" +msgstr "状态" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,to_read:0 msgid "To read" -msgstr "" +msgstr "查看" #. module: crm_partner_assign #: code:addons/crm_partner_assign/wizard/crm_forward_to_partner.py:74 @@ -416,12 +416,12 @@ msgstr "到期天数" #: help:crm.lead.forward.to.partner,notified_partner_ids:0 msgid "" "Partners that have a notification pushing this message in their mailboxes" -msgstr "" +msgstr "推送此通知消息进他们邮箱的合作伙伴" #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,type:0 msgid "Comment" -msgstr "" +msgstr "评论" #. module: crm_partner_assign #: field:res.partner,partner_weight:0 @@ -449,7 +449,7 @@ msgstr "12月" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,vote_user_ids:0 msgid "Users that voted for this message" -msgstr "" +msgstr "投票给这条消息的用户" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -465,13 +465,13 @@ msgstr "开启日期" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,child_ids:0 msgid "Child Messages" -msgstr "" +msgstr "子信息" #. module: crm_partner_assign #: field:crm.partner.report.assign,date_review:0 #: field:res.partner,date_review:0 msgid "Latest Partner Review" -msgstr "" +msgstr "最新合作伙伴评论" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,subject:0 @@ -481,17 +481,17 @@ msgstr "主题" #. module: crm_partner_assign #: view:crm.lead.forward.to.partner:0 msgid "or" -msgstr "" +msgstr "或" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,body:0 msgid "Contents" -msgstr "" +msgstr "内容" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,vote_user_ids:0 msgid "Votes" -msgstr "" +msgstr "投票" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -501,13 +501,13 @@ msgstr "#商机" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,starred:0 msgid "Current user has a starred notification linked to this message" -msgstr "" +msgstr "当前用户用 星号 提醒关联到这条消息" #. module: crm_partner_assign #: field:crm.partner.report.assign,date_partnership:0 #: field:res.partner,date_partnership:0 msgid "Partnership Date" -msgstr "" +msgstr "合作关系日期" #. module: crm_partner_assign #: view:crm.lead:0 @@ -559,7 +559,7 @@ msgstr "8月" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,record_name:0 msgid "Name get of the related document." -msgstr "" +msgstr "获得相关文档的名称" #. module: crm_partner_assign #: selection:crm.lead.report.assign,priority:0 @@ -656,12 +656,12 @@ msgstr "计划收入" #. module: crm_partner_assign #: view:res.partner:0 msgid "Partner Review" -msgstr "" +msgstr "合作伙伴评价" #. module: crm_partner_assign #: field:crm.partner.report.assign,period_id:0 msgid "Invoice Period" -msgstr "" +msgstr "发票期间" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_res_partner_grade @@ -682,7 +682,7 @@ msgstr "附件" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,record_name:0 msgid "Message Record Name" -msgstr "" +msgstr "消息记录名称" #. module: crm_partner_assign #: field:res.partner.activation,sequence:0 @@ -696,7 +696,7 @@ msgstr "序列" msgid "" "Cannot contact geolocation servers. Please make sure that your internet " "connection is up and running (%s)." -msgstr "" +msgstr "无法连接地理信息服务器。请确保你的互联网链接畅通(%s)。" #. module: crm_partner_assign #: selection:crm.lead.report.assign,month:0 @@ -722,7 +722,7 @@ msgstr "开启" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,subtype_id:0 msgid "Subtype" -msgstr "" +msgstr "子类型" #. module: crm_partner_assign #: field:res.partner,date_localization:0 @@ -737,12 +737,12 @@ msgstr "当前的" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_crm_lead msgid "Lead/Opportunity" -msgstr "" +msgstr "线索/商机" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,notified_partner_ids:0 msgid "Notified partners" -msgstr "" +msgstr "已通知的合作伙伴" #. module: crm_partner_assign #: view:crm.lead.forward.to.partner:0 @@ -773,7 +773,7 @@ msgstr "可能收入" #: field:res.partner,activation:0 #: view:res.partner.activation:0 msgid "Activation" -msgstr "" +msgstr "激活" #. module: crm_partner_assign #: view:crm.lead:0 @@ -784,12 +784,12 @@ msgstr "指定的业务伙伴" #. module: crm_partner_assign #: field:res.partner,grade_id:0 msgid "Partner Level" -msgstr "" +msgstr "合作伙伴级别" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,to_read:0 msgid "Current user has an unread notification linked to this message" -msgstr "" +msgstr "当前用户有关联到这条消息的未读的提醒" #. module: crm_partner_assign #: selection:crm.lead.report.assign,type:0 @@ -815,7 +815,7 @@ msgstr "名称" #: model:ir.actions.act_window,name:crm_partner_assign.res_partner_activation_act #: model:ir.ui.menu,name:crm_partner_assign.res_partner_activation_config_mi msgid "Partner Activations" -msgstr "" +msgstr "合作伙伴激活" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -857,7 +857,7 @@ msgstr "业务伙伴分析" msgid "" "Technical field holding the message notifications. Use notified_partner_ids " "to access notified partners." -msgstr "" +msgstr "技术字段支持消息提醒,使用notified_partner_ids 来访问被提醒的合作伙伴。" #. module: crm_partner_assign #: view:crm.partner.report.assign:0 @@ -872,12 +872,12 @@ msgstr "客户关系管理 线索报表" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,composition_mode:0 msgid "Composition mode" -msgstr "" +msgstr "写作模式" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,model:0 msgid "Related Document Model" -msgstr "" +msgstr "相关单据模型" #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,history_mode:0 @@ -889,7 +889,7 @@ msgstr "业务信息" msgid "" "Author of the message. If not set, email_from may hold an email address that " "did not match any partner." -msgstr "" +msgstr "消息的作者。如未设置,email_from 可能保存一个不匹配任何合作伙伴的 email地址。" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_crm_partner_report_assign @@ -904,12 +904,12 @@ msgstr "高" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,partner_ids:0 msgid "Additional contacts" -msgstr "" +msgstr "附加的联系人" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,parent_id:0 msgid "Initial thread message." -msgstr "" +msgstr "初始化线索消息" #. module: crm_partner_assign #: field:crm.lead.report.assign,create_date:0 diff --git a/addons/crm_partner_assign/i18n/zh_TW.po b/addons/crm_partner_assign/i18n/zh_TW.po index a55268bef53..6b31e9ad914 100644 --- a/addons/crm_partner_assign/i18n/zh_TW.po +++ b/addons/crm_partner_assign/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_profiling/i18n/ar.po b/addons/crm_profiling/i18n/ar.po index bf788243d62..f52f49689a2 100644 --- a/addons/crm_profiling/i18n/ar.po +++ b/addons/crm_profiling/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/bg.po b/addons/crm_profiling/i18n/bg.po index 42139352bc4..d8628d02573 100644 --- a/addons/crm_profiling/i18n/bg.po +++ b/addons/crm_profiling/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/bs.po b/addons/crm_profiling/i18n/bs.po index 36e752256e6..d3ebac03e65 100644 --- a/addons/crm_profiling/i18n/bs.po +++ b/addons/crm_profiling/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:12+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ca.po b/addons/crm_profiling/i18n/ca.po index 23d3ae0989e..7da91c693a8 100644 --- a/addons/crm_profiling/i18n/ca.po +++ b/addons/crm_profiling/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/cs.po b/addons/crm_profiling/i18n/cs.po index f23c5ac05da..2d8e48a3997 100644 --- a/addons/crm_profiling/i18n/cs.po +++ b/addons/crm_profiling/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/da.po b/addons/crm_profiling/i18n/da.po index 6457c6b1489..b37e5f99d53 100644 --- a/addons/crm_profiling/i18n/da.po +++ b/addons/crm_profiling/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/de.po b/addons/crm_profiling/i18n/de.po index c5c5218d1a8..b1ac0264497 100644 --- a/addons/crm_profiling/i18n/de.po +++ b/addons/crm_profiling/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/el.po b/addons/crm_profiling/i18n/el.po index 78e91be18b5..9e550f3b1bf 100644 --- a/addons/crm_profiling/i18n/el.po +++ b/addons/crm_profiling/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/en_GB.po b/addons/crm_profiling/i18n/en_GB.po index 222283afdc6..0877452a723 100644 --- a/addons/crm_profiling/i18n/en_GB.po +++ b/addons/crm_profiling/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es.po b/addons/crm_profiling/i18n/es.po index bc4bf2f2179..f6b3c2170c0 100644 --- a/addons/crm_profiling/i18n/es.po +++ b/addons/crm_profiling/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_AR.po b/addons/crm_profiling/i18n/es_AR.po index a276280cb07..c4274c46051 100644 --- a/addons/crm_profiling/i18n/es_AR.po +++ b/addons/crm_profiling/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_CR.po b/addons/crm_profiling/i18n/es_CR.po index 0b088efbc54..c165d53a3d9 100644 --- a/addons/crm_profiling/i18n/es_CR.po +++ b/addons/crm_profiling/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_EC.po b/addons/crm_profiling/i18n/es_EC.po index c717a7b4bdb..27e27e4f8f6 100644 --- a/addons/crm_profiling/i18n/es_EC.po +++ b/addons/crm_profiling/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_PY.po b/addons/crm_profiling/i18n/es_PY.po index 9742919b8c5..f73aabbe88d 100644 --- a/addons/crm_profiling/i18n/es_PY.po +++ b/addons/crm_profiling/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/et.po b/addons/crm_profiling/i18n/et.po index 11a6a1cbc54..b081c353e11 100644 --- a/addons/crm_profiling/i18n/et.po +++ b/addons/crm_profiling/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 05:25+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/fi.po b/addons/crm_profiling/i18n/fi.po index 467097e85d0..6a435e7fdc9 100644 --- a/addons/crm_profiling/i18n/fi.po +++ b/addons/crm_profiling/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 06:30+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/fr.po b/addons/crm_profiling/i18n/fr.po index 6ba6482905b..262e29dea4a 100644 --- a/addons/crm_profiling/i18n/fr.po +++ b/addons/crm_profiling/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/gl.po b/addons/crm_profiling/i18n/gl.po index b9afe60b36b..720818e22d0 100644 --- a/addons/crm_profiling/i18n/gl.po +++ b/addons/crm_profiling/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/gu.po b/addons/crm_profiling/i18n/gu.po index d2005b37b7e..48dffbbb3fc 100644 --- a/addons/crm_profiling/i18n/gu.po +++ b/addons/crm_profiling/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/hr.po b/addons/crm_profiling/i18n/hr.po index 4bc8a92f7ec..10f4d9d70f4 100644 --- a/addons/crm_profiling/i18n/hr.po +++ b/addons/crm_profiling/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-21 05:59+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/hu.po b/addons/crm_profiling/i18n/hu.po index 70f6be69934..6ec03d1d0a7 100644 --- a/addons/crm_profiling/i18n/hu.po +++ b/addons/crm_profiling/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/id.po b/addons/crm_profiling/i18n/id.po index e70bb938770..040a7887d40 100644 --- a/addons/crm_profiling/i18n/id.po +++ b/addons/crm_profiling/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/it.po b/addons/crm_profiling/i18n/it.po index 88e78f9a65b..df25cb5d300 100644 --- a/addons/crm_profiling/i18n/it.po +++ b/addons/crm_profiling/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ja.po b/addons/crm_profiling/i18n/ja.po index 69b99f5708f..09a6b857950 100644 --- a/addons/crm_profiling/i18n/ja.po +++ b/addons/crm_profiling/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ko.po b/addons/crm_profiling/i18n/ko.po index 3930514495c..6a396b2174a 100644 --- a/addons/crm_profiling/i18n/ko.po +++ b/addons/crm_profiling/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/lt.po b/addons/crm_profiling/i18n/lt.po index fcd1f3db7cb..d16a87e1c62 100644 --- a/addons/crm_profiling/i18n/lt.po +++ b/addons/crm_profiling/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/lv.po b/addons/crm_profiling/i18n/lv.po index 436650a5474..d3682db2d3c 100644 --- a/addons/crm_profiling/i18n/lv.po +++ b/addons/crm_profiling/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/mk.po b/addons/crm_profiling/i18n/mk.po index 179735d1a73..6021f2b84c3 100644 --- a/addons/crm_profiling/i18n/mk.po +++ b/addons/crm_profiling/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/mn.po b/addons/crm_profiling/i18n/mn.po index b21ebfd41fb..93760ed3df6 100644 --- a/addons/crm_profiling/i18n/mn.po +++ b/addons/crm_profiling/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nb.po b/addons/crm_profiling/i18n/nb.po index da96df45542..5035abd1143 100644 --- a/addons/crm_profiling/i18n/nb.po +++ b/addons/crm_profiling/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nl.po b/addons/crm_profiling/i18n/nl.po index 4c88b9b16cc..495b060c2b6 100644 --- a/addons/crm_profiling/i18n/nl.po +++ b/addons/crm_profiling/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nl_BE.po b/addons/crm_profiling/i18n/nl_BE.po index e12fc071376..8fe7e010b6f 100644 --- a/addons/crm_profiling/i18n/nl_BE.po +++ b/addons/crm_profiling/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pl.po b/addons/crm_profiling/i18n/pl.po index ed43fa9c220..0fcbefd28cd 100644 --- a/addons/crm_profiling/i18n/pl.po +++ b/addons/crm_profiling/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pt.po b/addons/crm_profiling/i18n/pt.po index d49749603ba..1315e689713 100644 --- a/addons/crm_profiling/i18n/pt.po +++ b/addons/crm_profiling/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pt_BR.po b/addons/crm_profiling/i18n/pt_BR.po index 124db6de1bc..d702af4da44 100644 --- a/addons/crm_profiling/i18n/pt_BR.po +++ b/addons/crm_profiling/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ro.po b/addons/crm_profiling/i18n/ro.po index 5b576e27fc3..808c3b9d7d9 100644 --- a/addons/crm_profiling/i18n/ro.po +++ b/addons/crm_profiling/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-10 06:23+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ru.po b/addons/crm_profiling/i18n/ru.po index c59c8768241..7c0fbbdc454 100644 --- a/addons/crm_profiling/i18n/ru.po +++ b/addons/crm_profiling/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sk.po b/addons/crm_profiling/i18n/sk.po index e6366d5106e..7977acf9948 100644 --- a/addons/crm_profiling/i18n/sk.po +++ b/addons/crm_profiling/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sl.po b/addons/crm_profiling/i18n/sl.po index 59dbc3d029c..35f055994cc 100644 --- a/addons/crm_profiling/i18n/sl.po +++ b/addons/crm_profiling/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sq.po b/addons/crm_profiling/i18n/sq.po index f32dd45352a..cf6895b15f7 100644 --- a/addons/crm_profiling/i18n/sq.po +++ b/addons/crm_profiling/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sr.po b/addons/crm_profiling/i18n/sr.po index c51c68d1d23..af40c1e1eb1 100644 --- a/addons/crm_profiling/i18n/sr.po +++ b/addons/crm_profiling/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sr@latin.po b/addons/crm_profiling/i18n/sr@latin.po index 70fecba493c..92839e7e047 100644 --- a/addons/crm_profiling/i18n/sr@latin.po +++ b/addons/crm_profiling/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sv.po b/addons/crm_profiling/i18n/sv.po index f6ba6da4e03..3c6a082ee13 100644 --- a/addons/crm_profiling/i18n/sv.po +++ b/addons/crm_profiling/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/tlh.po b/addons/crm_profiling/i18n/tlh.po index 76b036a9ce0..5ed3657c73d 100644 --- a/addons/crm_profiling/i18n/tlh.po +++ b/addons/crm_profiling/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/tr.po b/addons/crm_profiling/i18n/tr.po index 80afa038689..65b6a192798 100644 --- a/addons/crm_profiling/i18n/tr.po +++ b/addons/crm_profiling/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/uk.po b/addons/crm_profiling/i18n/uk.po index ff42a08e8a8..023b8b555d7 100644 --- a/addons/crm_profiling/i18n/uk.po +++ b/addons/crm_profiling/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/vi.po b/addons/crm_profiling/i18n/vi.po index 4e718042202..3cfa00d96ba 100644 --- a/addons/crm_profiling/i18n/vi.po +++ b/addons/crm_profiling/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/zh_CN.po b/addons/crm_profiling/i18n/zh_CN.po index e49a275e85f..4c52893ed29 100644 --- a/addons/crm_profiling/i18n/zh_CN.po +++ b/addons/crm_profiling/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/zh_TW.po b/addons/crm_profiling/i18n/zh_TW.po index 82569b65802..73e56f70a33 100644 --- a/addons/crm_profiling/i18n/zh_TW.po +++ b/addons/crm_profiling/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_todo/i18n/ar.po b/addons/crm_todo/i18n/ar.po index 87330b5df09..0bcaac5e2ea 100644 --- a/addons/crm_todo/i18n/ar.po +++ b/addons/crm_todo/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/bs.po b/addons/crm_todo/i18n/bs.po index d7ca00e8ec3..c6aacc384f9 100644 --- a/addons/crm_todo/i18n/bs.po +++ b/addons/crm_todo/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:12+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/cs.po b/addons/crm_todo/i18n/cs.po index be555aa13ec..2a88cdc8099 100644 --- a/addons/crm_todo/i18n/cs.po +++ b/addons/crm_todo/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/da.po b/addons/crm_todo/i18n/da.po index 594f27761a4..5801918c389 100644 --- a/addons/crm_todo/i18n/da.po +++ b/addons/crm_todo/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-10 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/de.po b/addons/crm_todo/i18n/de.po index 9cddc2a4254..c186d94da53 100644 --- a/addons/crm_todo/i18n/de.po +++ b/addons/crm_todo/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/en_GB.po b/addons/crm_todo/i18n/en_GB.po index bb880e03a49..20813887a76 100644 --- a/addons/crm_todo/i18n/en_GB.po +++ b/addons/crm_todo/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/es.po b/addons/crm_todo/i18n/es.po index 6f248e9e216..3697502f57f 100644 --- a/addons/crm_todo/i18n/es.po +++ b/addons/crm_todo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/es_CR.po b/addons/crm_todo/i18n/es_CR.po index dabf2c478c2..dc480edd04b 100644 --- a/addons/crm_todo/i18n/es_CR.po +++ b/addons/crm_todo/i18n/es_CR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-19 04:56+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/et.po b/addons/crm_todo/i18n/et.po index 192fc7ab42a..db87085b791 100644 --- a/addons/crm_todo/i18n/et.po +++ b/addons/crm_todo/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 05:25+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/fi.po b/addons/crm_todo/i18n/fi.po index e592a1b3f30..29b7c1b0f72 100644 --- a/addons/crm_todo/i18n/fi.po +++ b/addons/crm_todo/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 06:30+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/fr.po b/addons/crm_todo/i18n/fr.po index 6a80f1b2157..dc866f12a7b 100644 --- a/addons/crm_todo/i18n/fr.po +++ b/addons/crm_todo/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/gu.po b/addons/crm_todo/i18n/gu.po index 1b9e2740579..74f47757876 100644 --- a/addons/crm_todo/i18n/gu.po +++ b/addons/crm_todo/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/hr.po b/addons/crm_todo/i18n/hr.po index 10b2eb14567..5b27382780b 100644 --- a/addons/crm_todo/i18n/hr.po +++ b/addons/crm_todo/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/hu.po b/addons/crm_todo/i18n/hu.po index 669b7d49c45..c7d04ee0081 100644 --- a/addons/crm_todo/i18n/hu.po +++ b/addons/crm_todo/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/it.po b/addons/crm_todo/i18n/it.po index dd83991734f..e7c4af3500f 100644 --- a/addons/crm_todo/i18n/it.po +++ b/addons/crm_todo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ja.po b/addons/crm_todo/i18n/ja.po index ad4cd3f6a80..0391d43dd05 100644 --- a/addons/crm_todo/i18n/ja.po +++ b/addons/crm_todo/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ko.po b/addons/crm_todo/i18n/ko.po index c0028ea8240..2b9f2d1ed58 100644 --- a/addons/crm_todo/i18n/ko.po +++ b/addons/crm_todo/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/lt.po b/addons/crm_todo/i18n/lt.po index 13658ced4f0..ecfe029fee5 100644 --- a/addons/crm_todo/i18n/lt.po +++ b/addons/crm_todo/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/mk.po b/addons/crm_todo/i18n/mk.po index 99920eb585b..c7c02d3e6a9 100644 --- a/addons/crm_todo/i18n/mk.po +++ b/addons/crm_todo/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/mn.po b/addons/crm_todo/i18n/mn.po index 14e56d604e5..434900547b9 100644 --- a/addons/crm_todo/i18n/mn.po +++ b/addons/crm_todo/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/nb.po b/addons/crm_todo/i18n/nb.po index 5fe02660561..6521fa28860 100644 --- a/addons/crm_todo/i18n/nb.po +++ b/addons/crm_todo/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/nl.po b/addons/crm_todo/i18n/nl.po index 30903b615f8..cd070066aee 100644 --- a/addons/crm_todo/i18n/nl.po +++ b/addons/crm_todo/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pl.po b/addons/crm_todo/i18n/pl.po index 35404dcb018..221826d331b 100644 --- a/addons/crm_todo/i18n/pl.po +++ b/addons/crm_todo/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pt.po b/addons/crm_todo/i18n/pt.po index 0e0f1bb8d42..e333a48effa 100644 --- a/addons/crm_todo/i18n/pt.po +++ b/addons/crm_todo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pt_BR.po b/addons/crm_todo/i18n/pt_BR.po index 8c9bae57cee..55f4fb10fce 100644 --- a/addons/crm_todo/i18n/pt_BR.po +++ b/addons/crm_todo/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ro.po b/addons/crm_todo/i18n/ro.po index 28e30ad537d..d6c8c7a7a6c 100644 --- a/addons/crm_todo/i18n/ro.po +++ b/addons/crm_todo/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-10 06:09+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ru.po b/addons/crm_todo/i18n/ru.po index 0b2f1e61d25..8e9d7fd9ed7 100644 --- a/addons/crm_todo/i18n/ru.po +++ b/addons/crm_todo/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/sl.po b/addons/crm_todo/i18n/sl.po index d91e92c040f..c0202ee202b 100644 --- a/addons/crm_todo/i18n/sl.po +++ b/addons/crm_todo/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-08 06:18+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/sr@latin.po b/addons/crm_todo/i18n/sr@latin.po index 3f1c586a42b..34866542152 100644 --- a/addons/crm_todo/i18n/sr@latin.po +++ b/addons/crm_todo/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/sv.po b/addons/crm_todo/i18n/sv.po index 9599205ed88..37be50e77e6 100644 --- a/addons/crm_todo/i18n/sv.po +++ b/addons/crm_todo/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/tr.po b/addons/crm_todo/i18n/tr.po index 43eea0188eb..3450202628b 100644 --- a/addons/crm_todo/i18n/tr.po +++ b/addons/crm_todo/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/zh_CN.po b/addons/crm_todo/i18n/zh_CN.po index 11809772621..760c2d85792 100644 --- a/addons/crm_todo/i18n/zh_CN.po +++ b/addons/crm_todo/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/zh_TW.po b/addons/crm_todo/i18n/zh_TW.po index 0282925dfb1..960222e10e9 100644 --- a/addons/crm_todo/i18n/zh_TW.po +++ b/addons/crm_todo/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/decimal_precision/i18n/ar.po b/addons/decimal_precision/i18n/ar.po index 789b1e88c30..faea9704d5b 100644 --- a/addons/decimal_precision/i18n/ar.po +++ b/addons/decimal_precision/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/bg.po b/addons/decimal_precision/i18n/bg.po index 7f1a567b456..297dc1924f0 100644 --- a/addons/decimal_precision/i18n/bg.po +++ b/addons/decimal_precision/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/bs.po b/addons/decimal_precision/i18n/bs.po index 74e912050bb..a74fd92d5d3 100644 --- a/addons/decimal_precision/i18n/bs.po +++ b/addons/decimal_precision/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:12+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ca.po b/addons/decimal_precision/i18n/ca.po index 53dbb13ffc1..9cc5210368c 100644 --- a/addons/decimal_precision/i18n/ca.po +++ b/addons/decimal_precision/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/cs.po b/addons/decimal_precision/i18n/cs.po index 1a4c472a769..9eb2fa134ef 100644 --- a/addons/decimal_precision/i18n/cs.po +++ b/addons/decimal_precision/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/da.po b/addons/decimal_precision/i18n/da.po index 8c6d2bb582c..971cd41647a 100644 --- a/addons/decimal_precision/i18n/da.po +++ b/addons/decimal_precision/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-10 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/de.po b/addons/decimal_precision/i18n/de.po index a64b85c2adb..6fb93bda192 100644 --- a/addons/decimal_precision/i18n/de.po +++ b/addons/decimal_precision/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/el.po b/addons/decimal_precision/i18n/el.po index c7985f7b0d8..e24e43831c2 100644 --- a/addons/decimal_precision/i18n/el.po +++ b/addons/decimal_precision/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/en_GB.po b/addons/decimal_precision/i18n/en_GB.po index 22074d6c625..642a7244681 100644 --- a/addons/decimal_precision/i18n/en_GB.po +++ b/addons/decimal_precision/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es.po b/addons/decimal_precision/i18n/es.po index fd524befdc6..71d85774742 100644 --- a/addons/decimal_precision/i18n/es.po +++ b/addons/decimal_precision/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_CR.po b/addons/decimal_precision/i18n/es_CR.po index c2445c2c7b3..778c68f27c2 100644 --- a/addons/decimal_precision/i18n/es_CR.po +++ b/addons/decimal_precision/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_EC.po b/addons/decimal_precision/i18n/es_EC.po index 9fe81165e2e..a696a2d49a5 100644 --- a/addons/decimal_precision/i18n/es_EC.po +++ b/addons/decimal_precision/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_MX.po b/addons/decimal_precision/i18n/es_MX.po index e212090ac06..8530402bffa 100644 --- a/addons/decimal_precision/i18n/es_MX.po +++ b/addons/decimal_precision/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_PY.po b/addons/decimal_precision/i18n/es_PY.po index 72a30254807..4e7acf110e8 100644 --- a/addons/decimal_precision/i18n/es_PY.po +++ b/addons/decimal_precision/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/fi.po b/addons/decimal_precision/i18n/fi.po index a6635a4749b..17d51df6e0c 100644 --- a/addons/decimal_precision/i18n/fi.po +++ b/addons/decimal_precision/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 06:30+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/fr.po b/addons/decimal_precision/i18n/fr.po index 2c0023289a7..3d20ebde33d 100644 --- a/addons/decimal_precision/i18n/fr.po +++ b/addons/decimal_precision/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/gl.po b/addons/decimal_precision/i18n/gl.po index d230e4cc51b..9d04987e44a 100644 --- a/addons/decimal_precision/i18n/gl.po +++ b/addons/decimal_precision/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/gu.po b/addons/decimal_precision/i18n/gu.po index 63f615cdd2c..d174d439a99 100644 --- a/addons/decimal_precision/i18n/gu.po +++ b/addons/decimal_precision/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/hr.po b/addons/decimal_precision/i18n/hr.po index a2ea1a13491..0a4885c2699 100644 --- a/addons/decimal_precision/i18n/hr.po +++ b/addons/decimal_precision/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/hu.po b/addons/decimal_precision/i18n/hu.po index 8b03ac23924..7fbc56074dc 100644 --- a/addons/decimal_precision/i18n/hu.po +++ b/addons/decimal_precision/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/id.po b/addons/decimal_precision/i18n/id.po index dc841cd5ba8..7a4c76647a9 100644 --- a/addons/decimal_precision/i18n/id.po +++ b/addons/decimal_precision/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/it.po b/addons/decimal_precision/i18n/it.po index 56b9aaf4e83..de7d9600055 100644 --- a/addons/decimal_precision/i18n/it.po +++ b/addons/decimal_precision/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ja.po b/addons/decimal_precision/i18n/ja.po index 345d873c6bf..130373b91cc 100644 --- a/addons/decimal_precision/i18n/ja.po +++ b/addons/decimal_precision/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ko.po b/addons/decimal_precision/i18n/ko.po index 2a60573ab7d..09e438e833d 100644 --- a/addons/decimal_precision/i18n/ko.po +++ b/addons/decimal_precision/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/lt.po b/addons/decimal_precision/i18n/lt.po index c94e6424670..dec62641aeb 100644 --- a/addons/decimal_precision/i18n/lt.po +++ b/addons/decimal_precision/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/lv.po b/addons/decimal_precision/i18n/lv.po index 2f056190634..5b48f0414da 100644 --- a/addons/decimal_precision/i18n/lv.po +++ b/addons/decimal_precision/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/mk.po b/addons/decimal_precision/i18n/mk.po index 5fbdbe40ec1..37e81c239ab 100644 --- a/addons/decimal_precision/i18n/mk.po +++ b/addons/decimal_precision/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/mn.po b/addons/decimal_precision/i18n/mn.po index 99e71b315ab..a4c391a60db 100644 --- a/addons/decimal_precision/i18n/mn.po +++ b/addons/decimal_precision/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nb.po b/addons/decimal_precision/i18n/nb.po index c70f95853fd..dae203c7836 100644 --- a/addons/decimal_precision/i18n/nb.po +++ b/addons/decimal_precision/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nl.po b/addons/decimal_precision/i18n/nl.po index 5570a26031b..f85399491c8 100644 --- a/addons/decimal_precision/i18n/nl.po +++ b/addons/decimal_precision/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nl_BE.po b/addons/decimal_precision/i18n/nl_BE.po index 4eaebe758c7..8fc4d1811ac 100644 --- a/addons/decimal_precision/i18n/nl_BE.po +++ b/addons/decimal_precision/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/pl.po b/addons/decimal_precision/i18n/pl.po index fd315069fcd..8e952db8ee7 100644 --- a/addons/decimal_precision/i18n/pl.po +++ b/addons/decimal_precision/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-15 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/pt.po b/addons/decimal_precision/i18n/pt.po index 16c3d4d9c89..b6895eb9159 100644 --- a/addons/decimal_precision/i18n/pt.po +++ b/addons/decimal_precision/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/pt_BR.po b/addons/decimal_precision/i18n/pt_BR.po index c7d705f79f6..1d3e95aa5bb 100644 --- a/addons/decimal_precision/i18n/pt_BR.po +++ b/addons/decimal_precision/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ro.po b/addons/decimal_precision/i18n/ro.po index 585baca17d4..7cbfcb833f5 100644 --- a/addons/decimal_precision/i18n/ro.po +++ b/addons/decimal_precision/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-23 19:54+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ru.po b/addons/decimal_precision/i18n/ru.po index fb70a6102df..200d7f78708 100644 --- a/addons/decimal_precision/i18n/ru.po +++ b/addons/decimal_precision/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sk.po b/addons/decimal_precision/i18n/sk.po index 3251febe66b..fb6b7f27843 100644 --- a/addons/decimal_precision/i18n/sk.po +++ b/addons/decimal_precision/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sl.po b/addons/decimal_precision/i18n/sl.po index d31ff2f1f4a..b9cd5ed03ce 100644 --- a/addons/decimal_precision/i18n/sl.po +++ b/addons/decimal_precision/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-22 05:34+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sr.po b/addons/decimal_precision/i18n/sr.po index eb18f415975..9610cdeb28e 100644 --- a/addons/decimal_precision/i18n/sr.po +++ b/addons/decimal_precision/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sr@latin.po b/addons/decimal_precision/i18n/sr@latin.po index d7bd1f60831..eb7b2169b41 100644 --- a/addons/decimal_precision/i18n/sr@latin.po +++ b/addons/decimal_precision/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sv.po b/addons/decimal_precision/i18n/sv.po index 249eb58e7d3..2646ec57d76 100644 --- a/addons/decimal_precision/i18n/sv.po +++ b/addons/decimal_precision/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/tr.po b/addons/decimal_precision/i18n/tr.po index ffe7c5ebaf0..bf6e7f36e92 100644 --- a/addons/decimal_precision/i18n/tr.po +++ b/addons/decimal_precision/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/vi.po b/addons/decimal_precision/i18n/vi.po index bb7ef3f0fcc..82c08cef383 100644 --- a/addons/decimal_precision/i18n/vi.po +++ b/addons/decimal_precision/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/zh_CN.po b/addons/decimal_precision/i18n/zh_CN.po index 2bdb08ab288..b11ce05a595 100644 --- a/addons/decimal_precision/i18n/zh_CN.po +++ b/addons/decimal_precision/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/zh_TW.po b/addons/decimal_precision/i18n/zh_TW.po index 42e348f7e49..6b05c15a2e5 100644 --- a/addons/decimal_precision/i18n/zh_TW.po +++ b/addons/decimal_precision/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/delivery/i18n/ar.po b/addons/delivery/i18n/ar.po index e8bc6b08687..40b135d5e5c 100644 --- a/addons/delivery/i18n/ar.po +++ b/addons/delivery/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/bg.po b/addons/delivery/i18n/bg.po index 9e863581497..12c398c3e94 100644 --- a/addons/delivery/i18n/bg.po +++ b/addons/delivery/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/bs.po b/addons/delivery/i18n/bs.po index b77be6a6208..5e2e8774dfb 100644 --- a/addons/delivery/i18n/bs.po +++ b/addons/delivery/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:12+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ca.po b/addons/delivery/i18n/ca.po index f2e43ee4a7d..aabae72e836 100644 --- a/addons/delivery/i18n/ca.po +++ b/addons/delivery/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/cs.po b/addons/delivery/i18n/cs.po index 5378762a3db..c946b022665 100644 --- a/addons/delivery/i18n/cs.po +++ b/addons/delivery/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/da.po b/addons/delivery/i18n/da.po index 8333d0b97ff..82c7ff4dad5 100644 --- a/addons/delivery/i18n/da.po +++ b/addons/delivery/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/de.po b/addons/delivery/i18n/de.po index 1661034e8e4..690c709c48a 100644 --- a/addons/delivery/i18n/de.po +++ b/addons/delivery/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/el.po b/addons/delivery/i18n/el.po index 172020ad2d6..1216d70a4f6 100644 --- a/addons/delivery/i18n/el.po +++ b/addons/delivery/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es.po b/addons/delivery/i18n/es.po index 7113738698e..9defc222407 100644 --- a/addons/delivery/i18n/es.po +++ b/addons/delivery/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_AR.po b/addons/delivery/i18n/es_AR.po index 34a1c26935c..0815219601b 100644 --- a/addons/delivery/i18n/es_AR.po +++ b/addons/delivery/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_CR.po b/addons/delivery/i18n/es_CR.po index 0a41a496f2e..e68563bccc7 100644 --- a/addons/delivery/i18n/es_CR.po +++ b/addons/delivery/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_EC.po b/addons/delivery/i18n/es_EC.po index 1377bc71c1a..b6616a50a89 100644 --- a/addons/delivery/i18n/es_EC.po +++ b/addons/delivery/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_MX.po b/addons/delivery/i18n/es_MX.po index 460683c07c4..d3efe9e5536 100644 --- a/addons/delivery/i18n/es_MX.po +++ b/addons/delivery/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_PY.po b/addons/delivery/i18n/es_PY.po index e4350b04ea4..4cd66ace4a8 100644 --- a/addons/delivery/i18n/es_PY.po +++ b/addons/delivery/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/et.po b/addons/delivery/i18n/et.po index 054dd590730..a9ff5a0f2ca 100644 --- a/addons/delivery/i18n/et.po +++ b/addons/delivery/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/fi.po b/addons/delivery/i18n/fi.po index 7fa6e14cc28..1ac5682124f 100644 --- a/addons/delivery/i18n/fi.po +++ b/addons/delivery/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: delivery diff --git a/addons/delivery/i18n/fr.po b/addons/delivery/i18n/fr.po index 8a959bf7805..363685d1707 100644 --- a/addons/delivery/i18n/fr.po +++ b/addons/delivery/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/gl.po b/addons/delivery/i18n/gl.po index 831e5707fc1..c06e0ad1be4 100644 --- a/addons/delivery/i18n/gl.po +++ b/addons/delivery/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hi.po b/addons/delivery/i18n/hi.po index d47e2250366..ccc274318ee 100644 --- a/addons/delivery/i18n/hi.po +++ b/addons/delivery/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hr.po b/addons/delivery/i18n/hr.po index d7eb9da124d..a410adc9343 100644 --- a/addons/delivery/i18n/hr.po +++ b/addons/delivery/i18n/hr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: delivery diff --git a/addons/delivery/i18n/hu.po b/addons/delivery/i18n/hu.po index 29cea9924de..219e67a11df 100644 --- a/addons/delivery/i18n/hu.po +++ b/addons/delivery/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/id.po b/addons/delivery/i18n/id.po index e20f8e99ade..1227cecead9 100644 --- a/addons/delivery/i18n/id.po +++ b/addons/delivery/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/it.po b/addons/delivery/i18n/it.po index 5c70dd50841..9f3b1e5dd10 100644 --- a/addons/delivery/i18n/it.po +++ b/addons/delivery/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ja.po b/addons/delivery/i18n/ja.po index 09a7562614c..936545a527c 100644 --- a/addons/delivery/i18n/ja.po +++ b/addons/delivery/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ko.po b/addons/delivery/i18n/ko.po index 091033da2af..c5d82a8e8d0 100644 --- a/addons/delivery/i18n/ko.po +++ b/addons/delivery/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/lt.po b/addons/delivery/i18n/lt.po index 4589f2a4888..eae1934cbaf 100644 --- a/addons/delivery/i18n/lt.po +++ b/addons/delivery/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/lv.po b/addons/delivery/i18n/lv.po index fd47aca8052..7d5063ef56a 100644 --- a/addons/delivery/i18n/lv.po +++ b/addons/delivery/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/mk.po b/addons/delivery/i18n/mk.po index 3d6180c0689..84e36723dcc 100644 --- a/addons/delivery/i18n/mk.po +++ b/addons/delivery/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: delivery diff --git a/addons/delivery/i18n/mn.po b/addons/delivery/i18n/mn.po index 44deaadb0f4..be43b248585 100644 --- a/addons/delivery/i18n/mn.po +++ b/addons/delivery/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nb.po b/addons/delivery/i18n/nb.po index f09a86baa36..c4560eb8266 100644 --- a/addons/delivery/i18n/nb.po +++ b/addons/delivery/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nl.po b/addons/delivery/i18n/nl.po index 6310416c1d2..9111a302760 100644 --- a/addons/delivery/i18n/nl.po +++ b/addons/delivery/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-08-01 12:30+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-02 05:58+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nl_BE.po b/addons/delivery/i18n/nl_BE.po index 9a76f084518..29339758d18 100644 --- a/addons/delivery/i18n/nl_BE.po +++ b/addons/delivery/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pl.po b/addons/delivery/i18n/pl.po index f62b2724b9d..96467c91641 100644 --- a/addons/delivery/i18n/pl.po +++ b/addons/delivery/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-15 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: delivery diff --git a/addons/delivery/i18n/pt.po b/addons/delivery/i18n/pt.po index 22fb997a385..20a8ba67925 100644 --- a/addons/delivery/i18n/pt.po +++ b/addons/delivery/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pt_BR.po b/addons/delivery/i18n/pt_BR.po index 95b3ffab8be..3c5d356e6a3 100644 --- a/addons/delivery/i18n/pt_BR.po +++ b/addons/delivery/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ro.po b/addons/delivery/i18n/ro.po index ee2f10076a9..b6eb349f3d7 100644 --- a/addons/delivery/i18n/ro.po +++ b/addons/delivery/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-23 20:27+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ru.po b/addons/delivery/i18n/ru.po index 70afa6d63a5..3ae420a540a 100644 --- a/addons/delivery/i18n/ru.po +++ b/addons/delivery/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sl.po b/addons/delivery/i18n/sl.po index 9f49086f90a..2fab21f9ea7 100644 --- a/addons/delivery/i18n/sl.po +++ b/addons/delivery/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sq.po b/addons/delivery/i18n/sq.po index e38f11107dd..3bd3e50ed2b 100644 --- a/addons/delivery/i18n/sq.po +++ b/addons/delivery/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sr.po b/addons/delivery/i18n/sr.po index 67c8f807882..f6132acb5f1 100644 --- a/addons/delivery/i18n/sr.po +++ b/addons/delivery/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sr@latin.po b/addons/delivery/i18n/sr@latin.po index 85b038f2843..10d56bffa37 100644 --- a/addons/delivery/i18n/sr@latin.po +++ b/addons/delivery/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sv.po b/addons/delivery/i18n/sv.po index 4ce8627e455..2ff99b8a1b3 100644 --- a/addons/delivery/i18n/sv.po +++ b/addons/delivery/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/th.po b/addons/delivery/i18n/th.po index 30984400dbd..13d584297e3 100644 --- a/addons/delivery/i18n/th.po +++ b/addons/delivery/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/tlh.po b/addons/delivery/i18n/tlh.po index 2c46424c15b..3cf762a1396 100644 --- a/addons/delivery/i18n/tlh.po +++ b/addons/delivery/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/tr.po b/addons/delivery/i18n/tr.po index 621b11efe92..214f49cdad7 100644 --- a/addons/delivery/i18n/tr.po +++ b/addons/delivery/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/uk.po b/addons/delivery/i18n/uk.po index eb6692ef1af..96355567481 100644 --- a/addons/delivery/i18n/uk.po +++ b/addons/delivery/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/vi.po b/addons/delivery/i18n/vi.po index ec33d23eea5..c0e2ca31e13 100644 --- a/addons/delivery/i18n/vi.po +++ b/addons/delivery/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/zh_CN.po b/addons/delivery/i18n/zh_CN.po index 19fb96a5888..5bd20aef08d 100644 --- a/addons/delivery/i18n/zh_CN.po +++ b/addons/delivery/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/zh_TW.po b/addons/delivery/i18n/zh_TW.po index 5c247cc02ad..6e1c043338f 100644 --- a/addons/delivery/i18n/zh_TW.po +++ b/addons/delivery/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/document/i18n/ar.po b/addons/document/i18n/ar.po index 9b37d50147d..0fdbccef0e1 100644 --- a/addons/document/i18n/ar.po +++ b/addons/document/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/bg.po b/addons/document/i18n/bg.po index cac84a282e8..e68229b844b 100644 --- a/addons/document/i18n/bg.po +++ b/addons/document/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/bs.po b/addons/document/i18n/bs.po index e1fca7486f0..67ba7fcf51a 100644 --- a/addons/document/i18n/bs.po +++ b/addons/document/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ca.po b/addons/document/i18n/ca.po index c7696b2113a..3406f61dd6c 100644 --- a/addons/document/i18n/ca.po +++ b/addons/document/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/cs.po b/addons/document/i18n/cs.po index 9ca3e1d41d0..b4f7ff79eb8 100644 --- a/addons/document/i18n/cs.po +++ b/addons/document/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/da.po b/addons/document/i18n/da.po index 504dc380887..e873ec53b61 100644 --- a/addons/document/i18n/da.po +++ b/addons/document/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/de.po b/addons/document/i18n/de.po index e1a53fa83ae..688a70858e8 100644 --- a/addons/document/i18n/de.po +++ b/addons/document/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/el.po b/addons/document/i18n/el.po index c6da9e272a6..3c055bb4d2a 100644 --- a/addons/document/i18n/el.po +++ b/addons/document/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es.po b/addons/document/i18n/es.po index 0fe0d67b842..716ff5dac77 100644 --- a/addons/document/i18n/es.po +++ b/addons/document/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_AR.po b/addons/document/i18n/es_AR.po index d72f6db6a9b..303c24eaad6 100644 --- a/addons/document/i18n/es_AR.po +++ b/addons/document/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_CR.po b/addons/document/i18n/es_CR.po index 9cc95e419f1..7e81a6bd9a7 100644 --- a/addons/document/i18n/es_CR.po +++ b/addons/document/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_EC.po b/addons/document/i18n/es_EC.po index ed78d496808..5b967838c93 100644 --- a/addons/document/i18n/es_EC.po +++ b/addons/document/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_PY.po b/addons/document/i18n/es_PY.po index 5ae8a361731..b35f3c75530 100644 --- a/addons/document/i18n/es_PY.po +++ b/addons/document/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/et.po b/addons/document/i18n/et.po index 55c16d1479a..3f99af32950 100644 --- a/addons/document/i18n/et.po +++ b/addons/document/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/fi.po b/addons/document/i18n/fi.po index 5be1ab75715..f0a747ccf3c 100644 --- a/addons/document/i18n/fi.po +++ b/addons/document/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: document diff --git a/addons/document/i18n/fr.po b/addons/document/i18n/fr.po index ec6119fa0eb..0eaeec47699 100644 --- a/addons/document/i18n/fr.po +++ b/addons/document/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/gl.po b/addons/document/i18n/gl.po index ecd7640db53..5d0c882565e 100644 --- a/addons/document/i18n/gl.po +++ b/addons/document/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/gu.po b/addons/document/i18n/gu.po index 80d6f6bf1cb..9c4b639c82a 100644 --- a/addons/document/i18n/gu.po +++ b/addons/document/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hi.po b/addons/document/i18n/hi.po index d6486765a39..c0aa653154c 100644 --- a/addons/document/i18n/hi.po +++ b/addons/document/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hr.po b/addons/document/i18n/hr.po index cace69f11ea..f66a3834581 100644 --- a/addons/document/i18n/hr.po +++ b/addons/document/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hu.po b/addons/document/i18n/hu.po index 85fab0594b8..12670466211 100644 --- a/addons/document/i18n/hu.po +++ b/addons/document/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/id.po b/addons/document/i18n/id.po index 4d09a30b5f1..b21a70b838f 100644 --- a/addons/document/i18n/id.po +++ b/addons/document/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/it.po b/addons/document/i18n/it.po index 65d38e5e2b8..b8e42149b1a 100644 --- a/addons/document/i18n/it.po +++ b/addons/document/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ja.po b/addons/document/i18n/ja.po index d85f3317cc1..6010b3d71c8 100644 --- a/addons/document/i18n/ja.po +++ b/addons/document/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-04 06:02+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ko.po b/addons/document/i18n/ko.po index 465591654ba..21409024fc9 100644 --- a/addons/document/i18n/ko.po +++ b/addons/document/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/lt.po b/addons/document/i18n/lt.po index 178ae7c7980..a8a5da8d03c 100644 --- a/addons/document/i18n/lt.po +++ b/addons/document/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/lv.po b/addons/document/i18n/lv.po index d11f2833575..227e79d5129 100644 --- a/addons/document/i18n/lv.po +++ b/addons/document/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/mk.po b/addons/document/i18n/mk.po index 2df0cd19503..66cf0a173c9 100644 --- a/addons/document/i18n/mk.po +++ b/addons/document/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: document diff --git a/addons/document/i18n/mn.po b/addons/document/i18n/mn.po index cd6703a9606..7cd243554fe 100644 --- a/addons/document/i18n/mn.po +++ b/addons/document/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nb.po b/addons/document/i18n/nb.po index 2e364f59b4e..05efdf87022 100644 --- a/addons/document/i18n/nb.po +++ b/addons/document/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nl.po b/addons/document/i18n/nl.po index 6ec651b62a6..f72852b5f30 100644 --- a/addons/document/i18n/nl.po +++ b/addons/document/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-30 16:48+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-31 06:09+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nl_BE.po b/addons/document/i18n/nl_BE.po index a536adf1501..0ece1232bd4 100644 --- a/addons/document/i18n/nl_BE.po +++ b/addons/document/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pl.po b/addons/document/i18n/pl.po index 4eead7fca94..3d23aec01fa 100644 --- a/addons/document/i18n/pl.po +++ b/addons/document/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-15 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: document diff --git a/addons/document/i18n/pt.po b/addons/document/i18n/pt.po index 7a4bb0c7741..00eee046eaf 100644 --- a/addons/document/i18n/pt.po +++ b/addons/document/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pt_BR.po b/addons/document/i18n/pt_BR.po index 519697c6ed9..720db77bbe2 100644 --- a/addons/document/i18n/pt_BR.po +++ b/addons/document/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ro.po b/addons/document/i18n/ro.po index 92dd933e377..f757721e287 100644 --- a/addons/document/i18n/ro.po +++ b/addons/document/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-23 20:38+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ru.po b/addons/document/i18n/ru.po index 4e949b26703..aa95e9b8f69 100644 --- a/addons/document/i18n/ru.po +++ b/addons/document/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sk.po b/addons/document/i18n/sk.po index ad5f31231d8..d0f3b79a9b2 100644 --- a/addons/document/i18n/sk.po +++ b/addons/document/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sl.po b/addons/document/i18n/sl.po index 207b6ed2eab..65b0edca8c9 100644 --- a/addons/document/i18n/sl.po +++ b/addons/document/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sq.po b/addons/document/i18n/sq.po index bd939731040..fca9231addf 100644 --- a/addons/document/i18n/sq.po +++ b/addons/document/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:56+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sr.po b/addons/document/i18n/sr.po index ec3ea70b89a..b0ec0719836 100644 --- a/addons/document/i18n/sr.po +++ b/addons/document/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sr@latin.po b/addons/document/i18n/sr@latin.po index ba13503a365..d64e268a287 100644 --- a/addons/document/i18n/sr@latin.po +++ b/addons/document/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sv.po b/addons/document/i18n/sv.po index 1a79f6aff28..5bb98ab85fc 100644 --- a/addons/document/i18n/sv.po +++ b/addons/document/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/tlh.po b/addons/document/i18n/tlh.po index 42d357fa2fa..3061c1d186d 100644 --- a/addons/document/i18n/tlh.po +++ b/addons/document/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/tr.po b/addons/document/i18n/tr.po index 5ce95f50ccb..d3336dcf73c 100644 --- a/addons/document/i18n/tr.po +++ b/addons/document/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/uk.po b/addons/document/i18n/uk.po index 440f2fe731e..ad58722c736 100644 --- a/addons/document/i18n/uk.po +++ b/addons/document/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/vi.po b/addons/document/i18n/vi.po index a5c8f04c98b..8453ee0963b 100644 --- a/addons/document/i18n/vi.po +++ b/addons/document/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_CN.po b/addons/document/i18n/zh_CN.po index 6b376c71d75..4efeb07c7b5 100644 --- a/addons/document/i18n/zh_CN.po +++ b/addons/document/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-14 02:05+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_HK.po b/addons/document/i18n/zh_HK.po index c5a428dee7f..d5c1e07bb98 100644 --- a/addons/document/i18n/zh_HK.po +++ b/addons/document/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_TW.po b/addons/document/i18n/zh_TW.po index 7c7b3a7f288..31266bdb71c 100644 --- a/addons/document/i18n/zh_TW.po +++ b/addons/document/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document_ftp/i18n/ar.po b/addons/document_ftp/i18n/ar.po index 91507bf679c..3f093214206 100644 --- a/addons/document_ftp/i18n/ar.po +++ b/addons/document_ftp/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/bg.po b/addons/document_ftp/i18n/bg.po index f8c2b3b5b76..3596c259765 100644 --- a/addons/document_ftp/i18n/bg.po +++ b/addons/document_ftp/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ca.po b/addons/document_ftp/i18n/ca.po index 292a15e1b8a..7e6e202c3f7 100644 --- a/addons/document_ftp/i18n/ca.po +++ b/addons/document_ftp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/cs.po b/addons/document_ftp/i18n/cs.po index cb5e35f4716..1af83c603d5 100644 --- a/addons/document_ftp/i18n/cs.po +++ b/addons/document_ftp/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/da.po b/addons/document_ftp/i18n/da.po index 3c63043dd62..53ee5596844 100644 --- a/addons/document_ftp/i18n/da.po +++ b/addons/document_ftp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/de.po b/addons/document_ftp/i18n/de.po index afceb837471..723bb844098 100644 --- a/addons/document_ftp/i18n/de.po +++ b/addons/document_ftp/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/el.po b/addons/document_ftp/i18n/el.po index 515e6409840..5f684b7f836 100644 --- a/addons/document_ftp/i18n/el.po +++ b/addons/document_ftp/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/en_GB.po b/addons/document_ftp/i18n/en_GB.po index e58999d10be..2460f119824 100644 --- a/addons/document_ftp/i18n/en_GB.po +++ b/addons/document_ftp/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es.po b/addons/document_ftp/i18n/es.po index da9260cb772..0ae47486e9d 100644 --- a/addons/document_ftp/i18n/es.po +++ b/addons/document_ftp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es_CR.po b/addons/document_ftp/i18n/es_CR.po index 480f2a65d2a..f524eccb364 100644 --- a/addons/document_ftp/i18n/es_CR.po +++ b/addons/document_ftp/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es_EC.po b/addons/document_ftp/i18n/es_EC.po index 6335b33fc4b..929a63c78a2 100644 --- a/addons/document_ftp/i18n/es_EC.po +++ b/addons/document_ftp/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es_PY.po b/addons/document_ftp/i18n/es_PY.po index defb04e2c78..1ee94005750 100644 --- a/addons/document_ftp/i18n/es_PY.po +++ b/addons/document_ftp/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/et.po b/addons/document_ftp/i18n/et.po index 6e39153779b..a0d22c5cc4a 100644 --- a/addons/document_ftp/i18n/et.po +++ b/addons/document_ftp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/fi.po b/addons/document_ftp/i18n/fi.po index 36157640702..2a1684c25d7 100644 --- a/addons/document_ftp/i18n/fi.po +++ b/addons/document_ftp/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/fr.po b/addons/document_ftp/i18n/fr.po index 8f6a108fdca..655e01ce24d 100644 --- a/addons/document_ftp/i18n/fr.po +++ b/addons/document_ftp/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/gl.po b/addons/document_ftp/i18n/gl.po index 0409b1a51b9..d27e5656e27 100644 --- a/addons/document_ftp/i18n/gl.po +++ b/addons/document_ftp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/hr.po b/addons/document_ftp/i18n/hr.po index 6153f99a180..6bab7ef49c0 100644 --- a/addons/document_ftp/i18n/hr.po +++ b/addons/document_ftp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/hu.po b/addons/document_ftp/i18n/hu.po index 45d919ad0c6..9262c452c6d 100644 --- a/addons/document_ftp/i18n/hu.po +++ b/addons/document_ftp/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/it.po b/addons/document_ftp/i18n/it.po index b36ff4138db..72df7ccc925 100644 --- a/addons/document_ftp/i18n/it.po +++ b/addons/document_ftp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ja.po b/addons/document_ftp/i18n/ja.po index cdaa1bd3820..8e5e6335e3a 100644 --- a/addons/document_ftp/i18n/ja.po +++ b/addons/document_ftp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/mk.po b/addons/document_ftp/i18n/mk.po index 6b3ac8e68f6..25251bc8371 100644 --- a/addons/document_ftp/i18n/mk.po +++ b/addons/document_ftp/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/mn.po b/addons/document_ftp/i18n/mn.po index b73bd2a08d1..d74026b04c0 100644 --- a/addons/document_ftp/i18n/mn.po +++ b/addons/document_ftp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/nb.po b/addons/document_ftp/i18n/nb.po index 53b3730653a..0e8eec6ec30 100644 --- a/addons/document_ftp/i18n/nb.po +++ b/addons/document_ftp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/nl.po b/addons/document_ftp/i18n/nl.po index 4381f35962b..00ab719ea48 100644 --- a/addons/document_ftp/i18n/nl.po +++ b/addons/document_ftp/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/pl.po b/addons/document_ftp/i18n/pl.po index f72fd7f1e93..03b319a0394 100644 --- a/addons/document_ftp/i18n/pl.po +++ b/addons/document_ftp/i18n/pl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-14 14:52+0000\n" +"PO-Revision-Date: 2013-11-20 18:01+0000\n" "Last-Translator: Mirosław Bojanowicz \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-15 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: document_ftp @@ -44,7 +44,7 @@ msgstr "" #. module: document_ftp #: model:ir.model,name:document_ftp.model_knowledge_config_settings msgid "knowledge.config.settings" -msgstr "" +msgstr "knowledge.config.settings" #. module: document_ftp #: model:ir.actions.act_url,name:document_ftp.action_document_browse diff --git a/addons/document_ftp/i18n/pt.po b/addons/document_ftp/i18n/pt.po index 91215c463d4..13a8a060aad 100644 --- a/addons/document_ftp/i18n/pt.po +++ b/addons/document_ftp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/pt_BR.po b/addons/document_ftp/i18n/pt_BR.po index 5eecd183245..0298141f16a 100644 --- a/addons/document_ftp/i18n/pt_BR.po +++ b/addons/document_ftp/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ro.po b/addons/document_ftp/i18n/ro.po index 93af6352fab..97a1f7f92a6 100644 --- a/addons/document_ftp/i18n/ro.po +++ b/addons/document_ftp/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-23 20:42+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ru.po b/addons/document_ftp/i18n/ru.po index 26a7920c79b..ce93a7c1cba 100644 --- a/addons/document_ftp/i18n/ru.po +++ b/addons/document_ftp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sk.po b/addons/document_ftp/i18n/sk.po index 811ff3badd6..6567b51c100 100644 --- a/addons/document_ftp/i18n/sk.po +++ b/addons/document_ftp/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sl.po b/addons/document_ftp/i18n/sl.po index ece697dbc50..622c5754506 100644 --- a/addons/document_ftp/i18n/sl.po +++ b/addons/document_ftp/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sr.po b/addons/document_ftp/i18n/sr.po index 76df1acb79e..2af0fc6cf1d 100644 --- a/addons/document_ftp/i18n/sr.po +++ b/addons/document_ftp/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sr@latin.po b/addons/document_ftp/i18n/sr@latin.po index 97c8c3ca189..08f95389d86 100644 --- a/addons/document_ftp/i18n/sr@latin.po +++ b/addons/document_ftp/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sv.po b/addons/document_ftp/i18n/sv.po index ec8ea8cdf45..4fb04446c30 100644 --- a/addons/document_ftp/i18n/sv.po +++ b/addons/document_ftp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/tr.po b/addons/document_ftp/i18n/tr.po index ec17a55ae44..ff71f253870 100644 --- a/addons/document_ftp/i18n/tr.po +++ b/addons/document_ftp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/vi.po b/addons/document_ftp/i18n/vi.po index 923f3609696..66585e99398 100644 --- a/addons/document_ftp/i18n/vi.po +++ b/addons/document_ftp/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/zh_CN.po b/addons/document_ftp/i18n/zh_CN.po index 156bd2ac1c9..6a5b2fa118c 100644 --- a/addons/document_ftp/i18n/zh_CN.po +++ b/addons/document_ftp/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-19 16:04+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-20 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/zh_TW.po b/addons/document_ftp/i18n/zh_TW.po index c8dddfc33aa..3c7461f7add 100644 --- a/addons/document_ftp/i18n/zh_TW.po +++ b/addons/document_ftp/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_page/i18n/ar.po b/addons/document_page/i18n/ar.po index 7abe4a74d07..10d60f6b606 100644 --- a/addons/document_page/i18n/ar.po +++ b/addons/document_page/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/bg.po b/addons/document_page/i18n/bg.po index 0644a9f2e7f..524bd9233ee 100644 --- a/addons/document_page/i18n/bg.po +++ b/addons/document_page/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/bs.po b/addons/document_page/i18n/bs.po index 2b92467ee4f..0c2cb2d9af3 100644 --- a/addons/document_page/i18n/bs.po +++ b/addons/document_page/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ca.po b/addons/document_page/i18n/ca.po index 3c48050bfd0..ff1322a6820 100644 --- a/addons/document_page/i18n/ca.po +++ b/addons/document_page/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/cs.po b/addons/document_page/i18n/cs.po index af2414a1a46..71145a88cc0 100644 --- a/addons/document_page/i18n/cs.po +++ b/addons/document_page/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/da.po b/addons/document_page/i18n/da.po index 2702a23888c..b0ff27810b6 100644 --- a/addons/document_page/i18n/da.po +++ b/addons/document_page/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/de.po b/addons/document_page/i18n/de.po index 32a5f178ab7..3ef79d75347 100644 --- a/addons/document_page/i18n/de.po +++ b/addons/document_page/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/el.po b/addons/document_page/i18n/el.po index 1d335a5c6ff..68f146f9ff7 100644 --- a/addons/document_page/i18n/el.po +++ b/addons/document_page/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/es.po b/addons/document_page/i18n/es.po index 496b38836b8..f953ef743a7 100644 --- a/addons/document_page/i18n/es.po +++ b/addons/document_page/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/et.po b/addons/document_page/i18n/et.po index 0412990d2ab..f09acea6d97 100644 --- a/addons/document_page/i18n/et.po +++ b/addons/document_page/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/fi.po b/addons/document_page/i18n/fi.po index 58caf24ef19..f947c62e20c 100644 --- a/addons/document_page/i18n/fi.po +++ b/addons/document_page/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: document_page diff --git a/addons/document_page/i18n/fr.po b/addons/document_page/i18n/fr.po index 11ddd4675fa..c0afb704380 100644 --- a/addons/document_page/i18n/fr.po +++ b/addons/document_page/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-23 05:52+0000\n" -"X-Generator: Launchpad (build 16737)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/gl.po b/addons/document_page/i18n/gl.po index 28c2b1edbc1..4b2ffa131a1 100644 --- a/addons/document_page/i18n/gl.po +++ b/addons/document_page/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/hr.po b/addons/document_page/i18n/hr.po index 38fc27d52de..fca31882d92 100644 --- a/addons/document_page/i18n/hr.po +++ b/addons/document_page/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/hu.po b/addons/document_page/i18n/hu.po index 3730607491f..6cf5546f822 100644 --- a/addons/document_page/i18n/hu.po +++ b/addons/document_page/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: field:document.page,display_content:0 diff --git a/addons/document_page/i18n/id.po b/addons/document_page/i18n/id.po index deed6e389ae..d582650834a 100644 --- a/addons/document_page/i18n/id.po +++ b/addons/document_page/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/it.po b/addons/document_page/i18n/it.po index 27e2946b275..242f3cf5456 100644 --- a/addons/document_page/i18n/it.po +++ b/addons/document_page/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ja.po b/addons/document_page/i18n/ja.po index cdccdf46135..71473206727 100644 --- a/addons/document_page/i18n/ja.po +++ b/addons/document_page/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ko.po b/addons/document_page/i18n/ko.po index d63eb949c98..066c7ad82fb 100644 --- a/addons/document_page/i18n/ko.po +++ b/addons/document_page/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/lt.po b/addons/document_page/i18n/lt.po index 3b016ed437c..fd02906a97f 100644 --- a/addons/document_page/i18n/lt.po +++ b/addons/document_page/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/lv.po b/addons/document_page/i18n/lv.po index 6b4ab103e3d..b9d62788673 100644 --- a/addons/document_page/i18n/lv.po +++ b/addons/document_page/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/mk.po b/addons/document_page/i18n/mk.po index 4816d7fa0e5..9fae4bede31 100644 --- a/addons/document_page/i18n/mk.po +++ b/addons/document_page/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: document_page diff --git a/addons/document_page/i18n/mn.po b/addons/document_page/i18n/mn.po index 1bd91bb2785..628746e7b60 100644 --- a/addons/document_page/i18n/mn.po +++ b/addons/document_page/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/nb.po b/addons/document_page/i18n/nb.po index 2a8263cac34..ed7a6d49e5b 100644 --- a/addons/document_page/i18n/nb.po +++ b/addons/document_page/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/nl.po b/addons/document_page/i18n/nl.po index 4bb099793e8..8ed4fb017ed 100644 --- a/addons/document_page/i18n/nl.po +++ b/addons/document_page/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-08 11:21+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/pl.po b/addons/document_page/i18n/pl.po index 18d5e8536a1..29b255d01c4 100644 --- a/addons/document_page/i18n/pl.po +++ b/addons/document_page/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/pt.po b/addons/document_page/i18n/pt.po index f310a7866a3..5cb9b03c5b5 100644 --- a/addons/document_page/i18n/pt.po +++ b/addons/document_page/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/pt_BR.po b/addons/document_page/i18n/pt_BR.po index 829a57c73bb..a4482b7f759 100644 --- a/addons/document_page/i18n/pt_BR.po +++ b/addons/document_page/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 19:55+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ro.po b/addons/document_page/i18n/ro.po index 0d728da5c52..b52ea7ca98e 100644 --- a/addons/document_page/i18n/ro.po +++ b/addons/document_page/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 18:49+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ru.po b/addons/document_page/i18n/ru.po index 0b5aae1f846..4a6eb9c0bdd 100644 --- a/addons/document_page/i18n/ru.po +++ b/addons/document_page/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-17 07:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sk.po b/addons/document_page/i18n/sk.po index de1c98afa27..2e315fa444a 100644 --- a/addons/document_page/i18n/sk.po +++ b/addons/document_page/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sl.po b/addons/document_page/i18n/sl.po index 849991e5421..bbf26aba606 100644 --- a/addons/document_page/i18n/sl.po +++ b/addons/document_page/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sq.po b/addons/document_page/i18n/sq.po index cc95bd795e2..cce84e713c1 100644 --- a/addons/document_page/i18n/sq.po +++ b/addons/document_page/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sr.po b/addons/document_page/i18n/sr.po index fbcbadbc43c..c5c3ca12342 100644 --- a/addons/document_page/i18n/sr.po +++ b/addons/document_page/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sr@latin.po b/addons/document_page/i18n/sr@latin.po index 390101d7e04..2e1a810e42b 100644 --- a/addons/document_page/i18n/sr@latin.po +++ b/addons/document_page/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sv.po b/addons/document_page/i18n/sv.po index 3c6e09e88b2..9afe539e62e 100644 --- a/addons/document_page/i18n/sv.po +++ b/addons/document_page/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/tlh.po b/addons/document_page/i18n/tlh.po index 7038d1216c8..0477d98ebc2 100644 --- a/addons/document_page/i18n/tlh.po +++ b/addons/document_page/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/tr.po b/addons/document_page/i18n/tr.po index f3c0816b0f3..7c3d7a845b1 100644 --- a/addons/document_page/i18n/tr.po +++ b/addons/document_page/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/uk.po b/addons/document_page/i18n/uk.po index 22bea839007..fbbb6d44dba 100644 --- a/addons/document_page/i18n/uk.po +++ b/addons/document_page/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/vi.po b/addons/document_page/i18n/vi.po index d573b3dfecb..10e1f891ea3 100644 --- a/addons/document_page/i18n/vi.po +++ b/addons/document_page/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/zh_CN.po b/addons/document_page/i18n/zh_CN.po index 4400903b213..2b760c85877 100644 --- a/addons/document_page/i18n/zh_CN.po +++ b/addons/document_page/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/zh_TW.po b/addons/document_page/i18n/zh_TW.po index 74121813260..c687009467f 100644 --- a/addons/document_page/i18n/zh_TW.po +++ b/addons/document_page/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_webdav/i18n/ar.po b/addons/document_webdav/i18n/ar.po index 6cac64c699c..fb52ac999a2 100644 --- a/addons/document_webdav/i18n/ar.po +++ b/addons/document_webdav/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/bg.po b/addons/document_webdav/i18n/bg.po index ee31828c7b5..d8adffae36c 100644 --- a/addons/document_webdav/i18n/bg.po +++ b/addons/document_webdav/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ca.po b/addons/document_webdav/i18n/ca.po index b7a28813732..2d23a903db0 100644 --- a/addons/document_webdav/i18n/ca.po +++ b/addons/document_webdav/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/cs.po b/addons/document_webdav/i18n/cs.po index 0f02294a6ab..275330134cd 100644 --- a/addons/document_webdav/i18n/cs.po +++ b/addons/document_webdav/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/da.po b/addons/document_webdav/i18n/da.po index 5be5f6d82a6..695f4d7e150 100644 --- a/addons/document_webdav/i18n/da.po +++ b/addons/document_webdav/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/de.po b/addons/document_webdav/i18n/de.po index fb4ff10e15b..f35f3732213 100644 --- a/addons/document_webdav/i18n/de.po +++ b/addons/document_webdav/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/el.po b/addons/document_webdav/i18n/el.po index f6d2e1bae14..52f7ce969a1 100644 --- a/addons/document_webdav/i18n/el.po +++ b/addons/document_webdav/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/en_GB.po b/addons/document_webdav/i18n/en_GB.po index 51218e8b449..a83c3447c2d 100644 --- a/addons/document_webdav/i18n/en_GB.po +++ b/addons/document_webdav/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es.po b/addons/document_webdav/i18n/es.po index 770a841f079..fed8f07991d 100644 --- a/addons/document_webdav/i18n/es.po +++ b/addons/document_webdav/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es_CR.po b/addons/document_webdav/i18n/es_CR.po index 3409775fb58..b7a947335a9 100644 --- a/addons/document_webdav/i18n/es_CR.po +++ b/addons/document_webdav/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es_EC.po b/addons/document_webdav/i18n/es_EC.po index 033ef8f95cb..14acdb11a50 100644 --- a/addons/document_webdav/i18n/es_EC.po +++ b/addons/document_webdav/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es_PY.po b/addons/document_webdav/i18n/es_PY.po index 01ced107edc..72f4baf4c22 100644 --- a/addons/document_webdav/i18n/es_PY.po +++ b/addons/document_webdav/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/et.po b/addons/document_webdav/i18n/et.po index c5feebacbdf..03f53be6493 100644 --- a/addons/document_webdav/i18n/et.po +++ b/addons/document_webdav/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/eu.po b/addons/document_webdav/i18n/eu.po index d55a07edc8f..5596f37e0b2 100644 --- a/addons/document_webdav/i18n/eu.po +++ b/addons/document_webdav/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/fi.po b/addons/document_webdav/i18n/fi.po index 00405284bfa..aafad41f2ed 100644 --- a/addons/document_webdav/i18n/fi.po +++ b/addons/document_webdav/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/fr.po b/addons/document_webdav/i18n/fr.po index cd440ce7088..c5a89a53e17 100644 --- a/addons/document_webdav/i18n/fr.po +++ b/addons/document_webdav/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/gl.po b/addons/document_webdav/i18n/gl.po index 1469e0aad13..55fe926d616 100644 --- a/addons/document_webdav/i18n/gl.po +++ b/addons/document_webdav/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/gu.po b/addons/document_webdav/i18n/gu.po index 386fe8df8f6..167659b62fb 100644 --- a/addons/document_webdav/i18n/gu.po +++ b/addons/document_webdav/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/hr.po b/addons/document_webdav/i18n/hr.po index 89ba0bffa3d..5d7ba3075ee 100644 --- a/addons/document_webdav/i18n/hr.po +++ b/addons/document_webdav/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/hu.po b/addons/document_webdav/i18n/hu.po index 9af41de3ef1..74223ea57b1 100644 --- a/addons/document_webdav/i18n/hu.po +++ b/addons/document_webdav/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/id.po b/addons/document_webdav/i18n/id.po index a29530e5797..d018de44551 100644 --- a/addons/document_webdav/i18n/id.po +++ b/addons/document_webdav/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/it.po b/addons/document_webdav/i18n/it.po index 56475e00a93..68809eb4c72 100644 --- a/addons/document_webdav/i18n/it.po +++ b/addons/document_webdav/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ja.po b/addons/document_webdav/i18n/ja.po index 5e95a0a5f5e..f558078eab9 100644 --- a/addons/document_webdav/i18n/ja.po +++ b/addons/document_webdav/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/mk.po b/addons/document_webdav/i18n/mk.po index a9aa3bc0d2f..7a848c1503c 100644 --- a/addons/document_webdav/i18n/mk.po +++ b/addons/document_webdav/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/mn.po b/addons/document_webdav/i18n/mn.po index e9e8bf884e0..d260f7c8f1c 100644 --- a/addons/document_webdav/i18n/mn.po +++ b/addons/document_webdav/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/nb.po b/addons/document_webdav/i18n/nb.po index 64fba342e35..33aebbea683 100644 --- a/addons/document_webdav/i18n/nb.po +++ b/addons/document_webdav/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/nl.po b/addons/document_webdav/i18n/nl.po index e7a9704a41c..11492f8b435 100644 --- a/addons/document_webdav/i18n/nl.po +++ b/addons/document_webdav/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-20 12:16+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pl.po b/addons/document_webdav/i18n/pl.po index afd6a71e4d4..2360ad47056 100644 --- a/addons/document_webdav/i18n/pl.po +++ b/addons/document_webdav/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pt.po b/addons/document_webdav/i18n/pt.po index 254ffe9920c..2601cc57702 100644 --- a/addons/document_webdav/i18n/pt.po +++ b/addons/document_webdav/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pt_BR.po b/addons/document_webdav/i18n/pt_BR.po index 7af280aa00f..aef11511c2c 100644 --- a/addons/document_webdav/i18n/pt_BR.po +++ b/addons/document_webdav/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ro.po b/addons/document_webdav/i18n/ro.po index b24307c282b..3cdf3cd5750 100644 --- a/addons/document_webdav/i18n/ro.po +++ b/addons/document_webdav/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-23 21:01+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ru.po b/addons/document_webdav/i18n/ru.po index 753bcdfd761..8bab8356c89 100644 --- a/addons/document_webdav/i18n/ru.po +++ b/addons/document_webdav/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sl.po b/addons/document_webdav/i18n/sl.po index 57f3bfde52e..890657731c2 100644 --- a/addons/document_webdav/i18n/sl.po +++ b/addons/document_webdav/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sr.po b/addons/document_webdav/i18n/sr.po index 1939cb274a5..f97a44426d6 100644 --- a/addons/document_webdav/i18n/sr.po +++ b/addons/document_webdav/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sr@latin.po b/addons/document_webdav/i18n/sr@latin.po index 4b77c8b2903..b7cde04b248 100644 --- a/addons/document_webdav/i18n/sr@latin.po +++ b/addons/document_webdav/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sv.po b/addons/document_webdav/i18n/sv.po index 7d53ae17e1f..cd23b91aa7c 100644 --- a/addons/document_webdav/i18n/sv.po +++ b/addons/document_webdav/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/tr.po b/addons/document_webdav/i18n/tr.po index ae6536f4f62..c387fb8b469 100644 --- a/addons/document_webdav/i18n/tr.po +++ b/addons/document_webdav/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/zh_CN.po b/addons/document_webdav/i18n/zh_CN.po index f97efd43c4c..618808bd51b 100644 --- a/addons/document_webdav/i18n/zh_CN.po +++ b/addons/document_webdav/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/zh_TW.po b/addons/document_webdav/i18n/zh_TW.po index c36a9ed9ab7..09a79b7f471 100644 --- a/addons/document_webdav/i18n/zh_TW.po +++ b/addons/document_webdav/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/edi/i18n/ar.po b/addons/edi/i18n/ar.po index dbe9a0280dd..7571207183a 100644 --- a/addons/edi/i18n/ar.po +++ b/addons/edi/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/cs.po b/addons/edi/i18n/cs.po index efa4ec22447..b3e9d0897b7 100644 --- a/addons/edi/i18n/cs.po +++ b/addons/edi/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/de.po b/addons/edi/i18n/de.po index 8e200e127b4..f55bf0adfd6 100644 --- a/addons/edi/i18n/de.po +++ b/addons/edi/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/en_GB.po b/addons/edi/i18n/en_GB.po index 267f836811d..fa284cd4833 100644 --- a/addons/edi/i18n/en_GB.po +++ b/addons/edi/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/es.po b/addons/edi/i18n/es.po index 0ec5d2804a3..d61b2e96303 100644 --- a/addons/edi/i18n/es.po +++ b/addons/edi/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/es_CR.po b/addons/edi/i18n/es_CR.po index 98be0d3867a..22288953ed5 100644 --- a/addons/edi/i18n/es_CR.po +++ b/addons/edi/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/fi.po b/addons/edi/i18n/fi.po index a97dcb0d531..c0c628668a5 100644 --- a/addons/edi/i18n/fi.po +++ b/addons/edi/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/fr.po b/addons/edi/i18n/fr.po index b70a27acff9..5c1ac789a04 100644 --- a/addons/edi/i18n/fr.po +++ b/addons/edi/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/hr.po b/addons/edi/i18n/hr.po index bcda164559c..1cb07c268af 100644 --- a/addons/edi/i18n/hr.po +++ b/addons/edi/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/hu.po b/addons/edi/i18n/hu.po index 379b390b88b..456c211ff2a 100644 --- a/addons/edi/i18n/hu.po +++ b/addons/edi/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/is.po b/addons/edi/i18n/is.po index 3a2a6fc3aa0..37535f9481c 100644 --- a/addons/edi/i18n/is.po +++ b/addons/edi/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/it.po b/addons/edi/i18n/it.po index 6323dd063e5..120ea60f665 100644 --- a/addons/edi/i18n/it.po +++ b/addons/edi/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ja.po b/addons/edi/i18n/ja.po index 2fb89d1cd52..5e40bf65ee0 100644 --- a/addons/edi/i18n/ja.po +++ b/addons/edi/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/lt.po b/addons/edi/i18n/lt.po index 03867bbd827..56aceb1f5b2 100644 --- a/addons/edi/i18n/lt.po +++ b/addons/edi/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/mk.po b/addons/edi/i18n/mk.po index 11ad24d602c..608ca43651c 100644 --- a/addons/edi/i18n/mk.po +++ b/addons/edi/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: edi diff --git a/addons/edi/i18n/ml.po b/addons/edi/i18n/ml.po index ca0d4372db6..97adff4ba08 100644 --- a/addons/edi/i18n/ml.po +++ b/addons/edi/i18n/ml.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/mn.po b/addons/edi/i18n/mn.po index bae1abc583f..cc2c9a52bf6 100644 --- a/addons/edi/i18n/mn.po +++ b/addons/edi/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nb.po b/addons/edi/i18n/nb.po index 375f4dcdc7d..6b9cb7b5cbb 100644 --- a/addons/edi/i18n/nb.po +++ b/addons/edi/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nl.po b/addons/edi/i18n/nl.po index e5a4bcaed09..628f473d8c2 100644 --- a/addons/edi/i18n/nl.po +++ b/addons/edi/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nl_BE.po b/addons/edi/i18n/nl_BE.po index d0cb0c203b7..326f850a6d4 100644 --- a/addons/edi/i18n/nl_BE.po +++ b/addons/edi/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pl.po b/addons/edi/i18n/pl.po index 7b25459a0ce..d7b11e27951 100644 --- a/addons/edi/i18n/pl.po +++ b/addons/edi/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pt.po b/addons/edi/i18n/pt.po index 6dd6cfd949b..0c4fb46bb70 100644 --- a/addons/edi/i18n/pt.po +++ b/addons/edi/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pt_BR.po b/addons/edi/i18n/pt_BR.po index 81a6d4f9eec..8bfb5165cb9 100644 --- a/addons/edi/i18n/pt_BR.po +++ b/addons/edi/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ro.po b/addons/edi/i18n/ro.po index d938bab6f36..5ea926244c2 100644 --- a/addons/edi/i18n/ro.po +++ b/addons/edi/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-23 21:08+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ru.po b/addons/edi/i18n/ru.po index 16e16ab353f..5083a9d504b 100644 --- a/addons/edi/i18n/ru.po +++ b/addons/edi/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/sl.po b/addons/edi/i18n/sl.po index 382187e1da3..28617d1fd26 100644 --- a/addons/edi/i18n/sl.po +++ b/addons/edi/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/sv.po b/addons/edi/i18n/sv.po index fac6e84dd4e..5f6982a2fbf 100644 --- a/addons/edi/i18n/sv.po +++ b/addons/edi/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/tr.po b/addons/edi/i18n/tr.po index 5fa3e9f07a7..148c43cdaa3 100644 --- a/addons/edi/i18n/tr.po +++ b/addons/edi/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/zh_CN.po b/addons/edi/i18n/zh_CN.po index 1468fe464da..315d2c306d9 100644 --- a/addons/edi/i18n/zh_CN.po +++ b/addons/edi/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/zh_TW.po b/addons/edi/i18n/zh_TW.po index 72b4c433c09..6a1616b54c7 100644 --- a/addons/edi/i18n/zh_TW.po +++ b/addons/edi/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: edi #. openerp-web diff --git a/addons/email_template/i18n/ar.po b/addons/email_template/i18n/ar.po index 4ffee7fc44f..32aa0f67491 100644 --- a/addons/email_template/i18n/ar.po +++ b/addons/email_template/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/bg.po b/addons/email_template/i18n/bg.po index d56833f36cf..41448cdeabe 100644 --- a/addons/email_template/i18n/bg.po +++ b/addons/email_template/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ca.po b/addons/email_template/i18n/ca.po index 721bd01b56d..3563749aca3 100644 --- a/addons/email_template/i18n/ca.po +++ b/addons/email_template/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/cs.po b/addons/email_template/i18n/cs.po index 6dddc7bafa0..a4af9280a65 100644 --- a/addons/email_template/i18n/cs.po +++ b/addons/email_template/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/da.po b/addons/email_template/i18n/da.po index 48d121864b4..e306b2aadf2 100644 --- a/addons/email_template/i18n/da.po +++ b/addons/email_template/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/de.po b/addons/email_template/i18n/de.po index a286ffe77d1..dbeabcbe19b 100644 --- a/addons/email_template/i18n/de.po +++ b/addons/email_template/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/en_GB.po b/addons/email_template/i18n/en_GB.po index 1c5632ae1c3..5df702912cb 100644 --- a/addons/email_template/i18n/en_GB.po +++ b/addons/email_template/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-15 06:11+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es.po b/addons/email_template/i18n/es.po index c45ada7bb90..fc03fb49046 100644 --- a/addons/email_template/i18n/es.po +++ b/addons/email_template/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es_CL.po b/addons/email_template/i18n/es_CL.po index 0e9b311fae8..80fb3b12d43 100644 --- a/addons/email_template/i18n/es_CL.po +++ b/addons/email_template/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es_CR.po b/addons/email_template/i18n/es_CR.po index 741604ce626..60026525787 100644 --- a/addons/email_template/i18n/es_CR.po +++ b/addons/email_template/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es_EC.po b/addons/email_template/i18n/es_EC.po index 005160e2560..184a546a0a7 100644 --- a/addons/email_template/i18n/es_EC.po +++ b/addons/email_template/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/et.po b/addons/email_template/i18n/et.po index de9cd0f9108..05b8d7cc994 100644 --- a/addons/email_template/i18n/et.po +++ b/addons/email_template/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/fa_AF.po b/addons/email_template/i18n/fa_AF.po index d72109ffc30..42ab01ba444 100644 --- a/addons/email_template/i18n/fa_AF.po +++ b/addons/email_template/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/fi.po b/addons/email_template/i18n/fi.po index c9a47b27645..11d05ea2ea1 100644 --- a/addons/email_template/i18n/fi.po +++ b/addons/email_template/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/fr.po b/addons/email_template/i18n/fr.po index 0a626eb843a..2611ed4f14b 100644 --- a/addons/email_template/i18n/fr.po +++ b/addons/email_template/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-23 05:52+0000\n" -"X-Generator: Launchpad (build 16737)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/hr.po b/addons/email_template/i18n/hr.po index d6996d5cfa6..6012445a592 100644 --- a/addons/email_template/i18n/hr.po +++ b/addons/email_template/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-08 06:25+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/hu.po b/addons/email_template/i18n/hu.po index aea9f3e7beb..e122f743d71 100644 --- a/addons/email_template/i18n/hu.po +++ b/addons/email_template/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/it.po b/addons/email_template/i18n/it.po index a2c284cba4b..809db0f36c2 100644 --- a/addons/email_template/i18n/it.po +++ b/addons/email_template/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ja.po b/addons/email_template/i18n/ja.po index fc0d49a99bc..ad2180fb126 100644 --- a/addons/email_template/i18n/ja.po +++ b/addons/email_template/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/lt.po b/addons/email_template/i18n/lt.po index b8d255c87ea..ddeb4b29f23 100644 --- a/addons/email_template/i18n/lt.po +++ b/addons/email_template/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/mk.po b/addons/email_template/i18n/mk.po index 7bca58f34f3..1fa8ef445d9 100644 --- a/addons/email_template/i18n/mk.po +++ b/addons/email_template/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: email_template diff --git a/addons/email_template/i18n/mn.po b/addons/email_template/i18n/mn.po index 7ca25d81a76..aa922536d43 100644 --- a/addons/email_template/i18n/mn.po +++ b/addons/email_template/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/nb.po b/addons/email_template/i18n/nb.po index 964c4bf0792..71a471aff66 100644 --- a/addons/email_template/i18n/nb.po +++ b/addons/email_template/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/nl.po b/addons/email_template/i18n/nl.po index 3a2ac982729..86473e14a10 100644 --- a/addons/email_template/i18n/nl.po +++ b/addons/email_template/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-08 11:44+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/nl_BE.po b/addons/email_template/i18n/nl_BE.po index a2dc3cdb98b..7a09a9a3102 100644 --- a/addons/email_template/i18n/nl_BE.po +++ b/addons/email_template/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/pl.po b/addons/email_template/i18n/pl.po index bb110921362..acaf2644f9a 100644 --- a/addons/email_template/i18n/pl.po +++ b/addons/email_template/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/pt.po b/addons/email_template/i18n/pt.po index 9be4629d2c1..51f502a31f4 100644 --- a/addons/email_template/i18n/pt.po +++ b/addons/email_template/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/pt_BR.po b/addons/email_template/i18n/pt_BR.po index 101907ddc4e..d448982bbeb 100644 --- a/addons/email_template/i18n/pt_BR.po +++ b/addons/email_template/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 19:50+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ro.po b/addons/email_template/i18n/ro.po index d6fae6ae036..f0db4737c57 100644 --- a/addons/email_template/i18n/ro.po +++ b/addons/email_template/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-13 18:52+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ru.po b/addons/email_template/i18n/ru.po index a2aae664d04..d3ca0fc96cd 100644 --- a/addons/email_template/i18n/ru.po +++ b/addons/email_template/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/sl.po b/addons/email_template/i18n/sl.po index a5ed19fc8b1..2ca389845ea 100644 --- a/addons/email_template/i18n/sl.po +++ b/addons/email_template/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-01-01 14:25+0000\n" -"Last-Translator: Dušan Laznik (Mentis) \n" +"PO-Revision-Date: 2013-11-20 22:01+0000\n" +"Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 @@ -28,6 +28,7 @@ msgstr "Pošiljatelj" msgid "" "Partners that did not ask not to be included in mass mailing campaigns" msgstr "" +"Partnerji, ki niso podali zahteve po vključitvi v masovne e-mail kampanje" #. module: email_template #: help:email.template,ref_ir_value:0 @@ -43,7 +44,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Email contents (in raw HTML format)" -msgstr "" +msgstr "Vsebina elektronskega sporočila (v HTML formatu)" #. module: email_template #: help:email.template,email_from:0 @@ -52,6 +53,8 @@ msgid "" "Sender address (placeholders may be used here). If not set, the default " "value will be the author's email alias if configured, or email address." msgstr "" +"Naslov pošiljatelja. Če ni določen, bo privzeta vrednost avtorjev " +"elektronski naslov." #. module: email_template #: field:email.template,mail_server_id:0 @@ -82,13 +85,13 @@ msgstr "" #: field:email.template,report_name:0 #: field:email_template.preview,report_name:0 msgid "Report Filename" -msgstr "" +msgstr "Datoteka s poročilom" #. module: email_template #: field:email.template,email_to:0 #: field:email_template.preview,email_to:0 msgid "To (Emails)" -msgstr "" +msgstr "Za (elektronski naslovi)" #. module: email_template #: view:email.template:0 @@ -104,7 +107,7 @@ msgstr "Odgovori" #. module: email_template #: view:mail.compose.message:0 msgid "Use template" -msgstr "" +msgstr "Uporabi predlogo" #. module: email_template #: field:email.template,body_html:0 @@ -130,6 +133,7 @@ msgid "" "If checked, the user's signature will be appended to the text version of the " "message" msgstr "" +"Če je označeno, bo uporabnikov podpis dodan tekstovni verziji sporočila" #. module: email_template #: view:email.template:0 @@ -139,7 +143,7 @@ msgstr "Strežnik SMTP" #. module: email_template #: view:mail.compose.message:0 msgid "Save as new template" -msgstr "" +msgstr "Shrani kot novo predlogo" #. module: email_template #: help:email.template,sub_object:0 @@ -152,7 +156,7 @@ msgstr "" #. module: email_template #: view:res.partner:0 msgid "Available for mass mailing" -msgstr "" +msgstr "Masovno pošiljanje elektronske pošte na voljo" #. module: email_template #: model:ir.model,name:email_template.model_email_template @@ -192,7 +196,7 @@ msgstr "" #. module: email_template #: field:email_template.preview,res_id:0 msgid "Sample Document" -msgstr "" +msgstr "Primer dokumenta" #. module: email_template #: help:email.template,model_object_field:0 @@ -211,12 +215,12 @@ msgstr "" #. module: email_template #: model:ir.actions.act_window,name:email_template.wizard_email_template_preview msgid "Template Preview" -msgstr "" +msgstr "Predogled predloge" #. module: email_template #: view:mail.compose.message:0 msgid "Save as a new template" -msgstr "" +msgstr "Shrani kot novo predlogo" #. module: email_template #: view:email.template:0 @@ -235,7 +239,7 @@ msgstr "" #: help:email.template,email_to:0 #: help:email_template.preview,email_to:0 msgid "Comma-separated recipient addresses (placeholders may be used here)" -msgstr "" +msgstr "Naslovi prejemnikov ločeni z vejico" #. module: email_template #: view:email.template:0 @@ -245,7 +249,7 @@ msgstr "Napredeno" #. module: email_template #: view:email_template.preview:0 msgid "Preview of" -msgstr "" +msgstr "Predogled" #. module: email_template #: view:email_template.preview:0 @@ -259,6 +263,10 @@ msgid "" "mailing and marketing campaign. Filter 'Available for Mass Mailing' allows " "users to filter the partners when performing mass mailing." msgstr "" +"Če je polje označeno, je ta kontakt zavrnil prejemanje elektronskih sporočil " +"masovnega pošiljanja in marketinških kamapnj. Filter 'Dovoljeno masovno " +"pošiljanje' omogoča uporabniku filtriranje partnerjev ob izvajanju masovnega " +"pošiljanja." #. module: email_template #: view:email.template:0 @@ -282,12 +290,12 @@ msgstr "Jezik" #. module: email_template #: model:ir.model,name:email_template.model_email_template_preview msgid "Email Template Preview" -msgstr "" +msgstr "Predogled predloge elektronskega sporočila" #. module: email_template #: view:email_template.preview:0 msgid "Email Preview" -msgstr "" +msgstr "Predogled elektronskega sporočila" #. module: email_template #: view:email.template:0 @@ -305,7 +313,7 @@ msgstr "" #: field:email.template,sub_object:0 #: field:email_template.preview,sub_object:0 msgid "Sub-model" -msgstr "" +msgstr "Podrejeni model" #. module: email_template #: help:email.template,subject:0 @@ -317,7 +325,7 @@ msgstr "" #: help:email.template,reply_to:0 #: help:email_template.preview,reply_to:0 msgid "Preferred response address (placeholders may be used here)" -msgstr "" +msgstr "Prioritetni naslov za odgovor" #. module: email_template #: field:email.template,ref_ir_value:0 @@ -329,13 +337,13 @@ msgstr "" #: field:email.template,report_template:0 #: field:email_template.preview,report_template:0 msgid "Optional report to print and attach" -msgstr "" +msgstr "Opcijsko poročilo za tiskanje ali priponko" #. module: email_template #: help:email.template,null_value:0 #: help:email_template.preview,null_value:0 msgid "Optional value to use if the target field is empty" -msgstr "" +msgstr "Opcijska vrednost, ki se uporabi, če je polje prazno" #. module: email_template #: view:email.template:0 @@ -350,7 +358,7 @@ msgstr "Čarovnik za sestavljanje e-pošte" #. module: email_template #: view:email.template:0 msgid "Add context action" -msgstr "" +msgstr "Dodaj ustrezno aktivnost" #. module: email_template #: help:email.template,model_id:0 @@ -362,13 +370,13 @@ msgstr "" #: field:email.template,email_recipients:0 #: field:email_template.preview,email_recipients:0 msgid "To (Partners)" -msgstr "" +msgstr "Za (partnerji)" #. module: email_template #: field:email.template,auto_delete:0 #: field:email_template.preview,auto_delete:0 msgid "Auto Delete" -msgstr "" +msgstr "Avtomatično brisanje" #. module: email_template #: help:email.template,copyvalue:0 @@ -387,14 +395,14 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Addressing" -msgstr "" +msgstr "Naslavljanje" #. module: email_template #: help:email.template,email_recipients:0 #: help:email_template.preview,email_recipients:0 msgid "" "Comma-separated ids of recipient partners (placeholders may be used here)" -msgstr "" +msgstr "Z vejico ločeni id-ji prejemnikov" #. module: email_template #: field:email.template,attachment_ids:0 @@ -406,13 +414,13 @@ msgstr "Priloge" #: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." -msgstr "" +msgstr "Brisanje ni bilo uspešno" #. module: email_template #: field:email.template,email_cc:0 #: field:email_template.preview,email_cc:0 msgid "Cc" -msgstr "" +msgstr "Cc" #. module: email_template #: field:email.template,model_id:0 @@ -424,18 +432,18 @@ msgstr "Velja za" #: field:email.template,sub_model_object_field:0 #: field:email_template.preview,sub_model_object_field:0 msgid "Sub-field" -msgstr "" +msgstr "Podrejeno polje" #. module: email_template #: view:email.template:0 msgid "Email Details" -msgstr "" +msgstr "Podrobnosti elektronskega sporočila" #. module: email_template #: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" -msgstr "" +msgstr "Pošlji sporočilo (%s)" #. module: email_template #: help:email.template,mail_server_id:0 @@ -444,12 +452,14 @@ msgid "" "Optional preferred server for outgoing mails. If not set, the highest " "priority one will be used." msgstr "" +"Opcijsko prioritetni server za izhodno pošto. Če ni določen, bo uporabljen " +"tisti z najvišjo prioriteto." #. module: email_template #: help:email.template,auto_delete:0 #: help:email_template.preview,auto_delete:0 msgid "Permanently delete this email after sending it, to save space" -msgstr "" +msgstr "Dokončno izbriši to sporočilo potem ko je poslano." #. module: email_template #: view:email.template:0 @@ -467,13 +477,13 @@ msgstr "" #. module: email_template #: view:res.partner:0 msgid "Suppliers" -msgstr "" +msgstr "Dobavitelji" #. module: email_template #: field:email.template,user_signature:0 #: field:email_template.preview,user_signature:0 msgid "Add Signature" -msgstr "" +msgstr "Dodaj podpis" #. module: email_template #: model:ir.model,name:email_template.model_res_partner @@ -493,12 +503,14 @@ msgid "" "You may attach files to this template, to be added to all emails created " "from this template" msgstr "" +"K predlogi lahko pripnete datoteke, da bodo dodane elektronskemu sporočilu, " +"kreiranem na osnovi te predloge" #. module: email_template #: help:email.template,body_html:0 #: help:email_template.preview,body_html:0 msgid "Rich-text/HTML version of the message (placeholders may be used here)" -msgstr "" +msgstr "Rich-text/HTML verzija sporočila" #. module: email_template #: view:email.template:0 diff --git a/addons/email_template/i18n/sr.po b/addons/email_template/i18n/sr.po index 35457b82314..bed9c6132bd 100644 --- a/addons/email_template/i18n/sr.po +++ b/addons/email_template/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/sr@latin.po b/addons/email_template/i18n/sr@latin.po index fb27c3299b7..c6f3e590e43 100644 --- a/addons/email_template/i18n/sr@latin.po +++ b/addons/email_template/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/sv.po b/addons/email_template/i18n/sv.po index 23ea81b3c61..73804617e12 100644 --- a/addons/email_template/i18n/sv.po +++ b/addons/email_template/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/tr.po b/addons/email_template/i18n/tr.po index 1e901509f1e..e90a738d3dc 100644 --- a/addons/email_template/i18n/tr.po +++ b/addons/email_template/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/zh_CN.po b/addons/email_template/i18n/zh_CN.po index 3fa8a5b3d7d..e570d2241a8 100644 --- a/addons/email_template/i18n/zh_CN.po +++ b/addons/email_template/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-08-09 09:00+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-10 05:37+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 @@ -76,7 +76,7 @@ msgstr "字段" #. module: email_template #: view:email.template:0 msgid "Remove context action" -msgstr "" +msgstr "去掉context action" #. module: email_template #: field:email.template,report_name:0 @@ -299,13 +299,13 @@ msgstr "邮件预览" #: view:email.template:0 msgid "" "Remove the contextual action to use this template on related documents" -msgstr "" +msgstr "移除上下文内容,以将模板用于相关的文档。" #. module: email_template #: field:email.template,copyvalue:0 #: field:email_template.preview,copyvalue:0 msgid "Placeholder Expression" -msgstr "" +msgstr "占位符表达式" #. module: email_template #: field:email.template,sub_object:0 @@ -351,18 +351,18 @@ msgstr "模型" #. module: email_template #: model:ir.model,name:email_template.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "邮件向导" #. module: email_template #: view:email.template:0 msgid "Add context action" -msgstr "" +msgstr "添加 context action" #. module: email_template #: help:email.template,model_id:0 #: help:email_template.preview,model_id:0 msgid "The kind of document with with this template can be used" -msgstr "" +msgstr "使用该模版的这种类型的文档都是可选的" #. module: email_template #: field:email.template,email_recipients:0 @@ -400,7 +400,7 @@ msgstr "地址" #: help:email_template.preview,email_recipients:0 msgid "" "Comma-separated ids of recipient partners (placeholders may be used here)" -msgstr "" +msgstr "客户容器(请使用逗号分隔客户ids,可以使用占位符)" #. module: email_template #: field:email.template,attachment_ids:0 diff --git a/addons/email_template/i18n/zh_TW.po b/addons/email_template/i18n/zh_TW.po index 47c3bac608e..7916f6bbeef 100644 --- a/addons/email_template/i18n/zh_TW.po +++ b/addons/email_template/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/event/i18n/ar.po b/addons/event/i18n/ar.po index 65c123972ef..5c3a5875122 100644 --- a/addons/event/i18n/ar.po +++ b/addons/event/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/bg.po b/addons/event/i18n/bg.po index 598812f4c5c..9313ead78d9 100644 --- a/addons/event/i18n/bg.po +++ b/addons/event/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/bs.po b/addons/event/i18n/bs.po index 6cb02767351..2b6d5f17fe9 100644 --- a/addons/event/i18n/bs.po +++ b/addons/event/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ca.po b/addons/event/i18n/ca.po index 473d909e8fe..46ed337d8fc 100644 --- a/addons/event/i18n/ca.po +++ b/addons/event/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/cs.po b/addons/event/i18n/cs.po index 9a26999a82c..af99626766c 100644 --- a/addons/event/i18n/cs.po +++ b/addons/event/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/da.po b/addons/event/i18n/da.po index a876fc5d59e..1874c9b12c7 100644 --- a/addons/event/i18n/da.po +++ b/addons/event/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/de.po b/addons/event/i18n/de.po index 2244065467e..9a753ff675c 100644 --- a/addons/event/i18n/de.po +++ b/addons/event/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/el.po b/addons/event/i18n/el.po index 6712af1a76a..3313830e62c 100644 --- a/addons/event/i18n/el.po +++ b/addons/event/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es.po b/addons/event/i18n/es.po index 8e61c7b3dcc..45d774b8a1c 100644 --- a/addons/event/i18n/es.po +++ b/addons/event/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es_AR.po b/addons/event/i18n/es_AR.po index d192288e424..615ff7c12a3 100644 --- a/addons/event/i18n/es_AR.po +++ b/addons/event/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es_CR.po b/addons/event/i18n/es_CR.po index 977305493ad..d2013f56a17 100644 --- a/addons/event/i18n/es_CR.po +++ b/addons/event/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es_EC.po b/addons/event/i18n/es_EC.po index a9e9c7bd027..458d0ef9a03 100644 --- a/addons/event/i18n/es_EC.po +++ b/addons/event/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/et.po b/addons/event/i18n/et.po index e3f3d0c6743..1c18a28d6e2 100644 --- a/addons/event/i18n/et.po +++ b/addons/event/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/fi.po b/addons/event/i18n/fi.po index b973d60e5f6..2afe2d0884c 100644 --- a/addons/event/i18n/fi.po +++ b/addons/event/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/fr.po b/addons/event/i18n/fr.po index 510853c526c..cc74abc38ab 100644 --- a/addons/event/i18n/fr.po +++ b/addons/event/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-27 05:02+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/gu.po b/addons/event/i18n/gu.po index c45f789d6da..ff8a6102776 100644 --- a/addons/event/i18n/gu.po +++ b/addons/event/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/hi.po b/addons/event/i18n/hi.po index 970cebd9f7a..a9349f7fe76 100644 --- a/addons/event/i18n/hi.po +++ b/addons/event/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/hr.po b/addons/event/i18n/hr.po index a5638465c7b..108b2f0c47a 100644 --- a/addons/event/i18n/hr.po +++ b/addons/event/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/hu.po b/addons/event/i18n/hu.po index dbb1a89558b..783c30d9c16 100644 --- a/addons/event/i18n/hu.po +++ b/addons/event/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/id.po b/addons/event/i18n/id.po index 9e0fa6ef840..c68a7977bd3 100644 --- a/addons/event/i18n/id.po +++ b/addons/event/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/it.po b/addons/event/i18n/it.po index 0fbf3c23ed3..f6945679353 100644 --- a/addons/event/i18n/it.po +++ b/addons/event/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ja.po b/addons/event/i18n/ja.po index dde6e00da75..7fc5c367151 100644 --- a/addons/event/i18n/ja.po +++ b/addons/event/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ko.po b/addons/event/i18n/ko.po index 61e1582f29b..c87fe5f5577 100644 --- a/addons/event/i18n/ko.po +++ b/addons/event/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/lt.po b/addons/event/i18n/lt.po index f82d77d036a..44d207715d5 100644 --- a/addons/event/i18n/lt.po +++ b/addons/event/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/mk.po b/addons/event/i18n/mk.po index 941abec0464..4b9c4e87c16 100644 --- a/addons/event/i18n/mk.po +++ b/addons/event/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: event diff --git a/addons/event/i18n/mn.po b/addons/event/i18n/mn.po index 099441694b9..8e54a3838f8 100644 --- a/addons/event/i18n/mn.po +++ b/addons/event/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/nb.po b/addons/event/i18n/nb.po index b9e9cd80eb4..c3c9000ec55 100644 --- a/addons/event/i18n/nb.po +++ b/addons/event/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/nl.po b/addons/event/i18n/nl.po index ada67514d52..b548293ca6f 100644 --- a/addons/event/i18n/nl.po +++ b/addons/event/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-19 05:27+0000\n" -"X-Generator: Launchpad (build 16807)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/nl_BE.po b/addons/event/i18n/nl_BE.po index b8a64507aad..f8cb3ac5d9c 100644 --- a/addons/event/i18n/nl_BE.po +++ b/addons/event/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/pl.po b/addons/event/i18n/pl.po index 0760276265b..3784cc7f16c 100644 --- a/addons/event/i18n/pl.po +++ b/addons/event/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: event diff --git a/addons/event/i18n/pt.po b/addons/event/i18n/pt.po index bdc4bb5ce55..755068d312c 100644 --- a/addons/event/i18n/pt.po +++ b/addons/event/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/pt_BR.po b/addons/event/i18n/pt_BR.po index 998e58695e4..89f3dc9cbb6 100644 --- a/addons/event/i18n/pt_BR.po +++ b/addons/event/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ro.po b/addons/event/i18n/ro.po index a66a7c45cfd..b60eaf07163 100644 --- a/addons/event/i18n/ro.po +++ b/addons/event/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ru.po b/addons/event/i18n/ru.po index f90cd2da655..f6698bcebcb 100644 --- a/addons/event/i18n/ru.po +++ b/addons/event/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sk.po b/addons/event/i18n/sk.po index 2f992b5c868..616d7530ff9 100644 --- a/addons/event/i18n/sk.po +++ b/addons/event/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sl.po b/addons/event/i18n/sl.po index 50f9762eabd..d01801e20f1 100644 --- a/addons/event/i18n/sl.po +++ b/addons/event/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-11-10 09:37+0000\n" +"PO-Revision-Date: 2013-11-20 22:43+0000\n" "Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 @@ -131,7 +131,7 @@ msgstr "Registracija dogodka" #. module: event #: model:ir.module.category,description:event.module_category_event_management msgid "Helps you manage your Events." -msgstr "" +msgstr "Pomaga vam upravljati vaše dogodke." #. module: event #: view:report.event.registration:0 @@ -273,7 +273,7 @@ msgstr "Povzetek (število sporočil,..)" #. module: event #: view:report.event.registration:0 msgid "Registrations in confirmed or done state" -msgstr "" +msgstr "Prijava v statusu \"Potrjeno\" ali \"Zaključeno\"" #. module: event #: code:addons/event/event.py:106 @@ -435,7 +435,7 @@ msgstr "Odgovori na e-mail" #. module: event #: view:event.registration:0 msgid "Confirmed registrations" -msgstr "" +msgstr "Prijava potrjena" #. module: event #: view:event.event:0 @@ -497,7 +497,7 @@ msgstr "Stanje dogodka" #. module: event #: field:event.registration,log_ids:0 msgid "Logs" -msgstr "" +msgstr "Dnevniki" #. module: event #: view:event.event:0 @@ -540,7 +540,7 @@ msgstr "Mesec" #. module: event #: field:event.registration,date_closed:0 msgid "Attended Date" -msgstr "" +msgstr "Datum prisotnosti" #. module: event #: view:event.event:0 @@ -857,7 +857,7 @@ msgstr "Konfiguracija E-pošte" #. module: event #: field:event.type,default_registration_min:0 msgid "Default Minimum Registration" -msgstr "" +msgstr "privzeta minimalna registracija" #. module: event #: field:event.event,address_id:0 @@ -883,7 +883,7 @@ msgstr "" #: view:event.event:0 #: view:event.registration:0 msgid "Attended the Event" -msgstr "" +msgstr "Prisostvoval dogodku" #. module: event #: constraint:event.event:0 @@ -959,7 +959,7 @@ msgstr "Odgovoren" #. module: event #: view:report.event.registration:0 msgid "Registration contact" -msgstr "" +msgstr "Prijavni kontakt" #. module: event #: view:report.event.registration:0 @@ -982,7 +982,7 @@ msgstr "Konferenca o ERP-poslovanju" #: model:ir.actions.act_window,name:event.act_event_view_registration #: model:mail.message.subtype,name:event.mt_event_registration msgid "New Registration" -msgstr "" +msgstr "Nova registracija" #. module: event #: field:event.event,note:0 @@ -1080,7 +1080,7 @@ msgstr "Izbran bo ta privzet potrditveni e-mail, ko izberete ta dogodek" #. module: event #: view:report.event.registration:0 msgid "Events which are in confirm state" -msgstr "" +msgstr "Dogodki v statusu 'Potrdi'" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sq.po b/addons/event/i18n/sq.po index ab844759df2..9749515e5d2 100644 --- a/addons/event/i18n/sq.po +++ b/addons/event/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:57+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sr.po b/addons/event/i18n/sr.po index 7893907bf87..359f46c279e 100644 --- a/addons/event/i18n/sr.po +++ b/addons/event/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sr@latin.po b/addons/event/i18n/sr@latin.po index cd89c427af7..e6d4872b62e 100644 --- a/addons/event/i18n/sr@latin.po +++ b/addons/event/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sv.po b/addons/event/i18n/sv.po index a9dc5061160..d6d04c8d328 100644 --- a/addons/event/i18n/sv.po +++ b/addons/event/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/tlh.po b/addons/event/i18n/tlh.po index ae916941b35..3b49d8f3840 100644 --- a/addons/event/i18n/tlh.po +++ b/addons/event/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/tr.po b/addons/event/i18n/tr.po index 57d49db099f..859e21e9b36 100644 --- a/addons/event/i18n/tr.po +++ b/addons/event/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/uk.po b/addons/event/i18n/uk.po index f7907684e29..8b0eeeb77a7 100644 --- a/addons/event/i18n/uk.po +++ b/addons/event/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/vi.po b/addons/event/i18n/vi.po index 9a29d1435bc..784b5ffdd8e 100644 --- a/addons/event/i18n/vi.po +++ b/addons/event/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/zh_CN.po b/addons/event/i18n/zh_CN.po index 8f6f27b93d8..10f07e57cbe 100644 --- a/addons/event/i18n/zh_CN.po +++ b/addons/event/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-08-12 05:48+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-13 06:06+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 @@ -583,6 +583,8 @@ msgid "" "status is set to 'Done'.If event is cancelled the status is set to " "'Cancelled'." msgstr "" +"一个事件创建成功后,初始状态为草稿,如果某一天该事件被确认了,其状态会相应变为确认。如果该事件结束了,状态就会显示为已结束。当该事件被取消了,状态就显示为" +"已取消。" #. module: event #: model:ir.actions.act_window,help:event.action_event_view @@ -638,7 +640,7 @@ msgstr "如果你设定了邮件模板,每个参与者将收到邮件公告确 #. module: event #: view:board.board:0 msgid "Events Filling By Status" -msgstr "" +msgstr "按照状态过滤" #. module: event #: selection:report.event.registration,event_state:0 @@ -740,6 +742,13 @@ msgid "" "

Thank you for your participation!

\n" "

Best regards

" msgstr "" +"\n" +"  : : : : : :

你好,${object.name},

\n" +" : : : : : :

你注册的活动${object.event_id.name} " +"已经被确认了,举办时间定在${object.event_id.date_begin} ~ ${object.event_id.date_end}之间.\n" +" : : : : : :详细信息,请联系我们的活动组织部门.

\n" +" : : : : : :

谢谢参与!

\n" +" : : : : : :

此致敬礼

" #. module: event #: field:event.event,message_is_follower:0 @@ -808,7 +817,7 @@ msgstr "确认登记记录" msgid "" "You have already set a registration for this event as 'Attended'. Please " "reset it to draft if you want to cancel this event." -msgstr "" +msgstr "鉴于你已经注册该事件为“参加”。如果你想取消这次活动。请首先将其状态改为草稿。" #. module: event #: view:res.partner:0 @@ -841,7 +850,7 @@ msgstr "活动类型" msgid "" "This field contains the template of the mail that will be automatically sent " "each time a registration for this event is confirmed." -msgstr "" +msgstr "活动一旦被确认,这个字段包含的模板会自动发送的邮件。" #. module: event #: view:event.event:0 @@ -1038,7 +1047,7 @@ msgstr "4月" msgid "" "It will select this default confirmation event mail value when you choose " "this event" -msgstr "" +msgstr "当你选择了这个活动,它将选择这个默认确认事件邮件价值" #. module: event #: view:report.event.registration:0 @@ -1104,6 +1113,13 @@ msgid "" "

Thank you for your participation!

\n" "

Best regards

" msgstr "" +"\n" +"  : : : : : :

你好,${object.name},

\n" +" : : : : : :

你注册的活动${object.event_id.name} " +"已经被正式记录了,一旦活动确认\n" +"你将自动接收电子邮件提供您更多的实用信息(如进度、议程…)。\n" +" : : : : : :

谢谢参与!

\n" +" : : : : : :

此致敬礼

" #. module: event #: help:event.event,reply_to:0 @@ -1113,6 +1129,7 @@ msgid "" "registrations confirmation. You can also put the email address of your mail " "gateway if you use one." msgstr "" +"在这里添写组织者的邮件地址,当活动或注册确认时,它会自动出现在在邮件的‘回复给’一栏里。如果你电子邮件地址使用的不是默认网关的话,则需要添写邮件网关。" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/zh_TW.po b/addons/event/i18n/zh_TW.po index 0b4714750a7..8a95c58e915 100644 --- a/addons/event/i18n/zh_TW.po +++ b/addons/event/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event #: view:event.event:0 diff --git a/addons/event_moodle/i18n/cs.po b/addons/event_moodle/i18n/cs.po index 6ddcca86714..04f4c98a545 100644 --- a/addons/event_moodle/i18n/cs.po +++ b/addons/event_moodle/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/de.po b/addons/event_moodle/i18n/de.po index 6cddf14e8ba..d73a450b083 100644 --- a/addons/event_moodle/i18n/de.po +++ b/addons/event_moodle/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/es.po b/addons/event_moodle/i18n/es.po index dc13aaf3163..c0122902ea8 100644 --- a/addons/event_moodle/i18n/es.po +++ b/addons/event_moodle/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/fr.po b/addons/event_moodle/i18n/fr.po index 5e4a49eda86..9765b9597d0 100644 --- a/addons/event_moodle/i18n/fr.po +++ b/addons/event_moodle/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/hr.po b/addons/event_moodle/i18n/hr.po index d1b60e77a9e..107afe72b87 100644 --- a/addons/event_moodle/i18n/hr.po +++ b/addons/event_moodle/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/hu.po b/addons/event_moodle/i18n/hu.po index 0edf7f11cc6..2d2a1ba1858 100644 --- a/addons/event_moodle/i18n/hu.po +++ b/addons/event_moodle/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/mk.po b/addons/event_moodle/i18n/mk.po index 79aea3d3c97..3213b0211f5 100644 --- a/addons/event_moodle/i18n/mk.po +++ b/addons/event_moodle/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: event_moodle diff --git a/addons/event_moodle/i18n/mn.po b/addons/event_moodle/i18n/mn.po index 417fa17e466..a6020edebc7 100644 --- a/addons/event_moodle/i18n/mn.po +++ b/addons/event_moodle/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/nl.po b/addons/event_moodle/i18n/nl.po index fdd72194043..822b5e12d40 100644 --- a/addons/event_moodle/i18n/nl.po +++ b/addons/event_moodle/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/pt.po b/addons/event_moodle/i18n/pt.po index 8ebc3dbefb8..9ddbac9dac0 100644 --- a/addons/event_moodle/i18n/pt.po +++ b/addons/event_moodle/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/pt_BR.po b/addons/event_moodle/i18n/pt_BR.po index 44c44c92086..cce3ac17dff 100644 --- a/addons/event_moodle/i18n/pt_BR.po +++ b/addons/event_moodle/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/ro.po b/addons/event_moodle/i18n/ro.po index 4060b8de480..a1fe9c714f7 100644 --- a/addons/event_moodle/i18n/ro.po +++ b/addons/event_moodle/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-23 21:30+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/ru.po b/addons/event_moodle/i18n/ru.po index d6482339e11..7504dd61f9c 100644 --- a/addons/event_moodle/i18n/ru.po +++ b/addons/event_moodle/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 06:30+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/sl.po b/addons/event_moodle/i18n/sl.po index dba9f42486a..b8ab5a8a4ac 100644 --- a/addons/event_moodle/i18n/sl.po +++ b/addons/event_moodle/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/tr.po b/addons/event_moodle/i18n/tr.po index 4a870706d38..10ecc4b297c 100644 --- a/addons/event_moodle/i18n/tr.po +++ b/addons/event_moodle/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/zh_CN.po b/addons/event_moodle/i18n/zh_CN.po index eb711806a24..d2b8248c3e1 100644 --- a/addons/event_moodle/i18n/zh_CN.po +++ b/addons/event_moodle/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-13 07:52+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_sale/i18n/ar.po b/addons/event_sale/i18n/ar.po index b07f9682f59..39b18ffc714 100644 --- a/addons/event_sale/i18n/ar.po +++ b/addons/event_sale/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/cs.po b/addons/event_sale/i18n/cs.po index 64b7f240614..d755cce26c9 100644 --- a/addons/event_sale/i18n/cs.po +++ b/addons/event_sale/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/da.po b/addons/event_sale/i18n/da.po index b359d79175d..a1da8dfc3e4 100644 --- a/addons/event_sale/i18n/da.po +++ b/addons/event_sale/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-13 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/de.po b/addons/event_sale/i18n/de.po index 9405afb4498..d5e3d2a027e 100644 --- a/addons/event_sale/i18n/de.po +++ b/addons/event_sale/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/es.po b/addons/event_sale/i18n/es.po index 65a1ae7d488..0c160742cb1 100644 --- a/addons/event_sale/i18n/es.po +++ b/addons/event_sale/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/fr.po b/addons/event_sale/i18n/fr.po index a5a28d524b7..bbe23f271e4 100644 --- a/addons/event_sale/i18n/fr.po +++ b/addons/event_sale/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/hr.po b/addons/event_sale/i18n/hr.po index f3985b966d6..5e38ec298f6 100644 --- a/addons/event_sale/i18n/hr.po +++ b/addons/event_sale/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/hu.po b/addons/event_sale/i18n/hu.po index 536ce66130a..ecd3cc25e99 100644 --- a/addons/event_sale/i18n/hu.po +++ b/addons/event_sale/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/it.po b/addons/event_sale/i18n/it.po index 7e1389b5f42..56973d1c633 100644 --- a/addons/event_sale/i18n/it.po +++ b/addons/event_sale/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/mk.po b/addons/event_sale/i18n/mk.po index 27f733df895..955a83d28f3 100644 --- a/addons/event_sale/i18n/mk.po +++ b/addons/event_sale/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: event_sale diff --git a/addons/event_sale/i18n/mn.po b/addons/event_sale/i18n/mn.po index 07b11766111..6c319c6f3d3 100644 --- a/addons/event_sale/i18n/mn.po +++ b/addons/event_sale/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/nl.po b/addons/event_sale/i18n/nl.po index c9f34dbdb2d..51e159e44ab 100644 --- a/addons/event_sale/i18n/nl.po +++ b/addons/event_sale/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/pl.po b/addons/event_sale/i18n/pl.po index f424df52d29..75a939d72f3 100644 --- a/addons/event_sale/i18n/pl.po +++ b/addons/event_sale/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/pt.po b/addons/event_sale/i18n/pt.po index 6bb418540b2..8040587944b 100644 --- a/addons/event_sale/i18n/pt.po +++ b/addons/event_sale/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/pt_BR.po b/addons/event_sale/i18n/pt_BR.po index c244e1f2bd2..ad8cf15e566 100644 --- a/addons/event_sale/i18n/pt_BR.po +++ b/addons/event_sale/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/ro.po b/addons/event_sale/i18n/ro.po index ad81cde2529..7abc5709a45 100644 --- a/addons/event_sale/i18n/ro.po +++ b/addons/event_sale/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-23 21:35+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/sl.po b/addons/event_sale/i18n/sl.po index cc4539c33e4..0124d394d6f 100644 --- a/addons/event_sale/i18n/sl.po +++ b/addons/event_sale/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/tr.po b/addons/event_sale/i18n/tr.po index 81ac3cf1329..c2070e58597 100644 --- a/addons/event_sale/i18n/tr.po +++ b/addons/event_sale/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/zh_CN.po b/addons/event_sale/i18n/zh_CN.po index 0651f61263d..326b520e14a 100644 --- a/addons/event_sale/i18n/zh_CN.po +++ b/addons/event_sale/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-11 07:22+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-12 06:34+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/fetchmail/i18n/ar.po b/addons/fetchmail/i18n/ar.po index 4b0c55ebd53..24db798555f 100644 --- a/addons/fetchmail/i18n/ar.po +++ b/addons/fetchmail/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/bg.po b/addons/fetchmail/i18n/bg.po index f329845862d..10d2e1faa23 100644 --- a/addons/fetchmail/i18n/bg.po +++ b/addons/fetchmail/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/ca.po b/addons/fetchmail/i18n/ca.po index 4e5bd1a2399..45a2ed5fead 100644 --- a/addons/fetchmail/i18n/ca.po +++ b/addons/fetchmail/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/cs.po b/addons/fetchmail/i18n/cs.po index d40f86001de..2da7b95afd4 100644 --- a/addons/fetchmail/i18n/cs.po +++ b/addons/fetchmail/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/da.po b/addons/fetchmail/i18n/da.po index 8db78fb4ccb..95b8ab13d59 100644 --- a/addons/fetchmail/i18n/da.po +++ b/addons/fetchmail/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/de.po b/addons/fetchmail/i18n/de.po index 1c34420e369..255a3e76ce4 100644 --- a/addons/fetchmail/i18n/de.po +++ b/addons/fetchmail/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/el.po b/addons/fetchmail/i18n/el.po index 5cc6fc186c5..80b1cc88989 100644 --- a/addons/fetchmail/i18n/el.po +++ b/addons/fetchmail/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/en_GB.po b/addons/fetchmail/i18n/en_GB.po index ca42a147b25..fb346a87fee 100644 --- a/addons/fetchmail/i18n/en_GB.po +++ b/addons/fetchmail/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/es.po b/addons/fetchmail/i18n/es.po index 7674aab543d..ac22897b341 100644 --- a/addons/fetchmail/i18n/es.po +++ b/addons/fetchmail/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/es_CR.po b/addons/fetchmail/i18n/es_CR.po index ce4fb811bd9..8a8472caa92 100644 --- a/addons/fetchmail/i18n/es_CR.po +++ b/addons/fetchmail/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/et.po b/addons/fetchmail/i18n/et.po index 1c817fcc456..62bbfe70293 100644 --- a/addons/fetchmail/i18n/et.po +++ b/addons/fetchmail/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/fi.po b/addons/fetchmail/i18n/fi.po index b4c8eb46045..ac6ac201168 100644 --- a/addons/fetchmail/i18n/fi.po +++ b/addons/fetchmail/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/fr.po b/addons/fetchmail/i18n/fr.po index 9fce091ee6a..a079349290f 100644 --- a/addons/fetchmail/i18n/fr.po +++ b/addons/fetchmail/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/gl.po b/addons/fetchmail/i18n/gl.po index 7ea3f47ce43..e261c3807e2 100644 --- a/addons/fetchmail/i18n/gl.po +++ b/addons/fetchmail/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/hr.po b/addons/fetchmail/i18n/hr.po index 1b37ec81423..08c4cc8d677 100644 --- a/addons/fetchmail/i18n/hr.po +++ b/addons/fetchmail/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-21 05:59+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/hu.po b/addons/fetchmail/i18n/hu.po index 7bbb4b76000..dfaa1e0dc93 100644 --- a/addons/fetchmail/i18n/hu.po +++ b/addons/fetchmail/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/it.po b/addons/fetchmail/i18n/it.po index 12c8542922a..2c23a717d9a 100644 --- a/addons/fetchmail/i18n/it.po +++ b/addons/fetchmail/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/ja.po b/addons/fetchmail/i18n/ja.po index 1c23f760398..d2cb97d55a6 100644 --- a/addons/fetchmail/i18n/ja.po +++ b/addons/fetchmail/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/ko.po b/addons/fetchmail/i18n/ko.po index 0e0c532ff9b..3f532b47a1e 100644 --- a/addons/fetchmail/i18n/ko.po +++ b/addons/fetchmail/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/lt.po b/addons/fetchmail/i18n/lt.po index dc25daaeb66..ae5db9eb6e9 100644 --- a/addons/fetchmail/i18n/lt.po +++ b/addons/fetchmail/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/lv.po b/addons/fetchmail/i18n/lv.po index 14133a4d666..8cba6f950f0 100644 --- a/addons/fetchmail/i18n/lv.po +++ b/addons/fetchmail/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/mk.po b/addons/fetchmail/i18n/mk.po index 9fc9d3170d0..e7e9f001a21 100644 --- a/addons/fetchmail/i18n/mk.po +++ b/addons/fetchmail/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/mn.po b/addons/fetchmail/i18n/mn.po index f82f2a5eb88..7f5e31e1cfd 100644 --- a/addons/fetchmail/i18n/mn.po +++ b/addons/fetchmail/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/nb.po b/addons/fetchmail/i18n/nb.po index 03761712647..515cb695643 100644 --- a/addons/fetchmail/i18n/nb.po +++ b/addons/fetchmail/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/nl.po b/addons/fetchmail/i18n/nl.po index ea1e13d6e5e..ab60624e872 100644 --- a/addons/fetchmail/i18n/nl.po +++ b/addons/fetchmail/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-05-01 18:12+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/pl.po b/addons/fetchmail/i18n/pl.po index cab8109a925..69298ea69e8 100644 --- a/addons/fetchmail/i18n/pl.po +++ b/addons/fetchmail/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/pt.po b/addons/fetchmail/i18n/pt.po index c115f855da6..edd55112017 100644 --- a/addons/fetchmail/i18n/pt.po +++ b/addons/fetchmail/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/pt_BR.po b/addons/fetchmail/i18n/pt_BR.po index fe822d58272..57086eb0f31 100644 --- a/addons/fetchmail/i18n/pt_BR.po +++ b/addons/fetchmail/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/ro.po b/addons/fetchmail/i18n/ro.po index 40d993dce35..8ec13926af3 100644 --- a/addons/fetchmail/i18n/ro.po +++ b/addons/fetchmail/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-23 21:38+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/ru.po b/addons/fetchmail/i18n/ru.po index 08888215681..6a1b4c9980b 100644 --- a/addons/fetchmail/i18n/ru.po +++ b/addons/fetchmail/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/sl.po b/addons/fetchmail/i18n/sl.po index 047f44ecfde..52ae691cbea 100644 --- a/addons/fetchmail/i18n/sl.po +++ b/addons/fetchmail/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-01-27 21:57+0000\n" -"Last-Translator: Dušan Laznik (Mentis) \n" +"PO-Revision-Date: 2013-11-20 21:55+0000\n" +"Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -35,7 +35,7 @@ msgstr "POP" #. module: fetchmail #: help:fetchmail.server,priority:0 msgid "Defines the order of processing, lower values mean higher priority" -msgstr "" +msgstr "Določa vrstni red izvajanja, nižja vrednost pomeni višjo prioriteto" #. module: fetchmail #: help:fetchmail.server,is_ssl:0 @@ -47,7 +47,7 @@ msgstr "" #. module: fetchmail #: field:fetchmail.server,attach:0 msgid "Keep Attachments" -msgstr "" +msgstr "Obdrži priponke" #. module: fetchmail #: field:fetchmail.server,is_ssl:0 @@ -61,6 +61,9 @@ msgid "" "attached to each processed message. This will usually double the size of " "your message database." msgstr "" +"Ali se naj ohrani originalna kopja vsakega elektronskega sporočila kot " +"referenca in priponka k vsakemu procesiranemu sporočilu. To običajno podvoji " +"velikost vaše baze sporočil." #. module: fetchmail #: view:base.config.settings:0 @@ -76,7 +79,7 @@ msgstr "" #: model:ir.actions.act_window,name:fetchmail.action_email_server_tree #: model:ir.ui.menu,name:fetchmail.menu_action_fetchmail_server_tree msgid "Incoming Mail Servers" -msgstr "" +msgstr "Serverji za vhodno pošto" #. module: fetchmail #: view:fetchmail.server:0 @@ -106,7 +109,7 @@ msgstr "POP/IMAP Strežnik" #. module: fetchmail #: view:fetchmail.server:0 msgid "Reset Confirmation" -msgstr "" +msgstr "Ponastavi potrditev" #. module: fetchmail #: view:fetchmail.server:0 @@ -159,7 +162,7 @@ msgstr "Skript" #. module: fetchmail #: view:fetchmail.server:0 msgid "Incoming Mail Server" -msgstr "" +msgstr "Strežnih vhodne pošte" #. module: fetchmail #: code:addons/fetchmail/fetchmail.py:163 @@ -175,7 +178,7 @@ msgstr "Uporabniško ime" #. module: fetchmail #: help:fetchmail.server,server:0 msgid "Hostname or IP of the mail server" -msgstr "" +msgstr "Ime ali IP poštnega strežnika" #. module: fetchmail #: field:fetchmail.server,name:0 @@ -193,7 +196,7 @@ msgstr "" #. module: fetchmail #: view:fetchmail.server:0 msgid "Test & Confirm" -msgstr "" +msgstr "Preveri & potrdi" #. module: fetchmail #: field:fetchmail.server,action_id:0 @@ -214,7 +217,7 @@ msgstr "Sporočila" #. module: fetchmail #: view:fetchmail.server:0 msgid "Search Incoming Mail Servers" -msgstr "" +msgstr "Išči strežnike vhodne pošte" #. module: fetchmail #: field:fetchmail.server,active:0 @@ -236,7 +239,7 @@ msgstr "Odhajajoča sporočila" #. module: fetchmail #: field:fetchmail.server,priority:0 msgid "Server Priority" -msgstr "" +msgstr "Prioriteta strežnika" #. module: fetchmail #: selection:fetchmail.server,type:0 @@ -251,7 +254,7 @@ msgstr "IMAP" #. module: fetchmail #: view:fetchmail.server:0 msgid "Server type POP." -msgstr "" +msgstr "POP strežnik" #. module: fetchmail #: field:fetchmail.server,password:0 @@ -261,7 +264,7 @@ msgstr "Geslo" #. module: fetchmail #: view:fetchmail.server:0 msgid "Actions to Perform on Incoming Mails" -msgstr "" +msgstr "Aktivnosti, ki se naj izvedeno na vhodni pošti" #. module: fetchmail #: field:fetchmail.server,type:0 @@ -281,7 +284,7 @@ msgstr "Podatki o strežniku" #. module: fetchmail #: view:fetchmail.server:0 msgid "If SSL required." -msgstr "" +msgstr "Če je zahtevan SSL." #. module: fetchmail #: view:fetchmail.server:0 @@ -304,7 +307,7 @@ msgstr "" #. module: fetchmail #: field:fetchmail.server,object_id:0 msgid "Create a New Record" -msgstr "" +msgstr "Kreiraj nov zapis" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/sr.po b/addons/fetchmail/i18n/sr.po index e2fd90791e1..30b81dcd751 100644 --- a/addons/fetchmail/i18n/sr.po +++ b/addons/fetchmail/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/sr@latin.po b/addons/fetchmail/i18n/sr@latin.po index 3d00abd7aab..9a989c42103 100644 --- a/addons/fetchmail/i18n/sr@latin.po +++ b/addons/fetchmail/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/sv.po b/addons/fetchmail/i18n/sv.po index af0af115845..faaf391a2a7 100644 --- a/addons/fetchmail/i18n/sv.po +++ b/addons/fetchmail/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/tr.po b/addons/fetchmail/i18n/tr.po index d2cb9fd0787..ffa2c04b6bc 100644 --- a/addons/fetchmail/i18n/tr.po +++ b/addons/fetchmail/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/vi.po b/addons/fetchmail/i18n/vi.po index 42c55c5fdb0..cbf96338f82 100644 --- a/addons/fetchmail/i18n/vi.po +++ b/addons/fetchmail/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/zh_CN.po b/addons/fetchmail/i18n/zh_CN.po index 6314cb5db0d..681c03e6485 100644 --- a/addons/fetchmail/i18n/zh_CN.po +++ b/addons/fetchmail/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-23 16:08+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-24 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fleet/i18n/ar.po b/addons/fleet/i18n/ar.po index b1d52a7b451..cfe52c5d4d3 100644 --- a/addons/fleet/i18n/ar.po +++ b/addons/fleet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/bg.po b/addons/fleet/i18n/bg.po index 23018c95662..0b1fb3f1c93 100644 --- a/addons/fleet/i18n/bg.po +++ b/addons/fleet/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/cs.po b/addons/fleet/i18n/cs.po index 35881168369..e46c80fcd59 100644 --- a/addons/fleet/i18n/cs.po +++ b/addons/fleet/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/da.po b/addons/fleet/i18n/da.po index 4e2eebf9afd..aa3d9d10be0 100644 --- a/addons/fleet/i18n/da.po +++ b/addons/fleet/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-05 06:00+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/de.po b/addons/fleet/i18n/de.po index ed01133e5fc..52d776e955d 100644 --- a/addons/fleet/i18n/de.po +++ b/addons/fleet/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-09 05:48+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/es.po b/addons/fleet/i18n/es.po index bd8cc9b7048..e52b0a612cc 100644 --- a/addons/fleet/i18n/es.po +++ b/addons/fleet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/es_MX.po b/addons/fleet/i18n/es_MX.po index 5ee6071fb91..d93424814fe 100644 --- a/addons/fleet/i18n/es_MX.po +++ b/addons/fleet/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/fr.po b/addons/fleet/i18n/fr.po index e4991e30570..42f24ea3a2c 100644 --- a/addons/fleet/i18n/fr.po +++ b/addons/fleet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-29 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/hr.po b/addons/fleet/i18n/hr.po index c658bd0f0a2..03bc4a2068d 100644 --- a/addons/fleet/i18n/hr.po +++ b/addons/fleet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/hu.po b/addons/fleet/i18n/hu.po index 2a67b21463b..45371591cce 100644 --- a/addons/fleet/i18n/hu.po +++ b/addons/fleet/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/it.po b/addons/fleet/i18n/it.po index 22862473140..128cc942ab5 100644 --- a/addons/fleet/i18n/it.po +++ b/addons/fleet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/lv.po b/addons/fleet/i18n/lv.po index 86bef2aec48..f34ce311eb5 100644 --- a/addons/fleet/i18n/lv.po +++ b/addons/fleet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/mk.po b/addons/fleet/i18n/mk.po index eeb668dd70f..5c4fbfe95cd 100644 --- a/addons/fleet/i18n/mk.po +++ b/addons/fleet/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: fleet diff --git a/addons/fleet/i18n/mn.po b/addons/fleet/i18n/mn.po index 07d19162866..242b88eaee4 100644 --- a/addons/fleet/i18n/mn.po +++ b/addons/fleet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/nl.po b/addons/fleet/i18n/nl.po index 37477261b43..19dd41fdb8b 100644 --- a/addons/fleet/i18n/nl.po +++ b/addons/fleet/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-08 11:55+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/nl_BE.po b/addons/fleet/i18n/nl_BE.po index 9bfd38e0069..3725d76c9d7 100644 --- a/addons/fleet/i18n/nl_BE.po +++ b/addons/fleet/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/pl.po b/addons/fleet/i18n/pl.po index 7bb9c554469..f42d0489b31 100644 --- a/addons/fleet/i18n/pl.po +++ b/addons/fleet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-03 05:43+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/pt.po b/addons/fleet/i18n/pt.po index 0e547056abc..767e20b4a45 100644 --- a/addons/fleet/i18n/pt.po +++ b/addons/fleet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/pt_BR.po b/addons/fleet/i18n/pt_BR.po index 943514ad239..67dfaa5a775 100644 --- a/addons/fleet/i18n/pt_BR.po +++ b/addons/fleet/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 19:54+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/ro.po b/addons/fleet/i18n/ro.po index 297f665def2..e6d92b909dc 100644 --- a/addons/fleet/i18n/ro.po +++ b/addons/fleet/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/ru.po b/addons/fleet/i18n/ru.po index 633cc2f8c48..7cabfd38453 100644 --- a/addons/fleet/i18n/ru.po +++ b/addons/fleet/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:58+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/sl.po b/addons/fleet/i18n/sl.po index bdab60c2cf8..57c09c9f971 100644 --- a/addons/fleet/i18n/sl.po +++ b/addons/fleet/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-10-06 13:14+0000\n" -"Last-Translator: Matmoz \n" +"Last-Translator: Matjaž Mozetič (Matmoz) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-07 05:58+0000\n" -"X-Generator: Launchpad (build 16791)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/sv.po b/addons/fleet/i18n/sv.po index fc9f9c5b403..14c66351e82 100644 --- a/addons/fleet/i18n/sv.po +++ b/addons/fleet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/tr.po b/addons/fleet/i18n/tr.po index a8220450f2c..610c8670f0c 100644 --- a/addons/fleet/i18n/tr.po +++ b/addons/fleet/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/zh_CN.po b/addons/fleet/i18n/zh_CN.po index ba01b0a64c9..8ff53b5f8ce 100644 --- a/addons/fleet/i18n/zh_CN.po +++ b/addons/fleet/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-13 06:55+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/google_base_account/i18n/ar.po b/addons/google_base_account/i18n/ar.po index e5735fec385..5727209db57 100644 --- a/addons/google_base_account/i18n/ar.po +++ b/addons/google_base_account/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/cs.po b/addons/google_base_account/i18n/cs.po index 5db62816d4d..35f6e4ad839 100644 --- a/addons/google_base_account/i18n/cs.po +++ b/addons/google_base_account/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/de.po b/addons/google_base_account/i18n/de.po index 82e49737c38..0f3e16ea378 100644 --- a/addons/google_base_account/i18n/de.po +++ b/addons/google_base_account/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/es.po b/addons/google_base_account/i18n/es.po index 47c89b9d83d..0423c381a04 100644 --- a/addons/google_base_account/i18n/es.po +++ b/addons/google_base_account/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/es_CR.po b/addons/google_base_account/i18n/es_CR.po index 15a595c4eb5..813cfb4bdbc 100644 --- a/addons/google_base_account/i18n/es_CR.po +++ b/addons/google_base_account/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/fi.po b/addons/google_base_account/i18n/fi.po index e6d7fff21ec..4bc45a451c9 100644 --- a/addons/google_base_account/i18n/fi.po +++ b/addons/google_base_account/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/fr.po b/addons/google_base_account/i18n/fr.po index 8008c8629b9..41c2ec97309 100644 --- a/addons/google_base_account/i18n/fr.po +++ b/addons/google_base_account/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-27 05:02+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/hr.po b/addons/google_base_account/i18n/hr.po index fee2d389b8a..d740d32a03a 100644 --- a/addons/google_base_account/i18n/hr.po +++ b/addons/google_base_account/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/hu.po b/addons/google_base_account/i18n/hu.po index 8875e5e1722..fb7fbe1291d 100644 --- a/addons/google_base_account/i18n/hu.po +++ b/addons/google_base_account/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/it.po b/addons/google_base_account/i18n/it.po index 52bb16764b7..b4557b1de17 100644 --- a/addons/google_base_account/i18n/it.po +++ b/addons/google_base_account/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/ja.po b/addons/google_base_account/i18n/ja.po index 3cfcb0018f5..a4b2c1cd268 100644 --- a/addons/google_base_account/i18n/ja.po +++ b/addons/google_base_account/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/mk.po b/addons/google_base_account/i18n/mk.po index e2f0029abe5..49b4ee0f6a5 100644 --- a/addons/google_base_account/i18n/mk.po +++ b/addons/google_base_account/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/mn.po b/addons/google_base_account/i18n/mn.po index d4354086147..a9d1ffe286b 100644 --- a/addons/google_base_account/i18n/mn.po +++ b/addons/google_base_account/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/nb.po b/addons/google_base_account/i18n/nb.po index 1b9c3ebd546..db0ef919445 100644 --- a/addons/google_base_account/i18n/nb.po +++ b/addons/google_base_account/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/nl.po b/addons/google_base_account/i18n/nl.po index 452b6737ae2..eaff5a4dc6a 100644 --- a/addons/google_base_account/i18n/nl.po +++ b/addons/google_base_account/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-08 20:07+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/pl.po b/addons/google_base_account/i18n/pl.po index ae482a587f0..8c5e688d32c 100644 --- a/addons/google_base_account/i18n/pl.po +++ b/addons/google_base_account/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/pt.po b/addons/google_base_account/i18n/pt.po index 47ef6b9a23f..0abf29935be 100644 --- a/addons/google_base_account/i18n/pt.po +++ b/addons/google_base_account/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/pt_BR.po b/addons/google_base_account/i18n/pt_BR.po index 0949e919bf3..443a1fd591d 100644 --- a/addons/google_base_account/i18n/pt_BR.po +++ b/addons/google_base_account/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/ro.po b/addons/google_base_account/i18n/ro.po index 73ef84ca4f7..10e34f24418 100644 --- a/addons/google_base_account/i18n/ro.po +++ b/addons/google_base_account/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 18:53+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/ru.po b/addons/google_base_account/i18n/ru.po index d758bd2427c..b7ebda99466 100644 --- a/addons/google_base_account/i18n/ru.po +++ b/addons/google_base_account/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/sl.po b/addons/google_base_account/i18n/sl.po index 52a890f9971..8910970f9ba 100644 --- a/addons/google_base_account/i18n/sl.po +++ b/addons/google_base_account/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/sr@latin.po b/addons/google_base_account/i18n/sr@latin.po index 5fcd756113c..d7497c6edb1 100644 --- a/addons/google_base_account/i18n/sr@latin.po +++ b/addons/google_base_account/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/sv.po b/addons/google_base_account/i18n/sv.po index 6836cdd1231..3027e546f0c 100644 --- a/addons/google_base_account/i18n/sv.po +++ b/addons/google_base_account/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/tr.po b/addons/google_base_account/i18n/tr.po index 8be5aede6a6..8874f1e8296 100644 --- a/addons/google_base_account/i18n/tr.po +++ b/addons/google_base_account/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/zh_CN.po b/addons/google_base_account/i18n/zh_CN.po index b9af9f4b5c6..7afd7c48f05 100644 --- a/addons/google_base_account/i18n/zh_CN.po +++ b/addons/google_base_account/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-03 15:48+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_docs/i18n/ar.po b/addons/google_docs/i18n/ar.po index 4f14501fd3b..2b608fbcbb6 100644 --- a/addons/google_docs/i18n/ar.po +++ b/addons/google_docs/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/cs.po b/addons/google_docs/i18n/cs.po index e7ad722cd03..5a3ba3c0d88 100644 --- a/addons/google_docs/i18n/cs.po +++ b/addons/google_docs/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/de.po b/addons/google_docs/i18n/de.po index 6f4f58f1271..1e9380d6301 100644 --- a/addons/google_docs/i18n/de.po +++ b/addons/google_docs/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/es.po b/addons/google_docs/i18n/es.po index 549b73da1ef..6550ca96460 100644 --- a/addons/google_docs/i18n/es.po +++ b/addons/google_docs/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/fr.po b/addons/google_docs/i18n/fr.po index 8ec2f9a123d..b91c49b973d 100644 --- a/addons/google_docs/i18n/fr.po +++ b/addons/google_docs/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/hr.po b/addons/google_docs/i18n/hr.po index 852f8525b5c..3ea9313b6f7 100644 --- a/addons/google_docs/i18n/hr.po +++ b/addons/google_docs/i18n/hr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/hu.po b/addons/google_docs/i18n/hu.po index 2504f2c4976..8361f94a511 100644 --- a/addons/google_docs/i18n/hu.po +++ b/addons/google_docs/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/it.po b/addons/google_docs/i18n/it.po index c2004c2be75..85d91dfccbf 100644 --- a/addons/google_docs/i18n/it.po +++ b/addons/google_docs/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/ln.po b/addons/google_docs/i18n/ln.po index 558ed28a381..767d9578e32 100644 --- a/addons/google_docs/i18n/ln.po +++ b/addons/google_docs/i18n/ln.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/mk.po b/addons/google_docs/i18n/mk.po index 8cf0345730e..0c24bbc917f 100644 --- a/addons/google_docs/i18n/mk.po +++ b/addons/google_docs/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/mn.po b/addons/google_docs/i18n/mn.po index 2265a28c513..03467e5cf7a 100644 --- a/addons/google_docs/i18n/mn.po +++ b/addons/google_docs/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/nl.po b/addons/google_docs/i18n/nl.po index 85c3374a7d6..5c8347f3844 100644 --- a/addons/google_docs/i18n/nl.po +++ b/addons/google_docs/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-03 08:08+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/pl.po b/addons/google_docs/i18n/pl.po index 946bb53c70e..35daf6e2aa4 100644 --- a/addons/google_docs/i18n/pl.po +++ b/addons/google_docs/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/pt.po b/addons/google_docs/i18n/pt.po index fd85d183c9b..ead8fac75bb 100644 --- a/addons/google_docs/i18n/pt.po +++ b/addons/google_docs/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/pt_BR.po b/addons/google_docs/i18n/pt_BR.po index fcffd9013c8..134ae7e914e 100644 --- a/addons/google_docs/i18n/pt_BR.po +++ b/addons/google_docs/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/ro.po b/addons/google_docs/i18n/ro.po index d60a4fb0d1d..a2f2ed1c8f1 100644 --- a/addons/google_docs/i18n/ro.po +++ b/addons/google_docs/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-27 09:37+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/ru.po b/addons/google_docs/i18n/ru.po index 669aee89619..be8929d41ca 100644 --- a/addons/google_docs/i18n/ru.po +++ b/addons/google_docs/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-02 05:58+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/sl.po b/addons/google_docs/i18n/sl.po index 6b8615d1492..20fdca6a4a3 100644 --- a/addons/google_docs/i18n/sl.po +++ b/addons/google_docs/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/sv.po b/addons/google_docs/i18n/sv.po index a6dbde539e7..a50d0c21ffb 100644 --- a/addons/google_docs/i18n/sv.po +++ b/addons/google_docs/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/tr.po b/addons/google_docs/i18n/tr.po index 283888eb77b..3f0dcf4b98e 100644 --- a/addons/google_docs/i18n/tr.po +++ b/addons/google_docs/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/zh_CN.po b/addons/google_docs/i18n/zh_CN.po index 5687b5ee579..e5518c9ebf5 100644 --- a/addons/google_docs/i18n/zh_CN.po +++ b/addons/google_docs/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-20 14:07+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-22 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/hr/i18n/ar.po b/addons/hr/i18n/ar.po index 97f7b36632a..9848a950011 100644 --- a/addons/hr/i18n/ar.po +++ b/addons/hr/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/bg.po b/addons/hr/i18n/bg.po index a31c2e68578..36925bcdcce 100644 --- a/addons/hr/i18n/bg.po +++ b/addons/hr/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/bn.po b/addons/hr/i18n/bn.po index d771b2af4e8..3ea66a9d007 100644 --- a/addons/hr/i18n/bn.po +++ b/addons/hr/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/bs.po b/addons/hr/i18n/bs.po index 755bf8dce91..0004a87c2ed 100644 --- a/addons/hr/i18n/bs.po +++ b/addons/hr/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ca.po b/addons/hr/i18n/ca.po index 2781cb179cc..40e1dcff3c0 100644 --- a/addons/hr/i18n/ca.po +++ b/addons/hr/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/cs.po b/addons/hr/i18n/cs.po index b05f8c6b491..d29572e47c6 100644 --- a/addons/hr/i18n/cs.po +++ b/addons/hr/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/da.po b/addons/hr/i18n/da.po index 57819c56aad..11a0350a8ab 100644 --- a/addons/hr/i18n/da.po +++ b/addons/hr/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-07 05:50+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/de.po b/addons/hr/i18n/de.po index 170e4584485..4fbcc63a2fb 100644 --- a/addons/hr/i18n/de.po +++ b/addons/hr/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-09 05:48+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/el.po b/addons/hr/i18n/el.po index 1351da5754d..1ea6a48124b 100644 --- a/addons/hr/i18n/el.po +++ b/addons/hr/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/en_AU.po b/addons/hr/i18n/en_AU.po index bdc86474678..558a7abbd60 100644 --- a/addons/hr/i18n/en_AU.po +++ b/addons/hr/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/en_GB.po b/addons/hr/i18n/en_GB.po index bb26039fb03..92371d4aa5c 100644 --- a/addons/hr/i18n/en_GB.po +++ b/addons/hr/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es.po b/addons/hr/i18n/es.po index 39e14e05aea..e179397b131 100644 --- a/addons/hr/i18n/es.po +++ b/addons/hr/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_AR.po b/addons/hr/i18n/es_AR.po index 319da096ff0..e15c871b20e 100644 --- a/addons/hr/i18n/es_AR.po +++ b/addons/hr/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_CL.po b/addons/hr/i18n/es_CL.po index a39c2323bc3..80430122d2d 100644 --- a/addons/hr/i18n/es_CL.po +++ b/addons/hr/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_CR.po b/addons/hr/i18n/es_CR.po index 67bcc649db8..de67357c1c2 100644 --- a/addons/hr/i18n/es_CR.po +++ b/addons/hr/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_EC.po b/addons/hr/i18n/es_EC.po index 645927ba837..42c7ba9ad4d 100644 --- a/addons/hr/i18n/es_EC.po +++ b/addons/hr/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/et.po b/addons/hr/i18n/et.po index b835dbe36bd..854043e517c 100644 --- a/addons/hr/i18n/et.po +++ b/addons/hr/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/fi.po b/addons/hr/i18n/fi.po index d3e4b38b2cc..382a7d16580 100644 --- a/addons/hr/i18n/fi.po +++ b/addons/hr/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/fr.po b/addons/hr/i18n/fr.po index e4f24b10171..3f678b70a4c 100644 --- a/addons/hr/i18n/fr.po +++ b/addons/hr/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/fr_BE.po b/addons/hr/i18n/fr_BE.po index aae9b0469af..dd992fc6c89 100644 --- a/addons/hr/i18n/fr_BE.po +++ b/addons/hr/i18n/fr_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/gl.po b/addons/hr/i18n/gl.po index 91a890374b2..d4e27cbb827 100644 --- a/addons/hr/i18n/gl.po +++ b/addons/hr/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/gu.po b/addons/hr/i18n/gu.po index 0804489cec2..024a87fd610 100644 --- a/addons/hr/i18n/gu.po +++ b/addons/hr/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/hi.po b/addons/hr/i18n/hi.po index 9c06a7493d0..f98af7546f1 100644 --- a/addons/hr/i18n/hi.po +++ b/addons/hr/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/hr.po b/addons/hr/i18n/hr.po index 4f84daa28b6..6c701d9737d 100644 --- a/addons/hr/i18n/hr.po +++ b/addons/hr/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-24 06:37+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/hu.po b/addons/hr/i18n/hu.po index 739a68fa812..188b8ceefea 100644 --- a/addons/hr/i18n/hu.po +++ b/addons/hr/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/id.po b/addons/hr/i18n/id.po index 794a0d48797..9f5c062ed96 100644 --- a/addons/hr/i18n/id.po +++ b/addons/hr/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/it.po b/addons/hr/i18n/it.po index f960e1e08c5..d2108f45646 100644 --- a/addons/hr/i18n/it.po +++ b/addons/hr/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-11 05:19+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ja.po b/addons/hr/i18n/ja.po index a8e23563279..a2211a0a29a 100644 --- a/addons/hr/i18n/ja.po +++ b/addons/hr/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ko.po b/addons/hr/i18n/ko.po index 2b957101e18..d1224437626 100644 --- a/addons/hr/i18n/ko.po +++ b/addons/hr/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/lo.po b/addons/hr/i18n/lo.po index a26b2c75c79..f1277792d62 100644 --- a/addons/hr/i18n/lo.po +++ b/addons/hr/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/lt.po b/addons/hr/i18n/lt.po index 2438de7bc3e..e66dacb4d70 100644 --- a/addons/hr/i18n/lt.po +++ b/addons/hr/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/lv.po b/addons/hr/i18n/lv.po index af37e7d6445..534a7e03008 100644 --- a/addons/hr/i18n/lv.po +++ b/addons/hr/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/mk.po b/addons/hr/i18n/mk.po index 6a6839c8e02..b35f02419e6 100644 --- a/addons/hr/i18n/mk.po +++ b/addons/hr/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: hr diff --git a/addons/hr/i18n/mn.po b/addons/hr/i18n/mn.po index 55f7df53b7b..ed5952ef825 100644 --- a/addons/hr/i18n/mn.po +++ b/addons/hr/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/nb.po b/addons/hr/i18n/nb.po index efae761051c..920a86891cb 100644 --- a/addons/hr/i18n/nb.po +++ b/addons/hr/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/nl.po b/addons/hr/i18n/nl.po index 6620977712e..70af20a957d 100644 --- a/addons/hr/i18n/nl.po +++ b/addons/hr/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:22+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/nl_BE.po b/addons/hr/i18n/nl_BE.po index 6c9c04b97d0..d1f64c68ced 100644 --- a/addons/hr/i18n/nl_BE.po +++ b/addons/hr/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/pl.po b/addons/hr/i18n/pl.po index 793d8036f50..619ddd0b0e8 100644 --- a/addons/hr/i18n/pl.po +++ b/addons/hr/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: hr diff --git a/addons/hr/i18n/pt.po b/addons/hr/i18n/pt.po index aaba834408b..4d08a238fad 100644 --- a/addons/hr/i18n/pt.po +++ b/addons/hr/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/pt_BR.po b/addons/hr/i18n/pt_BR.po index 254ad4baa1d..2bd97ff5a09 100644 --- a/addons/hr/i18n/pt_BR.po +++ b/addons/hr/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 19:47+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ro.po b/addons/hr/i18n/ro.po index 48fce2f2bb9..234512c74cf 100644 --- a/addons/hr/i18n/ro.po +++ b/addons/hr/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:54+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ru.po b/addons/hr/i18n/ru.po index 056219aa76b..0abd33c3e35 100644 --- a/addons/hr/i18n/ru.po +++ b/addons/hr/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sk.po b/addons/hr/i18n/sk.po index 0dc3f68fe9f..e928e5cb40f 100644 --- a/addons/hr/i18n/sk.po +++ b/addons/hr/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sl.po b/addons/hr/i18n/sl.po index aa6f51bc6cd..a4bd4fdd8b2 100644 --- a/addons/hr/i18n/sl.po +++ b/addons/hr/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sq.po b/addons/hr/i18n/sq.po index 8f9d784b65c..939c1777dec 100644 --- a/addons/hr/i18n/sq.po +++ b/addons/hr/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sr.po b/addons/hr/i18n/sr.po index a60b864c9fd..02430eb3aed 100644 --- a/addons/hr/i18n/sr.po +++ b/addons/hr/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sr@latin.po b/addons/hr/i18n/sr@latin.po index 8a3d50a5a10..f9c1a5ad930 100644 --- a/addons/hr/i18n/sr@latin.po +++ b/addons/hr/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sv.po b/addons/hr/i18n/sv.po index 46ebcb512db..ba8c57ea3b2 100644 --- a/addons/hr/i18n/sv.po +++ b/addons/hr/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/th.po b/addons/hr/i18n/th.po index 060320dd6b5..b4f9788633d 100644 --- a/addons/hr/i18n/th.po +++ b/addons/hr/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/tlh.po b/addons/hr/i18n/tlh.po index 17031f10a15..2db892c0b87 100644 --- a/addons/hr/i18n/tlh.po +++ b/addons/hr/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/tr.po b/addons/hr/i18n/tr.po index a9136bb6734..43082ff8ab7 100644 --- a/addons/hr/i18n/tr.po +++ b/addons/hr/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-06 05:04+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/uk.po b/addons/hr/i18n/uk.po index 3803d4c2d12..60f7f09b3da 100644 --- a/addons/hr/i18n/uk.po +++ b/addons/hr/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/vi.po b/addons/hr/i18n/vi.po index 8291f27967f..d80a4b18b37 100644 --- a/addons/hr/i18n/vi.po +++ b/addons/hr/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/zh_CN.po b/addons/hr/i18n/zh_CN.po index 6e2c1c93a14..a859dbf8ffe 100644 --- a/addons/hr/i18n/zh_CN.po +++ b/addons/hr/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-08 06:25+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/zh_TW.po b/addons/hr/i18n/zh_TW.po index a1b6d938979..51f6456eab7 100644 --- a/addons/hr/i18n/zh_TW.po +++ b/addons/hr/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr_attendance/i18n/ar.po b/addons/hr_attendance/i18n/ar.po index 1d878fd58df..646ad746d44 100644 --- a/addons/hr_attendance/i18n/ar.po +++ b/addons/hr_attendance/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/bg.po b/addons/hr_attendance/i18n/bg.po index 852e91bd209..896e6be4d9e 100644 --- a/addons/hr_attendance/i18n/bg.po +++ b/addons/hr_attendance/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/bs.po b/addons/hr_attendance/i18n/bs.po index 4442775cf74..f38c6d44a80 100644 --- a/addons/hr_attendance/i18n/bs.po +++ b/addons/hr_attendance/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ca.po b/addons/hr_attendance/i18n/ca.po index 9b981985991..389d1696010 100644 --- a/addons/hr_attendance/i18n/ca.po +++ b/addons/hr_attendance/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/cs.po b/addons/hr_attendance/i18n/cs.po index 29eaf5843a4..55cc5327996 100644 --- a/addons/hr_attendance/i18n/cs.po +++ b/addons/hr_attendance/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/da.po b/addons/hr_attendance/i18n/da.po index c5bc271bf2b..5e5eba73862 100644 --- a/addons/hr_attendance/i18n/da.po +++ b/addons/hr_attendance/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/de.po b/addons/hr_attendance/i18n/de.po index 509d151d271..806af46df96 100644 --- a/addons/hr_attendance/i18n/de.po +++ b/addons/hr_attendance/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/el.po b/addons/hr_attendance/i18n/el.po index 7faceeea5f5..fc6c8b90680 100644 --- a/addons/hr_attendance/i18n/el.po +++ b/addons/hr_attendance/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/en_GB.po b/addons/hr_attendance/i18n/en_GB.po index 052614dd135..01c9e95e647 100644 --- a/addons/hr_attendance/i18n/en_GB.po +++ b/addons/hr_attendance/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es.po b/addons/hr_attendance/i18n/es.po index 12fb3c6d036..96adef9710e 100644 --- a/addons/hr_attendance/i18n/es.po +++ b/addons/hr_attendance/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_AR.po b/addons/hr_attendance/i18n/es_AR.po index 09fe60cff17..174fa5b1cfe 100644 --- a/addons/hr_attendance/i18n/es_AR.po +++ b/addons/hr_attendance/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_CL.po b/addons/hr_attendance/i18n/es_CL.po index 04ff02b1db9..8b4e66a923c 100644 --- a/addons/hr_attendance/i18n/es_CL.po +++ b/addons/hr_attendance/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_CR.po b/addons/hr_attendance/i18n/es_CR.po index 9256d9a4816..2a8f8b00831 100644 --- a/addons/hr_attendance/i18n/es_CR.po +++ b/addons/hr_attendance/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_EC.po b/addons/hr_attendance/i18n/es_EC.po index 59353b8ef73..686ee54ffaf 100644 --- a/addons/hr_attendance/i18n/es_EC.po +++ b/addons/hr_attendance/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_PY.po b/addons/hr_attendance/i18n/es_PY.po index 8c24097a61a..984b5cbb524 100644 --- a/addons/hr_attendance/i18n/es_PY.po +++ b/addons/hr_attendance/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/et.po b/addons/hr_attendance/i18n/et.po index 5dd71b5830a..54a31168cfa 100644 --- a/addons/hr_attendance/i18n/et.po +++ b/addons/hr_attendance/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/fi.po b/addons/hr_attendance/i18n/fi.po index 636cfb8209e..2164ba9f2e4 100644 --- a/addons/hr_attendance/i18n/fi.po +++ b/addons/hr_attendance/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/fr.po b/addons/hr_attendance/i18n/fr.po index 77246f2d4f1..c44560664c1 100644 --- a/addons/hr_attendance/i18n/fr.po +++ b/addons/hr_attendance/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/gl.po b/addons/hr_attendance/i18n/gl.po index 3906ef02853..b1fa2b484c5 100644 --- a/addons/hr_attendance/i18n/gl.po +++ b/addons/hr_attendance/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/he.po b/addons/hr_attendance/i18n/he.po index 0cfdd13548e..2b253f4a302 100644 --- a/addons/hr_attendance/i18n/he.po +++ b/addons/hr_attendance/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/hr.po b/addons/hr_attendance/i18n/hr.po index 701ca0a7c61..fd6e274c0f6 100644 --- a/addons/hr_attendance/i18n/hr.po +++ b/addons/hr_attendance/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-24 06:37+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/hu.po b/addons/hr_attendance/i18n/hu.po index ff9978a920f..4e85880f5ac 100644 --- a/addons/hr_attendance/i18n/hu.po +++ b/addons/hr_attendance/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/id.po b/addons/hr_attendance/i18n/id.po index 5fa3b1742b7..492228e5efc 100644 --- a/addons/hr_attendance/i18n/id.po +++ b/addons/hr_attendance/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/it.po b/addons/hr_attendance/i18n/it.po index 294d7ef12b6..4eba218afab 100644 --- a/addons/hr_attendance/i18n/it.po +++ b/addons/hr_attendance/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ja.po b/addons/hr_attendance/i18n/ja.po index 7d7b456ab00..3d7f9fab0af 100644 --- a/addons/hr_attendance/i18n/ja.po +++ b/addons/hr_attendance/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ko.po b/addons/hr_attendance/i18n/ko.po index 1cadb4dd179..85351a29dc3 100644 --- a/addons/hr_attendance/i18n/ko.po +++ b/addons/hr_attendance/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/lt.po b/addons/hr_attendance/i18n/lt.po index 14cc6c1e358..e19da9184c4 100644 --- a/addons/hr_attendance/i18n/lt.po +++ b/addons/hr_attendance/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/lv.po b/addons/hr_attendance/i18n/lv.po index badb0008628..e6e71145264 100644 --- a/addons/hr_attendance/i18n/lv.po +++ b/addons/hr_attendance/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/mk.po b/addons/hr_attendance/i18n/mk.po index 8b303a166dc..1b68cb27e0f 100644 --- a/addons/hr_attendance/i18n/mk.po +++ b/addons/hr_attendance/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/mn.po b/addons/hr_attendance/i18n/mn.po index 11d99485364..9d931a15678 100644 --- a/addons/hr_attendance/i18n/mn.po +++ b/addons/hr_attendance/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/nb.po b/addons/hr_attendance/i18n/nb.po index 2020fc3b6b4..b62336c7c66 100644 --- a/addons/hr_attendance/i18n/nb.po +++ b/addons/hr_attendance/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/nl.po b/addons/hr_attendance/i18n/nl.po index 6bba67b4cfd..ff2c89e7bd8 100644 --- a/addons/hr_attendance/i18n/nl.po +++ b/addons/hr_attendance/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-14 06:11+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/nl_BE.po b/addons/hr_attendance/i18n/nl_BE.po index f9cbab74ed4..16dca09d5f2 100644 --- a/addons/hr_attendance/i18n/nl_BE.po +++ b/addons/hr_attendance/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/pl.po b/addons/hr_attendance/i18n/pl.po index e045c16533c..b8cea65f71d 100644 --- a/addons/hr_attendance/i18n/pl.po +++ b/addons/hr_attendance/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/pt.po b/addons/hr_attendance/i18n/pt.po index e1ce41e8da8..01dc184d1ed 100644 --- a/addons/hr_attendance/i18n/pt.po +++ b/addons/hr_attendance/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/pt_BR.po b/addons/hr_attendance/i18n/pt_BR.po index 5e17f9d097c..06869743dd4 100644 --- a/addons/hr_attendance/i18n/pt_BR.po +++ b/addons/hr_attendance/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ro.po b/addons/hr_attendance/i18n/ro.po index f62e7bb9c88..0073518c5c0 100644 --- a/addons/hr_attendance/i18n/ro.po +++ b/addons/hr_attendance/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-24 18:09+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ru.po b/addons/hr_attendance/i18n/ru.po index 0115ee4776c..b45e7b082b2 100644 --- a/addons/hr_attendance/i18n/ru.po +++ b/addons/hr_attendance/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sl.po b/addons/hr_attendance/i18n/sl.po index e2b6da7cb14..93da1019afa 100644 --- a/addons/hr_attendance/i18n/sl.po +++ b/addons/hr_attendance/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sq.po b/addons/hr_attendance/i18n/sq.po index 554ebdb8e16..d346d0d33fc 100644 --- a/addons/hr_attendance/i18n/sq.po +++ b/addons/hr_attendance/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sr.po b/addons/hr_attendance/i18n/sr.po index d65fc472db9..076d3aefe6d 100644 --- a/addons/hr_attendance/i18n/sr.po +++ b/addons/hr_attendance/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sr@latin.po b/addons/hr_attendance/i18n/sr@latin.po index e4401c307e6..14c481cd3b3 100644 --- a/addons/hr_attendance/i18n/sr@latin.po +++ b/addons/hr_attendance/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sv.po b/addons/hr_attendance/i18n/sv.po index 7a912be17c7..b43515b5df2 100644 --- a/addons/hr_attendance/i18n/sv.po +++ b/addons/hr_attendance/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/th.po b/addons/hr_attendance/i18n/th.po index 8b1ae0870b5..d244546d8a2 100644 --- a/addons/hr_attendance/i18n/th.po +++ b/addons/hr_attendance/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/tlh.po b/addons/hr_attendance/i18n/tlh.po index e1f37553bad..ebd0ecd9aaa 100644 --- a/addons/hr_attendance/i18n/tlh.po +++ b/addons/hr_attendance/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/tr.po b/addons/hr_attendance/i18n/tr.po index 6127d79d535..f8fb4077b28 100644 --- a/addons/hr_attendance/i18n/tr.po +++ b/addons/hr_attendance/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/uk.po b/addons/hr_attendance/i18n/uk.po index 3a162fe16cd..dae672c969d 100644 --- a/addons/hr_attendance/i18n/uk.po +++ b/addons/hr_attendance/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/vi.po b/addons/hr_attendance/i18n/vi.po index 303a5837a95..4eb65dbf9bb 100644 --- a/addons/hr_attendance/i18n/vi.po +++ b/addons/hr_attendance/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/zh_CN.po b/addons/hr_attendance/i18n/zh_CN.po index 1f8a8d4cf03..df0717b5358 100644 --- a/addons/hr_attendance/i18n/zh_CN.po +++ b/addons/hr_attendance/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-11 07:20+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-12 06:34+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/zh_TW.po b/addons/hr_attendance/i18n/zh_TW.po index 36de6b74225..4998d937c40 100644 --- a/addons/hr_attendance/i18n/zh_TW.po +++ b/addons/hr_attendance/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_contract/i18n/ar.po b/addons/hr_contract/i18n/ar.po index a8def81ca25..c74188d416c 100644 --- a/addons/hr_contract/i18n/ar.po +++ b/addons/hr_contract/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/bg.po b/addons/hr_contract/i18n/bg.po index 8d08277e2a5..93642902beb 100644 --- a/addons/hr_contract/i18n/bg.po +++ b/addons/hr_contract/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/bs.po b/addons/hr_contract/i18n/bs.po index 0aefcd0a11a..ebf2ea83030 100644 --- a/addons/hr_contract/i18n/bs.po +++ b/addons/hr_contract/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ca.po b/addons/hr_contract/i18n/ca.po index 05ef4c52e69..e0c24e0331c 100644 --- a/addons/hr_contract/i18n/ca.po +++ b/addons/hr_contract/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/cs.po b/addons/hr_contract/i18n/cs.po index e93a5995cac..02e7601c812 100644 --- a/addons/hr_contract/i18n/cs.po +++ b/addons/hr_contract/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/da.po b/addons/hr_contract/i18n/da.po index 4eaaa630f39..0e855d750d4 100644 --- a/addons/hr_contract/i18n/da.po +++ b/addons/hr_contract/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-05 06:00+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/de.po b/addons/hr_contract/i18n/de.po index b7d7b55c5c1..f31686bfb36 100644 --- a/addons/hr_contract/i18n/de.po +++ b/addons/hr_contract/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/el.po b/addons/hr_contract/i18n/el.po index 2a58ad63f9a..74b83d4aa7e 100644 --- a/addons/hr_contract/i18n/el.po +++ b/addons/hr_contract/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/en_GB.po b/addons/hr_contract/i18n/en_GB.po index 766445e7058..e5fdd620aa7 100644 --- a/addons/hr_contract/i18n/en_GB.po +++ b/addons/hr_contract/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es.po b/addons/hr_contract/i18n/es.po index baae4de5d4a..bbb73c7d506 100644 --- a/addons/hr_contract/i18n/es.po +++ b/addons/hr_contract/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_AR.po b/addons/hr_contract/i18n/es_AR.po index 76e301b372a..93902f5c03e 100644 --- a/addons/hr_contract/i18n/es_AR.po +++ b/addons/hr_contract/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_CR.po b/addons/hr_contract/i18n/es_CR.po index f6824299e13..36912e846c9 100644 --- a/addons/hr_contract/i18n/es_CR.po +++ b/addons/hr_contract/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_EC.po b/addons/hr_contract/i18n/es_EC.po index bbe4e4bf753..cce79ab204b 100644 --- a/addons/hr_contract/i18n/es_EC.po +++ b/addons/hr_contract/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_PY.po b/addons/hr_contract/i18n/es_PY.po index 3365c6e4289..0bf1080860a 100644 --- a/addons/hr_contract/i18n/es_PY.po +++ b/addons/hr_contract/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/et.po b/addons/hr_contract/i18n/et.po index 91613b3f19a..e1b62a923dc 100644 --- a/addons/hr_contract/i18n/et.po +++ b/addons/hr_contract/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/fi.po b/addons/hr_contract/i18n/fi.po index 24a04698548..67ff626048e 100644 --- a/addons/hr_contract/i18n/fi.po +++ b/addons/hr_contract/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/fr.po b/addons/hr_contract/i18n/fr.po index 8cf8f83a663..a6faa681038 100644 --- a/addons/hr_contract/i18n/fr.po +++ b/addons/hr_contract/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/gl.po b/addons/hr_contract/i18n/gl.po index 2bb1b674a53..8687a434b7e 100644 --- a/addons/hr_contract/i18n/gl.po +++ b/addons/hr_contract/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/gu.po b/addons/hr_contract/i18n/gu.po index 26959eee83a..f3fbfd9429f 100644 --- a/addons/hr_contract/i18n/gu.po +++ b/addons/hr_contract/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/hi.po b/addons/hr_contract/i18n/hi.po index df2062e4568..62854faca8b 100644 --- a/addons/hr_contract/i18n/hi.po +++ b/addons/hr_contract/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/hr.po b/addons/hr_contract/i18n/hr.po index 4d8b217bc6b..5e989bf8577 100644 --- a/addons/hr_contract/i18n/hr.po +++ b/addons/hr_contract/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/hu.po b/addons/hr_contract/i18n/hu.po index f06cc317007..751514f6da3 100644 --- a/addons/hr_contract/i18n/hu.po +++ b/addons/hr_contract/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/id.po b/addons/hr_contract/i18n/id.po index 11a8b0e965e..04f5808bfec 100644 --- a/addons/hr_contract/i18n/id.po +++ b/addons/hr_contract/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/it.po b/addons/hr_contract/i18n/it.po index 9bb1746245a..8acfc0d3ff7 100644 --- a/addons/hr_contract/i18n/it.po +++ b/addons/hr_contract/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ja.po b/addons/hr_contract/i18n/ja.po index f37d5a7f104..755e070d849 100644 --- a/addons/hr_contract/i18n/ja.po +++ b/addons/hr_contract/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ko.po b/addons/hr_contract/i18n/ko.po index 69715d1eb55..15ce00126f2 100644 --- a/addons/hr_contract/i18n/ko.po +++ b/addons/hr_contract/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/lo.po b/addons/hr_contract/i18n/lo.po index 17ab23f31cf..4362f5c887d 100644 --- a/addons/hr_contract/i18n/lo.po +++ b/addons/hr_contract/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/lt.po b/addons/hr_contract/i18n/lt.po index f6b5a708bff..2b6a18c9c4d 100644 --- a/addons/hr_contract/i18n/lt.po +++ b/addons/hr_contract/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/lv.po b/addons/hr_contract/i18n/lv.po index 5c9ab196c85..575169d2c61 100644 --- a/addons/hr_contract/i18n/lv.po +++ b/addons/hr_contract/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/mk.po b/addons/hr_contract/i18n/mk.po index 0762b0ca1fa..74b9c1a1cb6 100644 --- a/addons/hr_contract/i18n/mk.po +++ b/addons/hr_contract/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/mn.po b/addons/hr_contract/i18n/mn.po index c079bab5e48..e2a2ffe26ef 100644 --- a/addons/hr_contract/i18n/mn.po +++ b/addons/hr_contract/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/nb.po b/addons/hr_contract/i18n/nb.po index 11f1a822ee7..35d5b93b865 100644 --- a/addons/hr_contract/i18n/nb.po +++ b/addons/hr_contract/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/nl.po b/addons/hr_contract/i18n/nl.po index a7ef7c77332..c0c2db0e60b 100644 --- a/addons/hr_contract/i18n/nl.po +++ b/addons/hr_contract/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/nl_BE.po b/addons/hr_contract/i18n/nl_BE.po index 1ebb886ed1e..fc4bd76ca09 100644 --- a/addons/hr_contract/i18n/nl_BE.po +++ b/addons/hr_contract/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/pl.po b/addons/hr_contract/i18n/pl.po index 7e67b392988..7d6c69878a1 100644 --- a/addons/hr_contract/i18n/pl.po +++ b/addons/hr_contract/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/pt.po b/addons/hr_contract/i18n/pt.po index 923a76a91bf..63578e5babb 100644 --- a/addons/hr_contract/i18n/pt.po +++ b/addons/hr_contract/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/pt_BR.po b/addons/hr_contract/i18n/pt_BR.po index 1315a6c4d9c..863dd20adac 100644 --- a/addons/hr_contract/i18n/pt_BR.po +++ b/addons/hr_contract/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ro.po b/addons/hr_contract/i18n/ro.po index d001ce390c6..d53a5aad93a 100644 --- a/addons/hr_contract/i18n/ro.po +++ b/addons/hr_contract/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 18:54+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ru.po b/addons/hr_contract/i18n/ru.po index 067a0920ed9..52e9da67eb6 100644 --- a/addons/hr_contract/i18n/ru.po +++ b/addons/hr_contract/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sl.po b/addons/hr_contract/i18n/sl.po index a6a2176eb04..174970f01c9 100644 --- a/addons/hr_contract/i18n/sl.po +++ b/addons/hr_contract/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sq.po b/addons/hr_contract/i18n/sq.po index c3374f1bc79..9ab0ac560ab 100644 --- a/addons/hr_contract/i18n/sq.po +++ b/addons/hr_contract/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:10+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sr.po b/addons/hr_contract/i18n/sr.po index 2afb75f7a2a..53f6c7022d6 100644 --- a/addons/hr_contract/i18n/sr.po +++ b/addons/hr_contract/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sr@latin.po b/addons/hr_contract/i18n/sr@latin.po index cfb85a9718b..649c6510f5d 100644 --- a/addons/hr_contract/i18n/sr@latin.po +++ b/addons/hr_contract/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sv.po b/addons/hr_contract/i18n/sv.po index d00aeabb75f..aff929cafe1 100644 --- a/addons/hr_contract/i18n/sv.po +++ b/addons/hr_contract/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/th.po b/addons/hr_contract/i18n/th.po index 99dcb18fc68..9c0a0e9431c 100644 --- a/addons/hr_contract/i18n/th.po +++ b/addons/hr_contract/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/tlh.po b/addons/hr_contract/i18n/tlh.po index 863708b0831..b0cfe1b36ca 100644 --- a/addons/hr_contract/i18n/tlh.po +++ b/addons/hr_contract/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/tr.po b/addons/hr_contract/i18n/tr.po index e857b19187b..5fe831bcccc 100644 --- a/addons/hr_contract/i18n/tr.po +++ b/addons/hr_contract/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/uk.po b/addons/hr_contract/i18n/uk.po index 7348891f7b6..9486df8a2eb 100644 --- a/addons/hr_contract/i18n/uk.po +++ b/addons/hr_contract/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/vi.po b/addons/hr_contract/i18n/vi.po index 96126925ab6..83b5443c84f 100644 --- a/addons/hr_contract/i18n/vi.po +++ b/addons/hr_contract/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/zh_CN.po b/addons/hr_contract/i18n/zh_CN.po index f5c59406b70..bcd5eba33bf 100644 --- a/addons/hr_contract/i18n/zh_CN.po +++ b/addons/hr_contract/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-03 15:45+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/zh_TW.po b/addons/hr_contract/i18n/zh_TW.po index fafa8c110a8..195f810c659 100644 --- a/addons/hr_contract/i18n/zh_TW.po +++ b/addons/hr_contract/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_evaluation/i18n/ar.po b/addons/hr_evaluation/i18n/ar.po index 87423771240..abfdccdbbb2 100644 --- a/addons/hr_evaluation/i18n/ar.po +++ b/addons/hr_evaluation/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/bg.po b/addons/hr_evaluation/i18n/bg.po index 02d4b696146..97d0fc445ea 100644 --- a/addons/hr_evaluation/i18n/bg.po +++ b/addons/hr_evaluation/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ca.po b/addons/hr_evaluation/i18n/ca.po index c6711f23281..c263b5c9ca6 100644 --- a/addons/hr_evaluation/i18n/ca.po +++ b/addons/hr_evaluation/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/cs.po b/addons/hr_evaluation/i18n/cs.po index 59431bffaef..de4cebe2dfa 100644 --- a/addons/hr_evaluation/i18n/cs.po +++ b/addons/hr_evaluation/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/da.po b/addons/hr_evaluation/i18n/da.po index 0684da49277..b0e56d45b99 100644 --- a/addons/hr_evaluation/i18n/da.po +++ b/addons/hr_evaluation/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/de.po b/addons/hr_evaluation/i18n/de.po index 150dda617f6..320e89ea2eb 100644 --- a/addons/hr_evaluation/i18n/de.po +++ b/addons/hr_evaluation/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/es.po b/addons/hr_evaluation/i18n/es.po index 71b3c9fba17..064d7fd7dca 100644 --- a/addons/hr_evaluation/i18n/es.po +++ b/addons/hr_evaluation/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/es_CR.po b/addons/hr_evaluation/i18n/es_CR.po index 1d0507d1d3f..e29e8ef7070 100644 --- a/addons/hr_evaluation/i18n/es_CR.po +++ b/addons/hr_evaluation/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/es_EC.po b/addons/hr_evaluation/i18n/es_EC.po index c4b5a984996..2d02e5db50e 100644 --- a/addons/hr_evaluation/i18n/es_EC.po +++ b/addons/hr_evaluation/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/et.po b/addons/hr_evaluation/i18n/et.po index b6f79939964..15384616979 100644 --- a/addons/hr_evaluation/i18n/et.po +++ b/addons/hr_evaluation/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/fi.po b/addons/hr_evaluation/i18n/fi.po index f5c45fb4b69..ded274a4473 100644 --- a/addons/hr_evaluation/i18n/fi.po +++ b/addons/hr_evaluation/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/fr.po b/addons/hr_evaluation/i18n/fr.po index 45aa6430d92..bddba8ddc61 100644 --- a/addons/hr_evaluation/i18n/fr.po +++ b/addons/hr_evaluation/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/gl.po b/addons/hr_evaluation/i18n/gl.po index 04684995a5a..f353741bb5b 100644 --- a/addons/hr_evaluation/i18n/gl.po +++ b/addons/hr_evaluation/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/hr.po b/addons/hr_evaluation/i18n/hr.po index d2c8fd88ded..055c7bce0de 100644 --- a/addons/hr_evaluation/i18n/hr.po +++ b/addons/hr_evaluation/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/hu.po b/addons/hr_evaluation/i18n/hu.po index 908a600585b..ed67d035452 100644 --- a/addons/hr_evaluation/i18n/hu.po +++ b/addons/hr_evaluation/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/id.po b/addons/hr_evaluation/i18n/id.po index 24d195611ba..4f466a8a628 100644 --- a/addons/hr_evaluation/i18n/id.po +++ b/addons/hr_evaluation/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/it.po b/addons/hr_evaluation/i18n/it.po index 24f22da010a..1687047d18b 100644 --- a/addons/hr_evaluation/i18n/it.po +++ b/addons/hr_evaluation/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ja.po b/addons/hr_evaluation/i18n/ja.po index c9cd5b06e75..b485c52ebdc 100644 --- a/addons/hr_evaluation/i18n/ja.po +++ b/addons/hr_evaluation/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/mk.po b/addons/hr_evaluation/i18n/mk.po index 3826920c4a3..879f67d528a 100644 --- a/addons/hr_evaluation/i18n/mk.po +++ b/addons/hr_evaluation/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/mn.po b/addons/hr_evaluation/i18n/mn.po index 8c18d0d1dca..85eef1086d2 100644 --- a/addons/hr_evaluation/i18n/mn.po +++ b/addons/hr_evaluation/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/nl.po b/addons/hr_evaluation/i18n/nl.po index 00288a7bbdc..d3e302ca478 100644 --- a/addons/hr_evaluation/i18n/nl.po +++ b/addons/hr_evaluation/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-26 12:54+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/pl.po b/addons/hr_evaluation/i18n/pl.po index 86d26f29645..d9c5a306195 100644 --- a/addons/hr_evaluation/i18n/pl.po +++ b/addons/hr_evaluation/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/pt.po b/addons/hr_evaluation/i18n/pt.po index b63216eb534..be88e1df8b9 100644 --- a/addons/hr_evaluation/i18n/pt.po +++ b/addons/hr_evaluation/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/pt_BR.po b/addons/hr_evaluation/i18n/pt_BR.po index ad817667561..070111d6199 100644 --- a/addons/hr_evaluation/i18n/pt_BR.po +++ b/addons/hr_evaluation/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ro.po b/addons/hr_evaluation/i18n/ro.po index 58771a7ae92..607bb60f257 100644 --- a/addons/hr_evaluation/i18n/ro.po +++ b/addons/hr_evaluation/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:56+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ru.po b/addons/hr_evaluation/i18n/ru.po index 2fcae3f012b..c479f1f72db 100644 --- a/addons/hr_evaluation/i18n/ru.po +++ b/addons/hr_evaluation/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sl.po b/addons/hr_evaluation/i18n/sl.po index 8f257a24feb..a69ecb71b93 100644 --- a/addons/hr_evaluation/i18n/sl.po +++ b/addons/hr_evaluation/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sr.po b/addons/hr_evaluation/i18n/sr.po index a165c3c5218..795cd46b22d 100644 --- a/addons/hr_evaluation/i18n/sr.po +++ b/addons/hr_evaluation/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sr@latin.po b/addons/hr_evaluation/i18n/sr@latin.po index 39d7bdb70cd..43cdb16b429 100644 --- a/addons/hr_evaluation/i18n/sr@latin.po +++ b/addons/hr_evaluation/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sv.po b/addons/hr_evaluation/i18n/sv.po index 6428119c982..7b829ae5bec 100644 --- a/addons/hr_evaluation/i18n/sv.po +++ b/addons/hr_evaluation/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/tr.po b/addons/hr_evaluation/i18n/tr.po index a143387fdab..9fd743332cd 100644 --- a/addons/hr_evaluation/i18n/tr.po +++ b/addons/hr_evaluation/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-06 05:04+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/zh_CN.po b/addons/hr_evaluation/i18n/zh_CN.po index 8e7681096c4..98347121a81 100644 --- a/addons/hr_evaluation/i18n/zh_CN.po +++ b/addons/hr_evaluation/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 @@ -895,6 +895,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击根据人员评估来创建一个新的面试要求。 \n" +"

\n" +" 面试要求通常由OpenERP根据员工评估计划自动生成。每个用户\n" +" 会定期自动接到要求评估同事的电子邮件。\n" +"

\n" +" " #. module: hr_evaluation #: help:hr.evaluation.interview,message_ids:0 diff --git a/addons/hr_evaluation/i18n/zh_TW.po b/addons/hr_evaluation/i18n/zh_TW.po index 93622b97fc0..5c629366c2e 100644 --- a/addons/hr_evaluation/i18n/zh_TW.po +++ b/addons/hr_evaluation/i18n/zh_TW.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: hr_evaluation diff --git a/addons/hr_expense/i18n/ar.po b/addons/hr_expense/i18n/ar.po index d33c889333c..ec10626956e 100644 --- a/addons/hr_expense/i18n/ar.po +++ b/addons/hr_expense/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/bg.po b/addons/hr_expense/i18n/bg.po index d28c622f03f..1ce95b18806 100644 --- a/addons/hr_expense/i18n/bg.po +++ b/addons/hr_expense/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/bs.po b/addons/hr_expense/i18n/bs.po index 363934ecffe..2700538737b 100644 --- a/addons/hr_expense/i18n/bs.po +++ b/addons/hr_expense/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ca.po b/addons/hr_expense/i18n/ca.po index 288b911b5c7..3a144cc0df8 100644 --- a/addons/hr_expense/i18n/ca.po +++ b/addons/hr_expense/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/cs.po b/addons/hr_expense/i18n/cs.po index a6632e12012..c3fed78f1ec 100644 --- a/addons/hr_expense/i18n/cs.po +++ b/addons/hr_expense/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/da.po b/addons/hr_expense/i18n/da.po index ce44553ef33..0abad97f33e 100644 --- a/addons/hr_expense/i18n/da.po +++ b/addons/hr_expense/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/de.po b/addons/hr_expense/i18n/de.po index d19d55ed51e..c21193bdb3b 100644 --- a/addons/hr_expense/i18n/de.po +++ b/addons/hr_expense/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/el.po b/addons/hr_expense/i18n/el.po index 65a25a40616..c4f2a7bac9b 100644 --- a/addons/hr_expense/i18n/el.po +++ b/addons/hr_expense/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es.po b/addons/hr_expense/i18n/es.po index 13a16177861..4917edcc801 100644 --- a/addons/hr_expense/i18n/es.po +++ b/addons/hr_expense/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es_AR.po b/addons/hr_expense/i18n/es_AR.po index e31dadf363f..264834b3927 100644 --- a/addons/hr_expense/i18n/es_AR.po +++ b/addons/hr_expense/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es_CR.po b/addons/hr_expense/i18n/es_CR.po index 9dde0482839..8b3a71c7847 100644 --- a/addons/hr_expense/i18n/es_CR.po +++ b/addons/hr_expense/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es_EC.po b/addons/hr_expense/i18n/es_EC.po index 9a3b031fab7..ac97c1ffcad 100644 --- a/addons/hr_expense/i18n/es_EC.po +++ b/addons/hr_expense/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/et.po b/addons/hr_expense/i18n/et.po index 675eccfb13c..ab703a9ffb3 100644 --- a/addons/hr_expense/i18n/et.po +++ b/addons/hr_expense/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/fi.po b/addons/hr_expense/i18n/fi.po index d8e47c89ec3..0a3e427d1c6 100644 --- a/addons/hr_expense/i18n/fi.po +++ b/addons/hr_expense/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/fr.po b/addons/hr_expense/i18n/fr.po index 09a3ee9b5cf..8ba8fce3356 100644 --- a/addons/hr_expense/i18n/fr.po +++ b/addons/hr_expense/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/hr.po b/addons/hr_expense/i18n/hr.po index a42a74f79a9..fe01e48a8f6 100644 --- a/addons/hr_expense/i18n/hr.po +++ b/addons/hr_expense/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/hu.po b/addons/hr_expense/i18n/hu.po index 0057aa9718c..4bcd0977970 100644 --- a/addons/hr_expense/i18n/hu.po +++ b/addons/hr_expense/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/id.po b/addons/hr_expense/i18n/id.po index ac1cc02bb37..f717ccf2268 100644 --- a/addons/hr_expense/i18n/id.po +++ b/addons/hr_expense/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/it.po b/addons/hr_expense/i18n/it.po index e73ac7534bc..d45f489e499 100644 --- a/addons/hr_expense/i18n/it.po +++ b/addons/hr_expense/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ja.po b/addons/hr_expense/i18n/ja.po index 40f6bcf6f96..1c2d205afb3 100644 --- a/addons/hr_expense/i18n/ja.po +++ b/addons/hr_expense/i18n/ja.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-15 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/ko.po b/addons/hr_expense/i18n/ko.po index c70187edcf7..c66daf9d7b4 100644 --- a/addons/hr_expense/i18n/ko.po +++ b/addons/hr_expense/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/lt.po b/addons/hr_expense/i18n/lt.po index d7c1a9e9168..a2e7cccbfb9 100644 --- a/addons/hr_expense/i18n/lt.po +++ b/addons/hr_expense/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/lv.po b/addons/hr_expense/i18n/lv.po index 50e0cbfbd15..9c2d8fb6515 100644 --- a/addons/hr_expense/i18n/lv.po +++ b/addons/hr_expense/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/mk.po b/addons/hr_expense/i18n/mk.po index e1ac4e79c16..502ee97c65b 100644 --- a/addons/hr_expense/i18n/mk.po +++ b/addons/hr_expense/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/mn.po b/addons/hr_expense/i18n/mn.po index 31ade500519..6e565349548 100644 --- a/addons/hr_expense/i18n/mn.po +++ b/addons/hr_expense/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/nb.po b/addons/hr_expense/i18n/nb.po index 81c55f16744..167d9ab40cd 100644 --- a/addons/hr_expense/i18n/nb.po +++ b/addons/hr_expense/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/nl.po b/addons/hr_expense/i18n/nl.po index 8c07820557b..c71abd779ed 100644 --- a/addons/hr_expense/i18n/nl.po +++ b/addons/hr_expense/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-29 11:57+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-30 04:58+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/nl_BE.po b/addons/hr_expense/i18n/nl_BE.po index b3da250eef5..11889b214b5 100644 --- a/addons/hr_expense/i18n/nl_BE.po +++ b/addons/hr_expense/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/pl.po b/addons/hr_expense/i18n/pl.po index d6c29e36131..8073ca3f198 100644 --- a/addons/hr_expense/i18n/pl.po +++ b/addons/hr_expense/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/pt.po b/addons/hr_expense/i18n/pt.po index fcce45e4005..b69045d0e65 100644 --- a/addons/hr_expense/i18n/pt.po +++ b/addons/hr_expense/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/pt_BR.po b/addons/hr_expense/i18n/pt_BR.po index a0665afa3d1..97982464bba 100644 --- a/addons/hr_expense/i18n/pt_BR.po +++ b/addons/hr_expense/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 19:45+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ro.po b/addons/hr_expense/i18n/ro.po index 7410aff66d2..0093a050fe8 100644 --- a/addons/hr_expense/i18n/ro.po +++ b/addons/hr_expense/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:57+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ru.po b/addons/hr_expense/i18n/ru.po index ae5ae8a300b..1e09ad3f262 100644 --- a/addons/hr_expense/i18n/ru.po +++ b/addons/hr_expense/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sl.po b/addons/hr_expense/i18n/sl.po index 68ce5b63cf1..f84493e22ce 100644 --- a/addons/hr_expense/i18n/sl.po +++ b/addons/hr_expense/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sq.po b/addons/hr_expense/i18n/sq.po index 0fbaaa7493d..119946d92a5 100644 --- a/addons/hr_expense/i18n/sq.po +++ b/addons/hr_expense/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:00+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sr.po b/addons/hr_expense/i18n/sr.po index c02c7d118cc..cf3909f2640 100644 --- a/addons/hr_expense/i18n/sr.po +++ b/addons/hr_expense/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sr@latin.po b/addons/hr_expense/i18n/sr@latin.po index e7822d8a1b5..47946fe36f8 100644 --- a/addons/hr_expense/i18n/sr@latin.po +++ b/addons/hr_expense/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sv.po b/addons/hr_expense/i18n/sv.po index 5962dc07a3c..4236a8e654b 100644 --- a/addons/hr_expense/i18n/sv.po +++ b/addons/hr_expense/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/th.po b/addons/hr_expense/i18n/th.po index 303453da438..80798065117 100644 --- a/addons/hr_expense/i18n/th.po +++ b/addons/hr_expense/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/tlh.po b/addons/hr_expense/i18n/tlh.po index cdd287e1011..7f09f18c690 100644 --- a/addons/hr_expense/i18n/tlh.po +++ b/addons/hr_expense/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/tr.po b/addons/hr_expense/i18n/tr.po index a79ac9254fb..0bf740bf551 100644 --- a/addons/hr_expense/i18n/tr.po +++ b/addons/hr_expense/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/uk.po b/addons/hr_expense/i18n/uk.po index e014ce97799..688361f1e79 100644 --- a/addons/hr_expense/i18n/uk.po +++ b/addons/hr_expense/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/vi.po b/addons/hr_expense/i18n/vi.po index 3dfa4eae2a1..1afc1c49b98 100644 --- a/addons/hr_expense/i18n/vi.po +++ b/addons/hr_expense/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/zh_CN.po b/addons/hr_expense/i18n/zh_CN.po index 2a9093a5dec..32ac9ab98e1 100644 --- a/addons/hr_expense/i18n/zh_CN.po +++ b/addons/hr_expense/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/zh_TW.po b/addons/hr_expense/i18n/zh_TW.po index 6837ebdfa50..862b1bb0386 100644 --- a/addons/hr_expense/i18n/zh_TW.po +++ b/addons/hr_expense/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:11+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_holidays/i18n/ar.po b/addons/hr_holidays/i18n/ar.po index 40fbe8faab6..f33adf56fe0 100644 --- a/addons/hr_holidays/i18n/ar.po +++ b/addons/hr_holidays/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/bg.po b/addons/hr_holidays/i18n/bg.po index 4efa5e95e3d..7c40e442f90 100644 --- a/addons/hr_holidays/i18n/bg.po +++ b/addons/hr_holidays/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/bs.po b/addons/hr_holidays/i18n/bs.po index ca203366ba2..2c13dd4150f 100644 --- a/addons/hr_holidays/i18n/bs.po +++ b/addons/hr_holidays/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/ca.po b/addons/hr_holidays/i18n/ca.po index 3d5c79e5ba6..81bf2c8a623 100644 --- a/addons/hr_holidays/i18n/ca.po +++ b/addons/hr_holidays/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/cs.po b/addons/hr_holidays/i18n/cs.po index 5f0194fb9c3..f58846f4c22 100644 --- a/addons/hr_holidays/i18n/cs.po +++ b/addons/hr_holidays/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/da.po b/addons/hr_holidays/i18n/da.po index c17e518541a..22ab8378345 100644 --- a/addons/hr_holidays/i18n/da.po +++ b/addons/hr_holidays/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/de.po b/addons/hr_holidays/i18n/de.po index a48e97b640c..f413abea3af 100644 --- a/addons/hr_holidays/i18n/de.po +++ b/addons/hr_holidays/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/el.po b/addons/hr_holidays/i18n/el.po index 69a75ff9e62..0d6085719c0 100644 --- a/addons/hr_holidays/i18n/el.po +++ b/addons/hr_holidays/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/es.po b/addons/hr_holidays/i18n/es.po index e9b5d9476b8..f849684e10a 100644 --- a/addons/hr_holidays/i18n/es.po +++ b/addons/hr_holidays/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/es_AR.po b/addons/hr_holidays/i18n/es_AR.po index 591f3a65f83..ca5df705309 100644 --- a/addons/hr_holidays/i18n/es_AR.po +++ b/addons/hr_holidays/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/es_CR.po b/addons/hr_holidays/i18n/es_CR.po index dbae35b2404..66ff4d33819 100644 --- a/addons/hr_holidays/i18n/es_CR.po +++ b/addons/hr_holidays/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/es_EC.po b/addons/hr_holidays/i18n/es_EC.po index 4e1189d13d4..d3890a7bdbe 100644 --- a/addons/hr_holidays/i18n/es_EC.po +++ b/addons/hr_holidays/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/et.po b/addons/hr_holidays/i18n/et.po index 80551a79a23..b6ea29bc462 100644 --- a/addons/hr_holidays/i18n/et.po +++ b/addons/hr_holidays/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/fi.po b/addons/hr_holidays/i18n/fi.po index 9fae357ce46..310c10091fa 100644 --- a/addons/hr_holidays/i18n/fi.po +++ b/addons/hr_holidays/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/fr.po b/addons/hr_holidays/i18n/fr.po index 70f88ca631d..5353e24a278 100644 --- a/addons/hr_holidays/i18n/fr.po +++ b/addons/hr_holidays/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/gu.po b/addons/hr_holidays/i18n/gu.po index 60c870f67d5..c0de5819ce1 100644 --- a/addons/hr_holidays/i18n/gu.po +++ b/addons/hr_holidays/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/hi.po b/addons/hr_holidays/i18n/hi.po index 0adf480504e..657b8f7bd6a 100644 --- a/addons/hr_holidays/i18n/hi.po +++ b/addons/hr_holidays/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/hr.po b/addons/hr_holidays/i18n/hr.po index 5af7a299118..a6e9798fb0f 100644 --- a/addons/hr_holidays/i18n/hr.po +++ b/addons/hr_holidays/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-26 05:54+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/hu.po b/addons/hr_holidays/i18n/hu.po index 1c045ed9a3d..2412a238839 100644 --- a/addons/hr_holidays/i18n/hu.po +++ b/addons/hr_holidays/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/id.po b/addons/hr_holidays/i18n/id.po index c0f0065626c..1fcfdb55b7b 100644 --- a/addons/hr_holidays/i18n/id.po +++ b/addons/hr_holidays/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/it.po b/addons/hr_holidays/i18n/it.po index a28c929e95b..39b9ce669c3 100644 --- a/addons/hr_holidays/i18n/it.po +++ b/addons/hr_holidays/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/ja.po b/addons/hr_holidays/i18n/ja.po index 75e33a289d9..8029537af47 100644 --- a/addons/hr_holidays/i18n/ja.po +++ b/addons/hr_holidays/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-08 06:25+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/ko.po b/addons/hr_holidays/i18n/ko.po index d9bbe2017bf..86bf66ef0c8 100644 --- a/addons/hr_holidays/i18n/ko.po +++ b/addons/hr_holidays/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/lt.po b/addons/hr_holidays/i18n/lt.po index a8909fea94a..ac2b3b2dbb3 100644 --- a/addons/hr_holidays/i18n/lt.po +++ b/addons/hr_holidays/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/lv.po b/addons/hr_holidays/i18n/lv.po index 22b4cc89efe..41d63466ddc 100644 --- a/addons/hr_holidays/i18n/lv.po +++ b/addons/hr_holidays/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/mk.po b/addons/hr_holidays/i18n/mk.po index 7d3e971d203..2ded7ca9a6d 100644 --- a/addons/hr_holidays/i18n/mk.po +++ b/addons/hr_holidays/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/mn.po b/addons/hr_holidays/i18n/mn.po index c2f32d87f56..e2268eb2d95 100644 --- a/addons/hr_holidays/i18n/mn.po +++ b/addons/hr_holidays/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/nb.po b/addons/hr_holidays/i18n/nb.po index 1b39011052f..a9ebecd3c3c 100644 --- a/addons/hr_holidays/i18n/nb.po +++ b/addons/hr_holidays/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/nl.po b/addons/hr_holidays/i18n/nl.po index 3d442a32654..aae2117b402 100644 --- a/addons/hr_holidays/i18n/nl.po +++ b/addons/hr_holidays/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-08 11:58+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/nl_BE.po b/addons/hr_holidays/i18n/nl_BE.po index 7c492c8c3a2..02bbd236bac 100644 --- a/addons/hr_holidays/i18n/nl_BE.po +++ b/addons/hr_holidays/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/pl.po b/addons/hr_holidays/i18n/pl.po index 6e701facbf2..ea162ee150b 100644 --- a/addons/hr_holidays/i18n/pl.po +++ b/addons/hr_holidays/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/pt.po b/addons/hr_holidays/i18n/pt.po index 493746f6b41..9ddeba92841 100644 --- a/addons/hr_holidays/i18n/pt.po +++ b/addons/hr_holidays/i18n/pt.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/pt_BR.po b/addons/hr_holidays/i18n/pt_BR.po index d43920883ce..73a4890c378 100644 --- a/addons/hr_holidays/i18n/pt_BR.po +++ b/addons/hr_holidays/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 19:53+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/ro.po b/addons/hr_holidays/i18n/ro.po index f7c5b52ba5c..0cc09c1ddf8 100644 --- a/addons/hr_holidays/i18n/ro.po +++ b/addons/hr_holidays/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 18:59+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/ru.po b/addons/hr_holidays/i18n/ru.po index 61f8b154109..129d3d41c7c 100644 --- a/addons/hr_holidays/i18n/ru.po +++ b/addons/hr_holidays/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sl.po b/addons/hr_holidays/i18n/sl.po index 7a55a5c4e7a..635ccd28cbe 100644 --- a/addons/hr_holidays/i18n/sl.po +++ b/addons/hr_holidays/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sq.po b/addons/hr_holidays/i18n/sq.po index 6a7972e4bab..80bdb9243c7 100644 --- a/addons/hr_holidays/i18n/sq.po +++ b/addons/hr_holidays/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sr.po b/addons/hr_holidays/i18n/sr.po index feaeb1d7917..131bb0d065e 100644 --- a/addons/hr_holidays/i18n/sr.po +++ b/addons/hr_holidays/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sr@latin.po b/addons/hr_holidays/i18n/sr@latin.po index 171382a23e4..2c2512db8a1 100644 --- a/addons/hr_holidays/i18n/sr@latin.po +++ b/addons/hr_holidays/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sv.po b/addons/hr_holidays/i18n/sv.po index cdd79cc66e7..9efe633bb5b 100644 --- a/addons/hr_holidays/i18n/sv.po +++ b/addons/hr_holidays/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/th.po b/addons/hr_holidays/i18n/th.po index 4d72438efe8..228bdd031c1 100644 --- a/addons/hr_holidays/i18n/th.po +++ b/addons/hr_holidays/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/tlh.po b/addons/hr_holidays/i18n/tlh.po index ed83f213164..c8947c6e865 100644 --- a/addons/hr_holidays/i18n/tlh.po +++ b/addons/hr_holidays/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/tr.po b/addons/hr_holidays/i18n/tr.po index bc14e73e6be..23d6606fe1e 100644 --- a/addons/hr_holidays/i18n/tr.po +++ b/addons/hr_holidays/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/uk.po b/addons/hr_holidays/i18n/uk.po index dd0637b511c..2abfffcef75 100644 --- a/addons/hr_holidays/i18n/uk.po +++ b/addons/hr_holidays/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/vi.po b/addons/hr_holidays/i18n/vi.po index 9af2d8d54e5..470ab5831d7 100644 --- a/addons/hr_holidays/i18n/vi.po +++ b/addons/hr_holidays/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/zh_CN.po b/addons/hr_holidays/i18n/zh_CN.po index d77b84f4986..d2b543e47b4 100644 --- a/addons/hr_holidays/i18n/zh_CN.po +++ b/addons/hr_holidays/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/zh_TW.po b/addons/hr_holidays/i18n/zh_TW.po index f463ffd9390..2347c0022ac 100644 --- a/addons/hr_holidays/i18n/zh_TW.po +++ b/addons/hr_holidays/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_payroll/i18n/ar.po b/addons/hr_payroll/i18n/ar.po index 39299c83790..2fd868fb70f 100644 --- a/addons/hr_payroll/i18n/ar.po +++ b/addons/hr_payroll/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/bg.po b/addons/hr_payroll/i18n/bg.po index e0481d60b71..401935ed9bf 100644 --- a/addons/hr_payroll/i18n/bg.po +++ b/addons/hr_payroll/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/ca.po b/addons/hr_payroll/i18n/ca.po index 8b9fdf68f3f..7c8ea28ac2e 100644 --- a/addons/hr_payroll/i18n/ca.po +++ b/addons/hr_payroll/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/cs.po b/addons/hr_payroll/i18n/cs.po index 29ba0fdc3f5..d931026bb98 100644 --- a/addons/hr_payroll/i18n/cs.po +++ b/addons/hr_payroll/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:01+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/da.po b/addons/hr_payroll/i18n/da.po index 32df180f199..7fae8306540 100644 --- a/addons/hr_payroll/i18n/da.po +++ b/addons/hr_payroll/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-13 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/de.po b/addons/hr_payroll/i18n/de.po index a1206b4d116..59ab4bfc53f 100644 --- a/addons/hr_payroll/i18n/de.po +++ b/addons/hr_payroll/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/en_GB.po b/addons/hr_payroll/i18n/en_GB.po index 2abb1e04030..fa5b681e391 100644 --- a/addons/hr_payroll/i18n/en_GB.po +++ b/addons/hr_payroll/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/es.po b/addons/hr_payroll/i18n/es.po index 6bcf2005b87..20910f834a4 100644 --- a/addons/hr_payroll/i18n/es.po +++ b/addons/hr_payroll/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/es_CR.po b/addons/hr_payroll/i18n/es_CR.po index c76d3ab3833..c1089287beb 100644 --- a/addons/hr_payroll/i18n/es_CR.po +++ b/addons/hr_payroll/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/es_EC.po b/addons/hr_payroll/i18n/es_EC.po index 457a9a204f2..213a4821b08 100644 --- a/addons/hr_payroll/i18n/es_EC.po +++ b/addons/hr_payroll/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/es_MX.po b/addons/hr_payroll/i18n/es_MX.po index 024636fca33..2b1355c3c7b 100644 --- a/addons/hr_payroll/i18n/es_MX.po +++ b/addons/hr_payroll/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/et.po b/addons/hr_payroll/i18n/et.po index d3ec1a1d053..949d3caeb61 100644 --- a/addons/hr_payroll/i18n/et.po +++ b/addons/hr_payroll/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/fi.po b/addons/hr_payroll/i18n/fi.po index 4dd632a0875..7c39ac30c40 100644 --- a/addons/hr_payroll/i18n/fi.po +++ b/addons/hr_payroll/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/fr.po b/addons/hr_payroll/i18n/fr.po index 0d257a7394e..d6eb0be91e2 100644 --- a/addons/hr_payroll/i18n/fr.po +++ b/addons/hr_payroll/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/gl.po b/addons/hr_payroll/i18n/gl.po index 9ab1c7d810a..629c245fcef 100644 --- a/addons/hr_payroll/i18n/gl.po +++ b/addons/hr_payroll/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/gu.po b/addons/hr_payroll/i18n/gu.po index 0e63dcd7c16..07711d2082b 100644 --- a/addons/hr_payroll/i18n/gu.po +++ b/addons/hr_payroll/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/he.po b/addons/hr_payroll/i18n/he.po index 7d656984ef3..1663af403be 100644 --- a/addons/hr_payroll/i18n/he.po +++ b/addons/hr_payroll/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/hr.po b/addons/hr_payroll/i18n/hr.po index d2b4e9bdd5c..3f069ed23e8 100644 --- a/addons/hr_payroll/i18n/hr.po +++ b/addons/hr_payroll/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/hu.po b/addons/hr_payroll/i18n/hu.po index ba88a96d8f0..e23e4b31c2c 100644 --- a/addons/hr_payroll/i18n/hu.po +++ b/addons/hr_payroll/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/id.po b/addons/hr_payroll/i18n/id.po index e86629626cd..15ae2948a41 100644 --- a/addons/hr_payroll/i18n/id.po +++ b/addons/hr_payroll/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-28 05:37+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/it.po b/addons/hr_payroll/i18n/it.po index 6202df9cc64..cff73f26608 100644 --- a/addons/hr_payroll/i18n/it.po +++ b/addons/hr_payroll/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/ja.po b/addons/hr_payroll/i18n/ja.po index d78b8f4a26b..21b39ec45bc 100644 --- a/addons/hr_payroll/i18n/ja.po +++ b/addons/hr_payroll/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/lo.po b/addons/hr_payroll/i18n/lo.po index 7d7645d03e8..0752008e9d4 100644 --- a/addons/hr_payroll/i18n/lo.po +++ b/addons/hr_payroll/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/lt.po b/addons/hr_payroll/i18n/lt.po index 3caad4a618f..03eea8afc7a 100644 --- a/addons/hr_payroll/i18n/lt.po +++ b/addons/hr_payroll/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/lv.po b/addons/hr_payroll/i18n/lv.po index 05bb99c09ef..48c3882bb31 100644 --- a/addons/hr_payroll/i18n/lv.po +++ b/addons/hr_payroll/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/mk.po b/addons/hr_payroll/i18n/mk.po index 56a51903556..8242c075029 100644 --- a/addons/hr_payroll/i18n/mk.po +++ b/addons/hr_payroll/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/mn.po b/addons/hr_payroll/i18n/mn.po index e05e8b23bb3..0505a663c91 100644 --- a/addons/hr_payroll/i18n/mn.po +++ b/addons/hr_payroll/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/nb.po b/addons/hr_payroll/i18n/nb.po index af03e1be362..d8d30bf375e 100644 --- a/addons/hr_payroll/i18n/nb.po +++ b/addons/hr_payroll/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/nl.po b/addons/hr_payroll/i18n/nl.po index 6467afa6190..09876788c5a 100644 --- a/addons/hr_payroll/i18n/nl.po +++ b/addons/hr_payroll/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:22+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/pl.po b/addons/hr_payroll/i18n/pl.po index 399a1199d19..8d365c4ea17 100644 --- a/addons/hr_payroll/i18n/pl.po +++ b/addons/hr_payroll/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/pt.po b/addons/hr_payroll/i18n/pt.po index 46c19eeffab..f964aa2bf22 100644 --- a/addons/hr_payroll/i18n/pt.po +++ b/addons/hr_payroll/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/pt_BR.po b/addons/hr_payroll/i18n/pt_BR.po index e1fef626a8d..3e30b7c3091 100644 --- a/addons/hr_payroll/i18n/pt_BR.po +++ b/addons/hr_payroll/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 19:43+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/ro.po b/addons/hr_payroll/i18n/ro.po index 8756b68648f..e5afd56e3ac 100644 --- a/addons/hr_payroll/i18n/ro.po +++ b/addons/hr_payroll/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 19:00+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/ru.po b/addons/hr_payroll/i18n/ru.po index da3587f5f48..81a7b3eb544 100644 --- a/addons/hr_payroll/i18n/ru.po +++ b/addons/hr_payroll/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/sl.po b/addons/hr_payroll/i18n/sl.po index 57f2959d31e..86c72c19645 100644 --- a/addons/hr_payroll/i18n/sl.po +++ b/addons/hr_payroll/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-01-05 17:09+0000\n" -"Last-Translator: Dušan Laznik (Mentis) \n" +"PO-Revision-Date: 2013-11-20 22:05+0000\n" +"Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -85,7 +85,7 @@ msgstr "" #: field:hr.payslip.run,slip_ids:0 #: model:ir.actions.act_window,name:hr_payroll.act_hr_employee_payslip_list msgid "Payslips" -msgstr "" +msgstr "Plačilne kuverte" #. module: hr_payroll #: field:hr.payroll.structure,parent_id:0 @@ -123,14 +123,14 @@ msgstr "hr.salary.rule" #: view:hr.payslip:0 #: view:hr.payslip.run:0 msgid "to" -msgstr "" +msgstr "do" #. module: hr_payroll #: field:hr.payslip,payslip_run_id:0 #: view:hr.payslip.run:0 #: model:ir.model,name:hr_payroll.model_hr_payslip_run msgid "Payslip Batches" -msgstr "" +msgstr "Paketi plačilnih kuvert" #. module: hr_payroll #: view:hr.payslip.employees:0 @@ -158,7 +158,7 @@ msgstr "Definicija podrejenega elementa" #: model:ir.model,name:hr_payroll.model_hr_payslip #: report:payslip:0 msgid "Pay Slip" -msgstr "" +msgstr "Plačilna kuverta" #. module: hr_payroll #: view:hr.payslip.employees:0 @@ -179,7 +179,7 @@ msgstr "Skupaj:" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.act_children_salary_rules msgid "All Children Rules" -msgstr "" +msgstr "Vsa podrejena pravila" #. module: hr_payroll #: view:hr.payslip:0 @@ -190,7 +190,7 @@ msgstr "" #. module: hr_payroll #: constraint:hr.payslip:0 msgid "Payslip 'Date From' must be before 'Date To'." -msgstr "" +msgstr "Datum plačilne kuverte 'Datum od' mora biti pred 'Datum do'." #. module: hr_payroll #: view:hr.salary.rule.category:0 @@ -221,7 +221,7 @@ msgstr "Znesek" #: view:hr.payslip.line:0 #: model:ir.model,name:hr_payroll.model_hr_payslip_line msgid "Payslip Line" -msgstr "" +msgstr "Vrstica plačilne kuverte" #. module: hr_payroll #: view:hr.payslip:0 @@ -231,7 +231,7 @@ msgstr "Ostale podrobnosti" #. module: hr_payroll #: field:hr.config.settings,module_hr_payroll_account:0 msgid "Link your payroll to accounting system" -msgstr "" +msgstr "Povezava osebnih dohodkov z računovodskim sistemom" #. module: hr_payroll #: help:hr.payslip.line,amount_select:0 @@ -373,7 +373,7 @@ msgstr "" #. module: hr_payroll #: view:hr.payslip.employees:0 msgid "Payslips by Employees" -msgstr "" +msgstr "Plačilne kuverte po zaposlenih" #. module: hr_payroll #: selection:hr.contract,schedule_pay:0 @@ -497,7 +497,7 @@ msgstr "Zaključeno" #: field:hr.payslip.line,appears_on_payslip:0 #: field:hr.salary.rule,appears_on_payslip:0 msgid "Appears on Payslip" -msgstr "" +msgstr "Se izpiše na plačilni kuverti" #. module: hr_payroll #: field:hr.payslip.line,amount_fix:0 @@ -540,7 +540,7 @@ msgstr "" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_payslip_lines_contribution_register msgid "PaySlip Lines" -msgstr "" +msgstr "Vrstice plačilne kuverte" #. module: hr_payroll #: help:hr.payslip.line,register_id:0 @@ -600,7 +600,7 @@ msgstr "" #. module: hr_payroll #: view:hr.payslip:0 msgid "Payslip" -msgstr "" +msgstr "Plačilna kuverta" #. module: hr_payroll #: field:hr.payslip,credit_note:0 @@ -612,7 +612,7 @@ msgstr "Dobropis" #: view:hr.payslip:0 #: model:ir.actions.act_window,name:hr_payroll.act_payslip_lines msgid "Payslip Computation Details" -msgstr "" +msgstr "Pordrobnosti izračuna plačilne kuverte" #. module: hr_payroll #: help:hr.payslip.line,appears_on_payslip:0 @@ -703,7 +703,7 @@ msgstr "" #. module: hr_payroll #: view:hr.payslip.run:0 msgid "Draft Payslip Batches" -msgstr "" +msgstr "Osnutki plačilnih kuvert" #. module: hr_payroll #: view:hr.payslip:0 @@ -726,7 +726,7 @@ msgstr "" #. module: hr_payroll #: view:hr.payslip.run:0 msgid "Done Payslip Batches" -msgstr "" +msgstr "Gotove plačilne kuverte" #. module: hr_payroll #: report:paylip.details:0 @@ -765,7 +765,7 @@ msgstr "" #. module: hr_payroll #: model:ir.actions.report.xml,name:hr_payroll.payslip_report msgid "Employee PaySlip" -msgstr "" +msgstr "Plačilna kuverta zaposlenega" #. module: hr_payroll #: field:hr.payslip.line,salary_rule_id:0 @@ -775,7 +775,7 @@ msgstr "Pravilo" #. module: hr_payroll #: model:ir.actions.report.xml,name:hr_payroll.payslip_details_report msgid "PaySlip Details" -msgstr "" +msgstr "Podrobnosti plačilne kuverte" #. module: hr_payroll #: view:hr.payslip:0 @@ -835,7 +835,7 @@ msgstr "Pogodba" #: code:addons/hr_payroll/wizard/hr_payroll_payslips_by_employees.py:52 #, python-format msgid "You must select employee(s) to generate payslip(s)." -msgstr "" +msgstr "Za pripravo kuvert(e) morate izbrati zaposlene(ga)." #. module: hr_payroll #: report:paylip.details:0 @@ -985,13 +985,13 @@ msgstr "" #. module: hr_payroll #: report:paylip.details:0 msgid "Pay Slip Details" -msgstr "" +msgstr "Podrobnosti plačilne kuverte" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_view_hr_payslip_form #: model:ir.ui.menu,name:hr_payroll.menu_department_tree msgid "Employee Payslips" -msgstr "" +msgstr "Plačilne kuverte zaposlenih" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_config_settings @@ -1024,14 +1024,14 @@ msgstr "" #. module: hr_payroll #: view:hr.payslip:0 msgid "Search Payslips" -msgstr "" +msgstr "Iskanje plačilnih kuvert" #. module: hr_payroll #: view:hr.payslip.run:0 #: model:ir.actions.act_window,name:hr_payroll.action_hr_payslip_run_tree #: model:ir.ui.menu,name:hr_payroll.menu_hr_payslip_run msgid "Payslips Batches" -msgstr "" +msgstr "Paketi plačilnih kuvert" #. module: hr_payroll #: view:hr.contribution.register:0 diff --git a/addons/hr_payroll/i18n/sr.po b/addons/hr_payroll/i18n/sr.po index d970736e911..c4ec44355b2 100644 --- a/addons/hr_payroll/i18n/sr.po +++ b/addons/hr_payroll/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/sr@latin.po b/addons/hr_payroll/i18n/sr@latin.po index 41410f4f8e1..6bb5bec4017 100644 --- a/addons/hr_payroll/i18n/sr@latin.po +++ b/addons/hr_payroll/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/sv.po b/addons/hr_payroll/i18n/sv.po index a716ae4bb1c..ca0bf75c7a5 100644 --- a/addons/hr_payroll/i18n/sv.po +++ b/addons/hr_payroll/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/tr.po b/addons/hr_payroll/i18n/tr.po index 19db3bb6917..debb3cdc601 100644 --- a/addons/hr_payroll/i18n/tr.po +++ b/addons/hr_payroll/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-11 04:59+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/vi.po b/addons/hr_payroll/i18n/vi.po index 694ef3ace67..44070ef02eb 100644 --- a/addons/hr_payroll/i18n/vi.po +++ b/addons/hr_payroll/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/zh_CN.po b/addons/hr_payroll/i18n/zh_CN.po index 9d88a7323a2..b3bbf85cb0d 100644 --- a/addons/hr_payroll/i18n/zh_CN.po +++ b/addons/hr_payroll/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-24 13:50+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-25 05:44+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/zh_TW.po b/addons/hr_payroll/i18n/zh_TW.po index d33331b7f93..848ebfce6c1 100644 --- a/addons/hr_payroll/i18n/zh_TW.po +++ b/addons/hr_payroll/i18n/zh_TW.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll diff --git a/addons/hr_payroll_account/i18n/ar.po b/addons/hr_payroll_account/i18n/ar.po index ee3672357af..929cea338b3 100644 --- a/addons/hr_payroll_account/i18n/ar.po +++ b/addons/hr_payroll_account/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/bg.po b/addons/hr_payroll_account/i18n/bg.po index 3f0422106c6..c34b0b14235 100644 --- a/addons/hr_payroll_account/i18n/bg.po +++ b/addons/hr_payroll_account/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/ca.po b/addons/hr_payroll_account/i18n/ca.po index 7a6a961dcf0..6dc0793512c 100644 --- a/addons/hr_payroll_account/i18n/ca.po +++ b/addons/hr_payroll_account/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/cs.po b/addons/hr_payroll_account/i18n/cs.po index 7a2aeceb561..2677fcb26fc 100644 --- a/addons/hr_payroll_account/i18n/cs.po +++ b/addons/hr_payroll_account/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/da.po b/addons/hr_payroll_account/i18n/da.po index e3e5f314c4a..eca7751e07c 100644 --- a/addons/hr_payroll_account/i18n/da.po +++ b/addons/hr_payroll_account/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/de.po b/addons/hr_payroll_account/i18n/de.po index 9dc0d1117f4..202f23225b8 100644 --- a/addons/hr_payroll_account/i18n/de.po +++ b/addons/hr_payroll_account/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/en_GB.po b/addons/hr_payroll_account/i18n/en_GB.po index 6354ec59950..68595ab161c 100644 --- a/addons/hr_payroll_account/i18n/en_GB.po +++ b/addons/hr_payroll_account/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/es.po b/addons/hr_payroll_account/i18n/es.po index 8e49909591e..ae15bd654a2 100644 --- a/addons/hr_payroll_account/i18n/es.po +++ b/addons/hr_payroll_account/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/es_CR.po b/addons/hr_payroll_account/i18n/es_CR.po index 803796cd4a9..d959cbcf50a 100644 --- a/addons/hr_payroll_account/i18n/es_CR.po +++ b/addons/hr_payroll_account/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/es_EC.po b/addons/hr_payroll_account/i18n/es_EC.po index a8f59ce039a..f0c50c1f0af 100644 --- a/addons/hr_payroll_account/i18n/es_EC.po +++ b/addons/hr_payroll_account/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/es_PY.po b/addons/hr_payroll_account/i18n/es_PY.po index 0b4cdf06fff..3d77eaa9c88 100644 --- a/addons/hr_payroll_account/i18n/es_PY.po +++ b/addons/hr_payroll_account/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/fr.po b/addons/hr_payroll_account/i18n/fr.po index b129a7e7ef9..cae41784168 100644 --- a/addons/hr_payroll_account/i18n/fr.po +++ b/addons/hr_payroll_account/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/gl.po b/addons/hr_payroll_account/i18n/gl.po index d554d30fcce..17e1ce47c10 100644 --- a/addons/hr_payroll_account/i18n/gl.po +++ b/addons/hr_payroll_account/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/gu.po b/addons/hr_payroll_account/i18n/gu.po index fa56eb8cdab..163edb30dde 100644 --- a/addons/hr_payroll_account/i18n/gu.po +++ b/addons/hr_payroll_account/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/hr.po b/addons/hr_payroll_account/i18n/hr.po index 7c99a4e09d3..a491b101a5e 100644 --- a/addons/hr_payroll_account/i18n/hr.po +++ b/addons/hr_payroll_account/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/hu.po b/addons/hr_payroll_account/i18n/hu.po index 79f1ff5c9a6..36913110d8c 100644 --- a/addons/hr_payroll_account/i18n/hu.po +++ b/addons/hr_payroll_account/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/id.po b/addons/hr_payroll_account/i18n/id.po index 2901dafdc3c..7cb9d852d27 100644 --- a/addons/hr_payroll_account/i18n/id.po +++ b/addons/hr_payroll_account/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/it.po b/addons/hr_payroll_account/i18n/it.po index c4c1e6aa48e..95e973c4d0b 100644 --- a/addons/hr_payroll_account/i18n/it.po +++ b/addons/hr_payroll_account/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/ja.po b/addons/hr_payroll_account/i18n/ja.po index 954a82c8d66..9e0b96b26bb 100644 --- a/addons/hr_payroll_account/i18n/ja.po +++ b/addons/hr_payroll_account/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/lt.po b/addons/hr_payroll_account/i18n/lt.po index ddc8713bfab..5b0bca3c911 100644 --- a/addons/hr_payroll_account/i18n/lt.po +++ b/addons/hr_payroll_account/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/lv.po b/addons/hr_payroll_account/i18n/lv.po index 1506ae41657..ac0af3a65a4 100644 --- a/addons/hr_payroll_account/i18n/lv.po +++ b/addons/hr_payroll_account/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/mk.po b/addons/hr_payroll_account/i18n/mk.po index 8c983af7a66..f0ee202e63c 100644 --- a/addons/hr_payroll_account/i18n/mk.po +++ b/addons/hr_payroll_account/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/mn.po b/addons/hr_payroll_account/i18n/mn.po index 022d09d12b8..9441eb0277f 100644 --- a/addons/hr_payroll_account/i18n/mn.po +++ b/addons/hr_payroll_account/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/nb.po b/addons/hr_payroll_account/i18n/nb.po index 38357aca8e6..dbe1fe6cd6a 100644 --- a/addons/hr_payroll_account/i18n/nb.po +++ b/addons/hr_payroll_account/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/nl.po b/addons/hr_payroll_account/i18n/nl.po index d01003fc0a4..7690c82ef88 100644 --- a/addons/hr_payroll_account/i18n/nl.po +++ b/addons/hr_payroll_account/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:22+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/pl.po b/addons/hr_payroll_account/i18n/pl.po index 3427d238231..0e872d9c4ee 100644 --- a/addons/hr_payroll_account/i18n/pl.po +++ b/addons/hr_payroll_account/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/pt.po b/addons/hr_payroll_account/i18n/pt.po index cf0035c2a91..557ebf99218 100644 --- a/addons/hr_payroll_account/i18n/pt.po +++ b/addons/hr_payroll_account/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/pt_BR.po b/addons/hr_payroll_account/i18n/pt_BR.po index 4ad97f09ab0..12e188c1f26 100644 --- a/addons/hr_payroll_account/i18n/pt_BR.po +++ b/addons/hr_payroll_account/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/ro.po b/addons/hr_payroll_account/i18n/ro.po index 7257bebde39..420f0eb3c1a 100644 --- a/addons/hr_payroll_account/i18n/ro.po +++ b/addons/hr_payroll_account/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-25 16:14+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/ru.po b/addons/hr_payroll_account/i18n/ru.po index fe4ad1c4c78..510a8058caf 100644 --- a/addons/hr_payroll_account/i18n/ru.po +++ b/addons/hr_payroll_account/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/sl.po b/addons/hr_payroll_account/i18n/sl.po index 5544d64bffa..6e6f7d9c5ac 100644 --- a/addons/hr_payroll_account/i18n/sl.po +++ b/addons/hr_payroll_account/i18n/sl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-15 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/sr@latin.po b/addons/hr_payroll_account/i18n/sr@latin.po index 628b35fbc57..ed6a5149820 100644 --- a/addons/hr_payroll_account/i18n/sr@latin.po +++ b/addons/hr_payroll_account/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/sv.po b/addons/hr_payroll_account/i18n/sv.po index a82dffbdab5..419ec16d1f4 100644 --- a/addons/hr_payroll_account/i18n/sv.po +++ b/addons/hr_payroll_account/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/tr.po b/addons/hr_payroll_account/i18n/tr.po index 54fd379654c..6757912cddf 100644 --- a/addons/hr_payroll_account/i18n/tr.po +++ b/addons/hr_payroll_account/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-11 04:59+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/zh_CN.po b/addons/hr_payroll_account/i18n/zh_CN.po index 8f8064d8a7a..d51894fe492 100644 --- a/addons/hr_payroll_account/i18n/zh_CN.po +++ b/addons/hr_payroll_account/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/zh_TW.po b/addons/hr_payroll_account/i18n/zh_TW.po index 687e2696f4c..c3a42fe3f73 100644 --- a/addons/hr_payroll_account/i18n/zh_TW.po +++ b/addons/hr_payroll_account/i18n/zh_TW.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: hr_payroll_account diff --git a/addons/hr_recruitment/i18n/ar.po b/addons/hr_recruitment/i18n/ar.po index 7e41496c0b9..71ad1ae5b7c 100644 --- a/addons/hr_recruitment/i18n/ar.po +++ b/addons/hr_recruitment/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/bg.po b/addons/hr_recruitment/i18n/bg.po index ac8372d3925..9a6a73ed404 100644 --- a/addons/hr_recruitment/i18n/bg.po +++ b/addons/hr_recruitment/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/ca.po b/addons/hr_recruitment/i18n/ca.po index 9a49934570c..7657798e356 100644 --- a/addons/hr_recruitment/i18n/ca.po +++ b/addons/hr_recruitment/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/cs.po b/addons/hr_recruitment/i18n/cs.po index 4b607354f72..98d14a9e2a6 100644 --- a/addons/hr_recruitment/i18n/cs.po +++ b/addons/hr_recruitment/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/da.po b/addons/hr_recruitment/i18n/da.po index 0c70ebb9172..b06a86f3cfc 100644 --- a/addons/hr_recruitment/i18n/da.po +++ b/addons/hr_recruitment/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/de.po b/addons/hr_recruitment/i18n/de.po index 770e36a200a..8d1761b565a 100644 --- a/addons/hr_recruitment/i18n/de.po +++ b/addons/hr_recruitment/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/es.po b/addons/hr_recruitment/i18n/es.po index 7a02c9a2bcb..91ed4aa4138 100644 --- a/addons/hr_recruitment/i18n/es.po +++ b/addons/hr_recruitment/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/es_CR.po b/addons/hr_recruitment/i18n/es_CR.po index 66437988ac6..71cf233e7e5 100644 --- a/addons/hr_recruitment/i18n/es_CR.po +++ b/addons/hr_recruitment/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/fr.po b/addons/hr_recruitment/i18n/fr.po index b518ea65b55..0e4620ad37f 100644 --- a/addons/hr_recruitment/i18n/fr.po +++ b/addons/hr_recruitment/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/hi.po b/addons/hr_recruitment/i18n/hi.po index efb9f622828..9f125a2dd01 100644 --- a/addons/hr_recruitment/i18n/hi.po +++ b/addons/hr_recruitment/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/hr.po b/addons/hr_recruitment/i18n/hr.po index b4023d71845..d00aa0dc07f 100644 --- a/addons/hr_recruitment/i18n/hr.po +++ b/addons/hr_recruitment/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-02 05:37+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/hu.po b/addons/hr_recruitment/i18n/hu.po index 520154a55f6..b64b35fd214 100644 --- a/addons/hr_recruitment/i18n/hu.po +++ b/addons/hr_recruitment/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/id.po b/addons/hr_recruitment/i18n/id.po index fc65050e916..bb715e5f973 100644 --- a/addons/hr_recruitment/i18n/id.po +++ b/addons/hr_recruitment/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/it.po b/addons/hr_recruitment/i18n/it.po index 247742025d9..250ecc5f1fc 100644 --- a/addons/hr_recruitment/i18n/it.po +++ b/addons/hr_recruitment/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/ja.po b/addons/hr_recruitment/i18n/ja.po index 5afc18a4a12..063ca46843a 100644 --- a/addons/hr_recruitment/i18n/ja.po +++ b/addons/hr_recruitment/i18n/ja.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/mk.po b/addons/hr_recruitment/i18n/mk.po index a2dee26ee58..996503207d6 100644 --- a/addons/hr_recruitment/i18n/mk.po +++ b/addons/hr_recruitment/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/mn.po b/addons/hr_recruitment/i18n/mn.po index 9928dc82f3f..ec439b4cdd8 100644 --- a/addons/hr_recruitment/i18n/mn.po +++ b/addons/hr_recruitment/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/nb.po b/addons/hr_recruitment/i18n/nb.po index a16ad6e51c5..051c2265422 100644 --- a/addons/hr_recruitment/i18n/nb.po +++ b/addons/hr_recruitment/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/nl.po b/addons/hr_recruitment/i18n/nl.po index 1561fc6e483..48f8ad26568 100644 --- a/addons/hr_recruitment/i18n/nl.po +++ b/addons/hr_recruitment/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-20 12:13+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/pl.po b/addons/hr_recruitment/i18n/pl.po index f56156062f4..9a86cf7f5c3 100644 --- a/addons/hr_recruitment/i18n/pl.po +++ b/addons/hr_recruitment/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/pt.po b/addons/hr_recruitment/i18n/pt.po index 701759d1f62..011981e2c37 100644 --- a/addons/hr_recruitment/i18n/pt.po +++ b/addons/hr_recruitment/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/pt_BR.po b/addons/hr_recruitment/i18n/pt_BR.po index 7b3e9d01055..33404f315f9 100644 --- a/addons/hr_recruitment/i18n/pt_BR.po +++ b/addons/hr_recruitment/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/ro.po b/addons/hr_recruitment/i18n/ro.po index 15271f49159..a4f089ac589 100644 --- a/addons/hr_recruitment/i18n/ro.po +++ b/addons/hr_recruitment/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 19:01+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/ru.po b/addons/hr_recruitment/i18n/ru.po index 800c464a387..7e0b82ff06c 100644 --- a/addons/hr_recruitment/i18n/ru.po +++ b/addons/hr_recruitment/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/sl.po b/addons/hr_recruitment/i18n/sl.po index 66e3597be5c..b17531e8d7d 100644 --- a/addons/hr_recruitment/i18n/sl.po +++ b/addons/hr_recruitment/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/sr.po b/addons/hr_recruitment/i18n/sr.po index 0bab65e3a3d..4501268e799 100644 --- a/addons/hr_recruitment/i18n/sr.po +++ b/addons/hr_recruitment/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:02+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/sr@latin.po b/addons/hr_recruitment/i18n/sr@latin.po index 1dc901c7043..3d2b62546c5 100644 --- a/addons/hr_recruitment/i18n/sr@latin.po +++ b/addons/hr_recruitment/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/sv.po b/addons/hr_recruitment/i18n/sv.po index 884e0148258..d4b8cdef4db 100644 --- a/addons/hr_recruitment/i18n/sv.po +++ b/addons/hr_recruitment/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/th.po b/addons/hr_recruitment/i18n/th.po index 9f10d0c3b38..33bed6c9e47 100644 --- a/addons/hr_recruitment/i18n/th.po +++ b/addons/hr_recruitment/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/tr.po b/addons/hr_recruitment/i18n/tr.po index 0faaf760e45..b7983270648 100644 --- a/addons/hr_recruitment/i18n/tr.po +++ b/addons/hr_recruitment/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/vi.po b/addons/hr_recruitment/i18n/vi.po index 5adab615b2c..8dbdd1346c0 100644 --- a/addons/hr_recruitment/i18n/vi.po +++ b/addons/hr_recruitment/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/zh_CN.po b/addons/hr_recruitment/i18n/zh_CN.po index 0479664ecc8..f13da234540 100644 --- a/addons/hr_recruitment/i18n/zh_CN.po +++ b/addons/hr_recruitment/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/zh_TW.po b/addons/hr_recruitment/i18n/zh_TW.po index 5e109c1d485..33c715fc4e3 100644 --- a/addons/hr_recruitment/i18n/zh_TW.po +++ b/addons/hr_recruitment/i18n/zh_TW.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: hr_recruitment diff --git a/addons/hr_timesheet/i18n/ar.po b/addons/hr_timesheet/i18n/ar.po index 03e83335064..130eb0b8e07 100644 --- a/addons/hr_timesheet/i18n/ar.po +++ b/addons/hr_timesheet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/bg.po b/addons/hr_timesheet/i18n/bg.po index 761ae7ea2d1..5d88a1508ee 100644 --- a/addons/hr_timesheet/i18n/bg.po +++ b/addons/hr_timesheet/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/bs.po b/addons/hr_timesheet/i18n/bs.po index c721aa4332e..0f3ba393bbc 100644 --- a/addons/hr_timesheet/i18n/bs.po +++ b/addons/hr_timesheet/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ca.po b/addons/hr_timesheet/i18n/ca.po index cd271b72569..da3cb37d254 100644 --- a/addons/hr_timesheet/i18n/ca.po +++ b/addons/hr_timesheet/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/cs.po b/addons/hr_timesheet/i18n/cs.po index ca1f8ac47b2..f952cb43d96 100644 --- a/addons/hr_timesheet/i18n/cs.po +++ b/addons/hr_timesheet/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/da.po b/addons/hr_timesheet/i18n/da.po index 8c49e297187..b35a1159f15 100644 --- a/addons/hr_timesheet/i18n/da.po +++ b/addons/hr_timesheet/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/de.po b/addons/hr_timesheet/i18n/de.po index 3763d31a54a..d58e2a10cbb 100644 --- a/addons/hr_timesheet/i18n/de.po +++ b/addons/hr_timesheet/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/el.po b/addons/hr_timesheet/i18n/el.po index f1d3dff46f0..895ac363dc3 100644 --- a/addons/hr_timesheet/i18n/el.po +++ b/addons/hr_timesheet/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/en_GB.po b/addons/hr_timesheet/i18n/en_GB.po index eb2640aed32..b6d1e7a1a6c 100644 --- a/addons/hr_timesheet/i18n/en_GB.po +++ b/addons/hr_timesheet/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/es.po b/addons/hr_timesheet/i18n/es.po index 44044159433..2b0ef83adad 100644 --- a/addons/hr_timesheet/i18n/es.po +++ b/addons/hr_timesheet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/es_AR.po b/addons/hr_timesheet/i18n/es_AR.po index 34da5ceee37..a188b0dedaf 100644 --- a/addons/hr_timesheet/i18n/es_AR.po +++ b/addons/hr_timesheet/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/es_CR.po b/addons/hr_timesheet/i18n/es_CR.po index 1b9276b624e..ebb97e82f5a 100644 --- a/addons/hr_timesheet/i18n/es_CR.po +++ b/addons/hr_timesheet/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/es_EC.po b/addons/hr_timesheet/i18n/es_EC.po index db82b009d2d..0ff3fd4c016 100644 --- a/addons/hr_timesheet/i18n/es_EC.po +++ b/addons/hr_timesheet/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/et.po b/addons/hr_timesheet/i18n/et.po index 889b522d344..865b0f3076b 100644 --- a/addons/hr_timesheet/i18n/et.po +++ b/addons/hr_timesheet/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/fi.po b/addons/hr_timesheet/i18n/fi.po index ecb85809ea5..9acf2952844 100644 --- a/addons/hr_timesheet/i18n/fi.po +++ b/addons/hr_timesheet/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/fr.po b/addons/hr_timesheet/i18n/fr.po index 5e310ba550d..12f42a377be 100644 --- a/addons/hr_timesheet/i18n/fr.po +++ b/addons/hr_timesheet/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/gl.po b/addons/hr_timesheet/i18n/gl.po index 118165dab71..949f4e96dc2 100644 --- a/addons/hr_timesheet/i18n/gl.po +++ b/addons/hr_timesheet/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/hr.po b/addons/hr_timesheet/i18n/hr.po index 7750f9060ec..16cfc0344f4 100644 --- a/addons/hr_timesheet/i18n/hr.po +++ b/addons/hr_timesheet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-26 05:54+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/hu.po b/addons/hr_timesheet/i18n/hu.po index 9aaee1c9b31..4ce5c8767ab 100644 --- a/addons/hr_timesheet/i18n/hu.po +++ b/addons/hr_timesheet/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/id.po b/addons/hr_timesheet/i18n/id.po index 024cee4d35e..d7903a38f8d 100644 --- a/addons/hr_timesheet/i18n/id.po +++ b/addons/hr_timesheet/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/it.po b/addons/hr_timesheet/i18n/it.po index f0fb0ceb535..fbe918ddda2 100644 --- a/addons/hr_timesheet/i18n/it.po +++ b/addons/hr_timesheet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ja.po b/addons/hr_timesheet/i18n/ja.po index d3b4526b63b..c2f53c79729 100644 --- a/addons/hr_timesheet/i18n/ja.po +++ b/addons/hr_timesheet/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ko.po b/addons/hr_timesheet/i18n/ko.po index 2e18628d3bf..27727e1b950 100644 --- a/addons/hr_timesheet/i18n/ko.po +++ b/addons/hr_timesheet/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/lt.po b/addons/hr_timesheet/i18n/lt.po index 4d973cc69f5..2df6a1ce6bc 100644 --- a/addons/hr_timesheet/i18n/lt.po +++ b/addons/hr_timesheet/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/lv.po b/addons/hr_timesheet/i18n/lv.po index b6853dd6137..d8ae17867c2 100644 --- a/addons/hr_timesheet/i18n/lv.po +++ b/addons/hr_timesheet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/mk.po b/addons/hr_timesheet/i18n/mk.po index 9e5158d55f5..105e5e95987 100644 --- a/addons/hr_timesheet/i18n/mk.po +++ b/addons/hr_timesheet/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/mn.po b/addons/hr_timesheet/i18n/mn.po index cf23e8b46e5..efa98bb5603 100644 --- a/addons/hr_timesheet/i18n/mn.po +++ b/addons/hr_timesheet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/nb.po b/addons/hr_timesheet/i18n/nb.po index 5bf16e4bd6a..c2b344060ea 100644 --- a/addons/hr_timesheet/i18n/nb.po +++ b/addons/hr_timesheet/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/nl.po b/addons/hr_timesheet/i18n/nl.po index 292ef1e8091..d8586ae7913 100644 --- a/addons/hr_timesheet/i18n/nl.po +++ b/addons/hr_timesheet/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-14 11:33+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/pl.po b/addons/hr_timesheet/i18n/pl.po index e2fab606bb8..8a9c5739b87 100644 --- a/addons/hr_timesheet/i18n/pl.po +++ b/addons/hr_timesheet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/pt.po b/addons/hr_timesheet/i18n/pt.po index 63f418a545c..f7af4bce91d 100644 --- a/addons/hr_timesheet/i18n/pt.po +++ b/addons/hr_timesheet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/pt_BR.po b/addons/hr_timesheet/i18n/pt_BR.po index eb5de97c29b..aa3f89c1107 100644 --- a/addons/hr_timesheet/i18n/pt_BR.po +++ b/addons/hr_timesheet/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ro.po b/addons/hr_timesheet/i18n/ro.po index 46d69f61bf8..834d2323cb7 100644 --- a/addons/hr_timesheet/i18n/ro.po +++ b/addons/hr_timesheet/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-28 18:11+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ru.po b/addons/hr_timesheet/i18n/ru.po index 22cb140d785..5b4f73303f7 100644 --- a/addons/hr_timesheet/i18n/ru.po +++ b/addons/hr_timesheet/i18n/ru.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-05 09:38+0000\n" -"Last-Translator: Глория Хрусталёва \n" +"Last-Translator: Глория Хрусталёва \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/sl.po b/addons/hr_timesheet/i18n/sl.po index 8a818b1c270..c3f79258bb3 100644 --- a/addons/hr_timesheet/i18n/sl.po +++ b/addons/hr_timesheet/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:22+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/sq.po b/addons/hr_timesheet/i18n/sq.po index d6c4eac0eb7..eccc2f591e2 100644 --- a/addons/hr_timesheet/i18n/sq.po +++ b/addons/hr_timesheet/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/sr@latin.po b/addons/hr_timesheet/i18n/sr@latin.po index 249d2a82018..cb567602d08 100644 --- a/addons/hr_timesheet/i18n/sr@latin.po +++ b/addons/hr_timesheet/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/sv.po b/addons/hr_timesheet/i18n/sv.po index d980aec7021..717f002fb4e 100644 --- a/addons/hr_timesheet/i18n/sv.po +++ b/addons/hr_timesheet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/th.po b/addons/hr_timesheet/i18n/th.po index cf5d62a2a86..115c67cdeb1 100644 --- a/addons/hr_timesheet/i18n/th.po +++ b/addons/hr_timesheet/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/tlh.po b/addons/hr_timesheet/i18n/tlh.po index f5ee3644002..1ca8d13a348 100644 --- a/addons/hr_timesheet/i18n/tlh.po +++ b/addons/hr_timesheet/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/tr.po b/addons/hr_timesheet/i18n/tr.po index 30af9baa1e2..0a2a03357f6 100644 --- a/addons/hr_timesheet/i18n/tr.po +++ b/addons/hr_timesheet/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/uk.po b/addons/hr_timesheet/i18n/uk.po index 017b37be327..bef35a81826 100644 --- a/addons/hr_timesheet/i18n/uk.po +++ b/addons/hr_timesheet/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/vi.po b/addons/hr_timesheet/i18n/vi.po index eb7b2632c2c..cfd64666dec 100644 --- a/addons/hr_timesheet/i18n/vi.po +++ b/addons/hr_timesheet/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/zh_CN.po b/addons/hr_timesheet/i18n/zh_CN.po index c06eb2d71d1..6fdafd421d0 100644 --- a/addons/hr_timesheet/i18n/zh_CN.po +++ b/addons/hr_timesheet/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/zh_TW.po b/addons/hr_timesheet/i18n/zh_TW.po index 2fdd271d306..458a6e60f4b 100644 --- a/addons/hr_timesheet/i18n/zh_TW.po +++ b/addons/hr_timesheet/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet_invoice/i18n/ar.po b/addons/hr_timesheet_invoice/i18n/ar.po index ce75877e774..b8bfca9a938 100644 --- a/addons/hr_timesheet_invoice/i18n/ar.po +++ b/addons/hr_timesheet_invoice/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/bg.po b/addons/hr_timesheet_invoice/i18n/bg.po index d4ec4d0164f..3c81f4a45bd 100644 --- a/addons/hr_timesheet_invoice/i18n/bg.po +++ b/addons/hr_timesheet_invoice/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/bs.po b/addons/hr_timesheet_invoice/i18n/bs.po index 7f78775ec77..205b160705e 100644 --- a/addons/hr_timesheet_invoice/i18n/bs.po +++ b/addons/hr_timesheet_invoice/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/ca.po b/addons/hr_timesheet_invoice/i18n/ca.po index 324926ef514..d96c7c640e0 100644 --- a/addons/hr_timesheet_invoice/i18n/ca.po +++ b/addons/hr_timesheet_invoice/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/cs.po b/addons/hr_timesheet_invoice/i18n/cs.po index 9ee4a55e7f8..6fae3fa787a 100644 --- a/addons/hr_timesheet_invoice/i18n/cs.po +++ b/addons/hr_timesheet_invoice/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/da.po b/addons/hr_timesheet_invoice/i18n/da.po index 75db9c025d0..7501fa1c487 100644 --- a/addons/hr_timesheet_invoice/i18n/da.po +++ b/addons/hr_timesheet_invoice/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/de.po b/addons/hr_timesheet_invoice/i18n/de.po index 65bc1290741..a99304152ce 100644 --- a/addons/hr_timesheet_invoice/i18n/de.po +++ b/addons/hr_timesheet_invoice/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/el.po b/addons/hr_timesheet_invoice/i18n/el.po index 18779105cdc..0ab10912688 100644 --- a/addons/hr_timesheet_invoice/i18n/el.po +++ b/addons/hr_timesheet_invoice/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/es.po b/addons/hr_timesheet_invoice/i18n/es.po index 1d147a7d171..e91bd4eb7f3 100644 --- a/addons/hr_timesheet_invoice/i18n/es.po +++ b/addons/hr_timesheet_invoice/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/es_AR.po b/addons/hr_timesheet_invoice/i18n/es_AR.po index 5f03398d8a4..4dee9f69175 100644 --- a/addons/hr_timesheet_invoice/i18n/es_AR.po +++ b/addons/hr_timesheet_invoice/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/es_CR.po b/addons/hr_timesheet_invoice/i18n/es_CR.po index b289dd7a905..60b44f1758e 100644 --- a/addons/hr_timesheet_invoice/i18n/es_CR.po +++ b/addons/hr_timesheet_invoice/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/es_EC.po b/addons/hr_timesheet_invoice/i18n/es_EC.po index a205d2cac1c..ebcb9553ddd 100644 --- a/addons/hr_timesheet_invoice/i18n/es_EC.po +++ b/addons/hr_timesheet_invoice/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/et.po b/addons/hr_timesheet_invoice/i18n/et.po index 49214903209..24ae6f103c6 100644 --- a/addons/hr_timesheet_invoice/i18n/et.po +++ b/addons/hr_timesheet_invoice/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/fi.po b/addons/hr_timesheet_invoice/i18n/fi.po index 8a05ef94a64..e170f81853f 100644 --- a/addons/hr_timesheet_invoice/i18n/fi.po +++ b/addons/hr_timesheet_invoice/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/fr.po b/addons/hr_timesheet_invoice/i18n/fr.po index b8c2f603471..2e4ce8f36f7 100644 --- a/addons/hr_timesheet_invoice/i18n/fr.po +++ b/addons/hr_timesheet_invoice/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/hr.po b/addons/hr_timesheet_invoice/i18n/hr.po index 0b13e7915ac..4b04b9bf155 100644 --- a/addons/hr_timesheet_invoice/i18n/hr.po +++ b/addons/hr_timesheet_invoice/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/hu.po b/addons/hr_timesheet_invoice/i18n/hu.po index a01a684871a..f9afea529ca 100644 --- a/addons/hr_timesheet_invoice/i18n/hu.po +++ b/addons/hr_timesheet_invoice/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/id.po b/addons/hr_timesheet_invoice/i18n/id.po index 3b36331a842..3d453457410 100644 --- a/addons/hr_timesheet_invoice/i18n/id.po +++ b/addons/hr_timesheet_invoice/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/it.po b/addons/hr_timesheet_invoice/i18n/it.po index deca6c1eadd..dc6db12d7e0 100644 --- a/addons/hr_timesheet_invoice/i18n/it.po +++ b/addons/hr_timesheet_invoice/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/ja.po b/addons/hr_timesheet_invoice/i18n/ja.po index 8de197d606b..e70f332d10e 100644 --- a/addons/hr_timesheet_invoice/i18n/ja.po +++ b/addons/hr_timesheet_invoice/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/ko.po b/addons/hr_timesheet_invoice/i18n/ko.po index 54a0ddbcb9a..d32a4f0534d 100644 --- a/addons/hr_timesheet_invoice/i18n/ko.po +++ b/addons/hr_timesheet_invoice/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/lt.po b/addons/hr_timesheet_invoice/i18n/lt.po index bf4fac1869b..5f6fb5dbba4 100644 --- a/addons/hr_timesheet_invoice/i18n/lt.po +++ b/addons/hr_timesheet_invoice/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/lv.po b/addons/hr_timesheet_invoice/i18n/lv.po index 23bac282e17..b5323627dcd 100644 --- a/addons/hr_timesheet_invoice/i18n/lv.po +++ b/addons/hr_timesheet_invoice/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/mk.po b/addons/hr_timesheet_invoice/i18n/mk.po index ea648ee53ec..50ddde0ded8 100644 --- a/addons/hr_timesheet_invoice/i18n/mk.po +++ b/addons/hr_timesheet_invoice/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/mn.po b/addons/hr_timesheet_invoice/i18n/mn.po index 3c4c935fc81..c3fb1dbfa1f 100644 --- a/addons/hr_timesheet_invoice/i18n/mn.po +++ b/addons/hr_timesheet_invoice/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/nl.po b/addons/hr_timesheet_invoice/i18n/nl.po index dffe3d3c858..ea9420c8488 100644 --- a/addons/hr_timesheet_invoice/i18n/nl.po +++ b/addons/hr_timesheet_invoice/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-08-01 11:00+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-02 05:58+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/nl_BE.po b/addons/hr_timesheet_invoice/i18n/nl_BE.po index cf9aeecd25e..c790b4f42c7 100644 --- a/addons/hr_timesheet_invoice/i18n/nl_BE.po +++ b/addons/hr_timesheet_invoice/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/pl.po b/addons/hr_timesheet_invoice/i18n/pl.po index 3e14f8c72e3..806b2bbf29e 100644 --- a/addons/hr_timesheet_invoice/i18n/pl.po +++ b/addons/hr_timesheet_invoice/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/pt.po b/addons/hr_timesheet_invoice/i18n/pt.po index 23f84a21554..2574bea1ae5 100644 --- a/addons/hr_timesheet_invoice/i18n/pt.po +++ b/addons/hr_timesheet_invoice/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/pt_BR.po b/addons/hr_timesheet_invoice/i18n/pt_BR.po index a6c4a33b205..4767a40ffb9 100644 --- a/addons/hr_timesheet_invoice/i18n/pt_BR.po +++ b/addons/hr_timesheet_invoice/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 19:43+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/ro.po b/addons/hr_timesheet_invoice/i18n/ro.po index 55630beb6df..85e3737601e 100644 --- a/addons/hr_timesheet_invoice/i18n/ro.po +++ b/addons/hr_timesheet_invoice/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-28 19:08+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/ru.po b/addons/hr_timesheet_invoice/i18n/ru.po index 595a3139f2e..c0161f7faed 100644 --- a/addons/hr_timesheet_invoice/i18n/ru.po +++ b/addons/hr_timesheet_invoice/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-25 05:44+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/sl.po b/addons/hr_timesheet_invoice/i18n/sl.po index 7374597b32a..f052c197e64 100644 --- a/addons/hr_timesheet_invoice/i18n/sl.po +++ b/addons/hr_timesheet_invoice/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/sq.po b/addons/hr_timesheet_invoice/i18n/sq.po index 08103860e40..37bd72b72c3 100644 --- a/addons/hr_timesheet_invoice/i18n/sq.po +++ b/addons/hr_timesheet_invoice/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/sr@latin.po b/addons/hr_timesheet_invoice/i18n/sr@latin.po index df6fa9814a3..aed7938e6a8 100644 --- a/addons/hr_timesheet_invoice/i18n/sr@latin.po +++ b/addons/hr_timesheet_invoice/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/sv.po b/addons/hr_timesheet_invoice/i18n/sv.po index 15606cd18a3..66afa18ce49 100644 --- a/addons/hr_timesheet_invoice/i18n/sv.po +++ b/addons/hr_timesheet_invoice/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/tlh.po b/addons/hr_timesheet_invoice/i18n/tlh.po index 1cd4961f253..877483fb0fc 100644 --- a/addons/hr_timesheet_invoice/i18n/tlh.po +++ b/addons/hr_timesheet_invoice/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/tr.po b/addons/hr_timesheet_invoice/i18n/tr.po index f7815f54985..be8081f93e4 100644 --- a/addons/hr_timesheet_invoice/i18n/tr.po +++ b/addons/hr_timesheet_invoice/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/uk.po b/addons/hr_timesheet_invoice/i18n/uk.po index 798500df610..f2b2182335f 100644 --- a/addons/hr_timesheet_invoice/i18n/uk.po +++ b/addons/hr_timesheet_invoice/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/vi.po b/addons/hr_timesheet_invoice/i18n/vi.po index d99b5ee2247..c4747227e8b 100644 --- a/addons/hr_timesheet_invoice/i18n/vi.po +++ b/addons/hr_timesheet_invoice/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/zh_CN.po b/addons/hr_timesheet_invoice/i18n/zh_CN.po index f7e15d0dbd5..83f77e8554c 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_CN.po +++ b/addons/hr_timesheet_invoice/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/zh_TW.po b/addons/hr_timesheet_invoice/i18n/zh_TW.po index 981557d96f7..67e0108b45c 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_TW.po +++ b/addons/hr_timesheet_invoice/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_sheet/i18n/ar.po b/addons/hr_timesheet_sheet/i18n/ar.po index 854f8168cf5..c5663e11da6 100644 --- a/addons/hr_timesheet_sheet/i18n/ar.po +++ b/addons/hr_timesheet_sheet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/bg.po b/addons/hr_timesheet_sheet/i18n/bg.po index 6b8e7b2164a..0f60587fc6f 100644 --- a/addons/hr_timesheet_sheet/i18n/bg.po +++ b/addons/hr_timesheet_sheet/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/bs.po b/addons/hr_timesheet_sheet/i18n/bs.po index 16d098bb209..fddad39407b 100644 --- a/addons/hr_timesheet_sheet/i18n/bs.po +++ b/addons/hr_timesheet_sheet/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ca.po b/addons/hr_timesheet_sheet/i18n/ca.po index 6c846d24bf0..144ca74aab3 100644 --- a/addons/hr_timesheet_sheet/i18n/ca.po +++ b/addons/hr_timesheet_sheet/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/cs.po b/addons/hr_timesheet_sheet/i18n/cs.po index bf8f206c6ae..43c8bed598b 100644 --- a/addons/hr_timesheet_sheet/i18n/cs.po +++ b/addons/hr_timesheet_sheet/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/da.po b/addons/hr_timesheet_sheet/i18n/da.po index 19707871a90..8a69a51228e 100644 --- a/addons/hr_timesheet_sheet/i18n/da.po +++ b/addons/hr_timesheet_sheet/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/de.po b/addons/hr_timesheet_sheet/i18n/de.po index 7abd1395591..b09a150a544 100644 --- a/addons/hr_timesheet_sheet/i18n/de.po +++ b/addons/hr_timesheet_sheet/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/el.po b/addons/hr_timesheet_sheet/i18n/el.po index 3f29db30cca..be1ae960172 100644 --- a/addons/hr_timesheet_sheet/i18n/el.po +++ b/addons/hr_timesheet_sheet/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/es.po b/addons/hr_timesheet_sheet/i18n/es.po index 34dc6db210a..27f04f23d8b 100644 --- a/addons/hr_timesheet_sheet/i18n/es.po +++ b/addons/hr_timesheet_sheet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/es_AR.po b/addons/hr_timesheet_sheet/i18n/es_AR.po index cdf62667471..4f1f5c121f4 100644 --- a/addons/hr_timesheet_sheet/i18n/es_AR.po +++ b/addons/hr_timesheet_sheet/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/es_CR.po b/addons/hr_timesheet_sheet/i18n/es_CR.po index 405a37ebc24..492d64e0ef0 100644 --- a/addons/hr_timesheet_sheet/i18n/es_CR.po +++ b/addons/hr_timesheet_sheet/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/es_EC.po b/addons/hr_timesheet_sheet/i18n/es_EC.po index d3272ce3a02..4b3a6393b12 100644 --- a/addons/hr_timesheet_sheet/i18n/es_EC.po +++ b/addons/hr_timesheet_sheet/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/et.po b/addons/hr_timesheet_sheet/i18n/et.po index 54cbbf14c4c..2096874a0af 100644 --- a/addons/hr_timesheet_sheet/i18n/et.po +++ b/addons/hr_timesheet_sheet/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/fi.po b/addons/hr_timesheet_sheet/i18n/fi.po index 18aeffadf9e..9604294f2bb 100644 --- a/addons/hr_timesheet_sheet/i18n/fi.po +++ b/addons/hr_timesheet_sheet/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/fr.po b/addons/hr_timesheet_sheet/i18n/fr.po index 971e1e7cc71..97f642d0a48 100644 --- a/addons/hr_timesheet_sheet/i18n/fr.po +++ b/addons/hr_timesheet_sheet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/hr.po b/addons/hr_timesheet_sheet/i18n/hr.po index 2f31ee15277..bfc32268a13 100644 --- a/addons/hr_timesheet_sheet/i18n/hr.po +++ b/addons/hr_timesheet_sheet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/hu.po b/addons/hr_timesheet_sheet/i18n/hu.po index 631d45bf79b..fd8d06f4eb3 100644 --- a/addons/hr_timesheet_sheet/i18n/hu.po +++ b/addons/hr_timesheet_sheet/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/id.po b/addons/hr_timesheet_sheet/i18n/id.po index d30a8998705..a0e6ba3ee03 100644 --- a/addons/hr_timesheet_sheet/i18n/id.po +++ b/addons/hr_timesheet_sheet/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/it.po b/addons/hr_timesheet_sheet/i18n/it.po index da9b822bc0d..dda168120f5 100644 --- a/addons/hr_timesheet_sheet/i18n/it.po +++ b/addons/hr_timesheet_sheet/i18n/it.po @@ -9,14 +9,14 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-04-24 07:44+0000\n" -"Last-Translator: Leonardo Pistone - Agile BG - Domsense " -"\n" +"Last-Translator: Leonardo Pistone @ camptocamp " +"\n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ja.po b/addons/hr_timesheet_sheet/i18n/ja.po index 8de2a7b37a8..f84f0efa784 100644 --- a/addons/hr_timesheet_sheet/i18n/ja.po +++ b/addons/hr_timesheet_sheet/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ko.po b/addons/hr_timesheet_sheet/i18n/ko.po index ae93f69e2c0..3c506a41f8d 100644 --- a/addons/hr_timesheet_sheet/i18n/ko.po +++ b/addons/hr_timesheet_sheet/i18n/ko.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-05-18 23:46+0000\n" -"Last-Translator: AhnJD \n" +"Last-Translator: AhnJD \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/lt.po b/addons/hr_timesheet_sheet/i18n/lt.po index 62dc6595c57..e3523e39ba6 100644 --- a/addons/hr_timesheet_sheet/i18n/lt.po +++ b/addons/hr_timesheet_sheet/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/lv.po b/addons/hr_timesheet_sheet/i18n/lv.po index 381a601f7cf..e6b441004b2 100644 --- a/addons/hr_timesheet_sheet/i18n/lv.po +++ b/addons/hr_timesheet_sheet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/mk.po b/addons/hr_timesheet_sheet/i18n/mk.po index a1144004de0..50470640eb7 100644 --- a/addons/hr_timesheet_sheet/i18n/mk.po +++ b/addons/hr_timesheet_sheet/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/mn.po b/addons/hr_timesheet_sheet/i18n/mn.po index 53d4c21a0b7..388b13939b7 100644 --- a/addons/hr_timesheet_sheet/i18n/mn.po +++ b/addons/hr_timesheet_sheet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/nl.po b/addons/hr_timesheet_sheet/i18n/nl.po index fd89e4322ec..67641882c13 100644 --- a/addons/hr_timesheet_sheet/i18n/nl.po +++ b/addons/hr_timesheet_sheet/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-29 11:56+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-30 04:58+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/nl_BE.po b/addons/hr_timesheet_sheet/i18n/nl_BE.po index 9ed6e9db3a7..0f5177fe52a 100644 --- a/addons/hr_timesheet_sheet/i18n/nl_BE.po +++ b/addons/hr_timesheet_sheet/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/pl.po b/addons/hr_timesheet_sheet/i18n/pl.po index 629da3dfcc1..9af163bda08 100644 --- a/addons/hr_timesheet_sheet/i18n/pl.po +++ b/addons/hr_timesheet_sheet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/pt.po b/addons/hr_timesheet_sheet/i18n/pt.po index 1f90db7b534..8dc53b250f7 100644 --- a/addons/hr_timesheet_sheet/i18n/pt.po +++ b/addons/hr_timesheet_sheet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/pt_BR.po b/addons/hr_timesheet_sheet/i18n/pt_BR.po index 3ecc7f1bf50..b75cd67d2ec 100644 --- a/addons/hr_timesheet_sheet/i18n/pt_BR.po +++ b/addons/hr_timesheet_sheet/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ro.po b/addons/hr_timesheet_sheet/i18n/ro.po index c7de8773891..d7448735083 100644 --- a/addons/hr_timesheet_sheet/i18n/ro.po +++ b/addons/hr_timesheet_sheet/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-31 19:11+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ru.po b/addons/hr_timesheet_sheet/i18n/ru.po index 59024894c24..f616d95dd3a 100644 --- a/addons/hr_timesheet_sheet/i18n/ru.po +++ b/addons/hr_timesheet_sheet/i18n/ru.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-05 10:47+0000\n" -"Last-Translator: Глория Хрусталёва \n" +"Last-Translator: Глория Хрусталёва \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/sk.po b/addons/hr_timesheet_sheet/i18n/sk.po index 1e28c3a35c4..c73545f5a88 100644 --- a/addons/hr_timesheet_sheet/i18n/sk.po +++ b/addons/hr_timesheet_sheet/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/sl.po b/addons/hr_timesheet_sheet/i18n/sl.po index 46781f5cae1..52a171d0c36 100644 --- a/addons/hr_timesheet_sheet/i18n/sl.po +++ b/addons/hr_timesheet_sheet/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/sq.po b/addons/hr_timesheet_sheet/i18n/sq.po index 9450b9b464c..25472560010 100644 --- a/addons/hr_timesheet_sheet/i18n/sq.po +++ b/addons/hr_timesheet_sheet/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:03+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/sv.po b/addons/hr_timesheet_sheet/i18n/sv.po index 91bcb8f5c3e..20bb174760c 100644 --- a/addons/hr_timesheet_sheet/i18n/sv.po +++ b/addons/hr_timesheet_sheet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/th.po b/addons/hr_timesheet_sheet/i18n/th.po index 31ce2b3f1e5..7a3ded307ea 100644 --- a/addons/hr_timesheet_sheet/i18n/th.po +++ b/addons/hr_timesheet_sheet/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/tlh.po b/addons/hr_timesheet_sheet/i18n/tlh.po index bc2c119e4c1..6c67ff0c03d 100644 --- a/addons/hr_timesheet_sheet/i18n/tlh.po +++ b/addons/hr_timesheet_sheet/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/tr.po b/addons/hr_timesheet_sheet/i18n/tr.po index c7cf21f41a2..3b4829433a0 100644 --- a/addons/hr_timesheet_sheet/i18n/tr.po +++ b/addons/hr_timesheet_sheet/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/uk.po b/addons/hr_timesheet_sheet/i18n/uk.po index 729673061d5..791251e7ac9 100644 --- a/addons/hr_timesheet_sheet/i18n/uk.po +++ b/addons/hr_timesheet_sheet/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/vi.po b/addons/hr_timesheet_sheet/i18n/vi.po index 33977a5008e..5581a342580 100644 --- a/addons/hr_timesheet_sheet/i18n/vi.po +++ b/addons/hr_timesheet_sheet/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/zh_CN.po b/addons/hr_timesheet_sheet/i18n/zh_CN.po index d42accf01a2..a52aeb4423d 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_CN.po +++ b/addons/hr_timesheet_sheet/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/zh_TW.po b/addons/hr_timesheet_sheet/i18n/zh_TW.po index 0cce80603f8..e7d33b986d7 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_TW.po +++ b/addons/hr_timesheet_sheet/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/idea/i18n/ar.po b/addons/idea/i18n/ar.po index e2e739ccfed..edb360dc7b8 100644 --- a/addons/idea/i18n/ar.po +++ b/addons/idea/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/bg.po b/addons/idea/i18n/bg.po index bd4e2bb0c8a..bc8c8494159 100644 --- a/addons/idea/i18n/bg.po +++ b/addons/idea/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/bs.po b/addons/idea/i18n/bs.po index 9764ee748ce..e5b0e77ccc4 100644 --- a/addons/idea/i18n/bs.po +++ b/addons/idea/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ca.po b/addons/idea/i18n/ca.po index 001df5253b4..e31fabd34f6 100644 --- a/addons/idea/i18n/ca.po +++ b/addons/idea/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/cs.po b/addons/idea/i18n/cs.po index 2f9252589b1..dbfd49f277f 100644 --- a/addons/idea/i18n/cs.po +++ b/addons/idea/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/da.po b/addons/idea/i18n/da.po index baeb9ee087f..941c7bb2092 100644 --- a/addons/idea/i18n/da.po +++ b/addons/idea/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/de.po b/addons/idea/i18n/de.po index 4e15b8422a6..811ace2a8fe 100644 --- a/addons/idea/i18n/de.po +++ b/addons/idea/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/el.po b/addons/idea/i18n/el.po index 5b7fbcd4313..5b45ad36b9f 100644 --- a/addons/idea/i18n/el.po +++ b/addons/idea/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/en_GB.po b/addons/idea/i18n/en_GB.po index dd972515f35..16f37256056 100644 --- a/addons/idea/i18n/en_GB.po +++ b/addons/idea/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/es.po b/addons/idea/i18n/es.po index ac7abf77676..37b494768b2 100644 --- a/addons/idea/i18n/es.po +++ b/addons/idea/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/es_AR.po b/addons/idea/i18n/es_AR.po index 212c6d1c481..ecb450d0373 100644 --- a/addons/idea/i18n/es_AR.po +++ b/addons/idea/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/es_CR.po b/addons/idea/i18n/es_CR.po index 6edb2da3efe..d9848d62ad9 100644 --- a/addons/idea/i18n/es_CR.po +++ b/addons/idea/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/et.po b/addons/idea/i18n/et.po index 0239b13dd88..1087007e606 100644 --- a/addons/idea/i18n/et.po +++ b/addons/idea/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/fi.po b/addons/idea/i18n/fi.po index 3ef79b2a2f9..94140c2a465 100644 --- a/addons/idea/i18n/fi.po +++ b/addons/idea/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/fr.po b/addons/idea/i18n/fr.po index e37eb09c956..ac8920366fe 100644 --- a/addons/idea/i18n/fr.po +++ b/addons/idea/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/gl.po b/addons/idea/i18n/gl.po index 28cd497c400..cd539ce4fca 100644 --- a/addons/idea/i18n/gl.po +++ b/addons/idea/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/gu.po b/addons/idea/i18n/gu.po index 70cfd2bfb27..86ee85e44f0 100644 --- a/addons/idea/i18n/gu.po +++ b/addons/idea/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/hi.po b/addons/idea/i18n/hi.po index 6128886290e..ec2b827cbf0 100644 --- a/addons/idea/i18n/hi.po +++ b/addons/idea/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/hr.po b/addons/idea/i18n/hr.po index 19dab4e9634..dbc33e315fe 100644 --- a/addons/idea/i18n/hr.po +++ b/addons/idea/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/hu.po b/addons/idea/i18n/hu.po index f6c0b13ec15..219ee55c10e 100644 --- a/addons/idea/i18n/hu.po +++ b/addons/idea/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/id.po b/addons/idea/i18n/id.po index 63cbb663173..5ac679233e3 100644 --- a/addons/idea/i18n/id.po +++ b/addons/idea/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/it.po b/addons/idea/i18n/it.po index 513bb96d9d8..e92ccce81a3 100644 --- a/addons/idea/i18n/it.po +++ b/addons/idea/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ja.po b/addons/idea/i18n/ja.po index e51b4073b69..bdab11a60df 100644 --- a/addons/idea/i18n/ja.po +++ b/addons/idea/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ko.po b/addons/idea/i18n/ko.po index 40b952dbc60..be187707eef 100644 --- a/addons/idea/i18n/ko.po +++ b/addons/idea/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/lt.po b/addons/idea/i18n/lt.po index e98451e944c..a167a0e9e53 100644 --- a/addons/idea/i18n/lt.po +++ b/addons/idea/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/lv.po b/addons/idea/i18n/lv.po index 03346bd6e10..9006ab78207 100644 --- a/addons/idea/i18n/lv.po +++ b/addons/idea/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/mk.po b/addons/idea/i18n/mk.po index 349acd1b5f1..70eeeed909f 100644 --- a/addons/idea/i18n/mk.po +++ b/addons/idea/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/mn.po b/addons/idea/i18n/mn.po index 2426ee21f8d..f7ecca39ae3 100644 --- a/addons/idea/i18n/mn.po +++ b/addons/idea/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/nl.po b/addons/idea/i18n/nl.po index 2e7ada914a3..0fe21357a88 100644 --- a/addons/idea/i18n/nl.po +++ b/addons/idea/i18n/nl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: idea diff --git a/addons/idea/i18n/pl.po b/addons/idea/i18n/pl.po index b7fc7208627..320bab3c178 100644 --- a/addons/idea/i18n/pl.po +++ b/addons/idea/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: idea diff --git a/addons/idea/i18n/pt.po b/addons/idea/i18n/pt.po index 575ded507ca..a56ab3524bb 100644 --- a/addons/idea/i18n/pt.po +++ b/addons/idea/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/pt_BR.po b/addons/idea/i18n/pt_BR.po index 4cf09762fa7..6c0f782278e 100644 --- a/addons/idea/i18n/pt_BR.po +++ b/addons/idea/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ro.po b/addons/idea/i18n/ro.po index 19e96a441bb..e40611848e1 100644 --- a/addons/idea/i18n/ro.po +++ b/addons/idea/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-29 19:00+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ru.po b/addons/idea/i18n/ru.po index 3b0ba6223a8..017de47d813 100644 --- a/addons/idea/i18n/ru.po +++ b/addons/idea/i18n/ru.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-05 07:25+0000\n" -"Last-Translator: Глория Хрусталёва \n" +"Last-Translator: Глория Хрусталёва \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sk.po b/addons/idea/i18n/sk.po index afe1a7a7e4a..dbfe3756900 100644 --- a/addons/idea/i18n/sk.po +++ b/addons/idea/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sl.po b/addons/idea/i18n/sl.po index ffddce1b11e..b775cd6f7e3 100644 --- a/addons/idea/i18n/sl.po +++ b/addons/idea/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sq.po b/addons/idea/i18n/sq.po index eba9d9c00f6..b7777c5c197 100644 --- a/addons/idea/i18n/sq.po +++ b/addons/idea/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sr@latin.po b/addons/idea/i18n/sr@latin.po index 59b5e83b343..a4622d0719b 100644 --- a/addons/idea/i18n/sr@latin.po +++ b/addons/idea/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sv.po b/addons/idea/i18n/sv.po index a2b66b22ab3..9dfcffdc42a 100644 --- a/addons/idea/i18n/sv.po +++ b/addons/idea/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/tlh.po b/addons/idea/i18n/tlh.po index 12eefbe6ae1..38ff0b8c809 100644 --- a/addons/idea/i18n/tlh.po +++ b/addons/idea/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/tr.po b/addons/idea/i18n/tr.po index 13adac9b031..76cab7217b5 100644 --- a/addons/idea/i18n/tr.po +++ b/addons/idea/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/uk.po b/addons/idea/i18n/uk.po index 1d90b779493..1f85ba5afef 100644 --- a/addons/idea/i18n/uk.po +++ b/addons/idea/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/vi.po b/addons/idea/i18n/vi.po index 1a97978926a..46628104cb5 100644 --- a/addons/idea/i18n/vi.po +++ b/addons/idea/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/zh_CN.po b/addons/idea/i18n/zh_CN.po index 2f2a24f4b0f..5696b71eca7 100644 --- a/addons/idea/i18n/zh_CN.po +++ b/addons/idea/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-29 07:28+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/zh_HK.po b/addons/idea/i18n/zh_HK.po index 661c0a7d9e2..81f7a8df577 100644 --- a/addons/idea/i18n/zh_HK.po +++ b/addons/idea/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/zh_TW.po b/addons/idea/i18n/zh_TW.po index c1d07165b64..598c8a5b2d3 100644 --- a/addons/idea/i18n/zh_TW.po +++ b/addons/idea/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/knowledge/i18n/ar.po b/addons/knowledge/i18n/ar.po index abe18c60608..9df9a3d188b 100644 --- a/addons/knowledge/i18n/ar.po +++ b/addons/knowledge/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/bg.po b/addons/knowledge/i18n/bg.po index 1f2661ef773..adcc7e91ffb 100644 --- a/addons/knowledge/i18n/bg.po +++ b/addons/knowledge/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ca.po b/addons/knowledge/i18n/ca.po index 6f44bb529fb..6d90bf89963 100644 --- a/addons/knowledge/i18n/ca.po +++ b/addons/knowledge/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/cs.po b/addons/knowledge/i18n/cs.po index 2f01eed9bd3..39ca7561490 100644 --- a/addons/knowledge/i18n/cs.po +++ b/addons/knowledge/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/da.po b/addons/knowledge/i18n/da.po index 5a57a1d82d3..d9d8590555d 100644 --- a/addons/knowledge/i18n/da.po +++ b/addons/knowledge/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/de.po b/addons/knowledge/i18n/de.po index c9a12f9d312..0abbf57a3d5 100644 --- a/addons/knowledge/i18n/de.po +++ b/addons/knowledge/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/en_GB.po b/addons/knowledge/i18n/en_GB.po index 663b6632311..48e41758a73 100644 --- a/addons/knowledge/i18n/en_GB.po +++ b/addons/knowledge/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/es.po b/addons/knowledge/i18n/es.po index 39f03122d02..c43963f9368 100644 --- a/addons/knowledge/i18n/es.po +++ b/addons/knowledge/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/es_AR.po b/addons/knowledge/i18n/es_AR.po index 8a5327c6adb..ef9da8ba77f 100644 --- a/addons/knowledge/i18n/es_AR.po +++ b/addons/knowledge/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/es_CR.po b/addons/knowledge/i18n/es_CR.po index 954385a4730..e53767e6eb8 100644 --- a/addons/knowledge/i18n/es_CR.po +++ b/addons/knowledge/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/et.po b/addons/knowledge/i18n/et.po index 2f12b3a6240..13efa194d34 100644 --- a/addons/knowledge/i18n/et.po +++ b/addons/knowledge/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/fi.po b/addons/knowledge/i18n/fi.po index f7634cb5107..cef35b1ae13 100644 --- a/addons/knowledge/i18n/fi.po +++ b/addons/knowledge/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/fr.po b/addons/knowledge/i18n/fr.po index cb2a11d92b3..d70a964eaf2 100644 --- a/addons/knowledge/i18n/fr.po +++ b/addons/knowledge/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/gl.po b/addons/knowledge/i18n/gl.po index d0a09ca4d9c..6386582dca5 100644 --- a/addons/knowledge/i18n/gl.po +++ b/addons/knowledge/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hi.po b/addons/knowledge/i18n/hi.po index ec4565e18ea..b6b66db4420 100644 --- a/addons/knowledge/i18n/hi.po +++ b/addons/knowledge/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hr.po b/addons/knowledge/i18n/hr.po index 2d864ed7e10..04f3e3ea25e 100644 --- a/addons/knowledge/i18n/hr.po +++ b/addons/knowledge/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hu.po b/addons/knowledge/i18n/hu.po index 62d30fc658e..d8af3c9f0c3 100644 --- a/addons/knowledge/i18n/hu.po +++ b/addons/knowledge/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/it.po b/addons/knowledge/i18n/it.po index 2e069617320..8385981d951 100644 --- a/addons/knowledge/i18n/it.po +++ b/addons/knowledge/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ja.po b/addons/knowledge/i18n/ja.po index 92e089f9b77..a39a9f2856d 100644 --- a/addons/knowledge/i18n/ja.po +++ b/addons/knowledge/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-08 06:25+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/lo.po b/addons/knowledge/i18n/lo.po index 02e898f18c4..30002359bd8 100644 --- a/addons/knowledge/i18n/lo.po +++ b/addons/knowledge/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/lv.po b/addons/knowledge/i18n/lv.po index b71b37544e7..c64f32db2d7 100644 --- a/addons/knowledge/i18n/lv.po +++ b/addons/knowledge/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/mk.po b/addons/knowledge/i18n/mk.po index 5a7e8fe2c8a..0bcdb553d52 100644 --- a/addons/knowledge/i18n/mk.po +++ b/addons/knowledge/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: knowledge diff --git a/addons/knowledge/i18n/mn.po b/addons/knowledge/i18n/mn.po index a564e3a2f68..44fc78b4b92 100644 --- a/addons/knowledge/i18n/mn.po +++ b/addons/knowledge/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nb.po b/addons/knowledge/i18n/nb.po index 22bfdc6344b..3ef552a2b9d 100644 --- a/addons/knowledge/i18n/nb.po +++ b/addons/knowledge/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nl.po b/addons/knowledge/i18n/nl.po index 2fe2d0f79be..a988d5a6dc8 100644 --- a/addons/knowledge/i18n/nl.po +++ b/addons/knowledge/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nl_BE.po b/addons/knowledge/i18n/nl_BE.po index cb09d030af6..83d49dcfbfa 100644 --- a/addons/knowledge/i18n/nl_BE.po +++ b/addons/knowledge/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/pl.po b/addons/knowledge/i18n/pl.po index 1a8af997bc6..cb7f4b6e34e 100644 --- a/addons/knowledge/i18n/pl.po +++ b/addons/knowledge/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/pt.po b/addons/knowledge/i18n/pt.po index 838391a517a..ce92f02151b 100644 --- a/addons/knowledge/i18n/pt.po +++ b/addons/knowledge/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/pt_BR.po b/addons/knowledge/i18n/pt_BR.po index a13be8598d0..c1361b4067c 100644 --- a/addons/knowledge/i18n/pt_BR.po +++ b/addons/knowledge/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ro.po b/addons/knowledge/i18n/ro.po index 173940bb18d..85f98e2100f 100644 --- a/addons/knowledge/i18n/ro.po +++ b/addons/knowledge/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ru.po b/addons/knowledge/i18n/ru.po index 395de76a91c..57a51225d6d 100644 --- a/addons/knowledge/i18n/ru.po +++ b/addons/knowledge/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sk.po b/addons/knowledge/i18n/sk.po index 15d2595c7cc..e1fe12310de 100644 --- a/addons/knowledge/i18n/sk.po +++ b/addons/knowledge/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sl.po b/addons/knowledge/i18n/sl.po index f71043de6fb..682db3b7b7a 100644 --- a/addons/knowledge/i18n/sl.po +++ b/addons/knowledge/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sr.po b/addons/knowledge/i18n/sr.po index 07bd0f65970..61985359af4 100644 --- a/addons/knowledge/i18n/sr.po +++ b/addons/knowledge/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sr@latin.po b/addons/knowledge/i18n/sr@latin.po index 9c5cd1db3d3..92bbd54729c 100644 --- a/addons/knowledge/i18n/sr@latin.po +++ b/addons/knowledge/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sv.po b/addons/knowledge/i18n/sv.po index e294b8cd88c..6774d404802 100644 --- a/addons/knowledge/i18n/sv.po +++ b/addons/knowledge/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/th.po b/addons/knowledge/i18n/th.po index 35de60606b5..d9f0fd56ce4 100644 --- a/addons/knowledge/i18n/th.po +++ b/addons/knowledge/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/tr.po b/addons/knowledge/i18n/tr.po index 72b464a2e0e..490e80cfdf8 100644 --- a/addons/knowledge/i18n/tr.po +++ b/addons/knowledge/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/zh_CN.po b/addons/knowledge/i18n/zh_CN.po index 64d4c398970..4319db9c451 100644 --- a/addons/knowledge/i18n/zh_CN.po +++ b/addons/knowledge/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/zh_TW.po b/addons/knowledge/i18n/zh_TW.po index eaf7c824f8b..0c58df99ddf 100644 --- a/addons/knowledge/i18n/zh_TW.po +++ b/addons/knowledge/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/l10n_ar/i18n/es.po b/addons/l10n_ar/i18n/es.po index a14946c4442..ad91d241ce2 100644 --- a/addons/l10n_ar/i18n/es.po +++ b/addons/l10n_ar/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/es_AR.po b/addons/l10n_ar/i18n/es_AR.po index 5321d0ea833..fa632750e29 100644 --- a/addons/l10n_ar/i18n/es_AR.po +++ b/addons/l10n_ar/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/nl.po b/addons/l10n_ar/i18n/nl.po index 35b7844fbaa..0abb8c1a24c 100644 --- a/addons/l10n_ar/i18n/nl.po +++ b/addons/l10n_ar/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/pt.po b/addons/l10n_ar/i18n/pt.po index 36b7cdbcc7e..9d137b18ed5 100644 --- a/addons/l10n_ar/i18n/pt.po +++ b/addons/l10n_ar/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/pt_BR.po b/addons/l10n_ar/i18n/pt_BR.po index 88592c314ce..30c8b17dac6 100644 --- a/addons/l10n_ar/i18n/pt_BR.po +++ b/addons/l10n_ar/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/sl.po b/addons/l10n_ar/i18n/sl.po index fcee45553e7..977f7ca23c7 100644 --- a/addons/l10n_ar/i18n/sl.po +++ b/addons/l10n_ar/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/tr.po b/addons/l10n_ar/i18n/tr.po index 10484e6b719..b9cd43f6c6b 100644 --- a/addons/l10n_ar/i18n/tr.po +++ b/addons/l10n_ar/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/zh_CN.po b/addons/l10n_ar/i18n/zh_CN.po index 157e7b871a6..06047c7cd4f 100644 --- a/addons/l10n_ar/i18n/zh_CN.po +++ b/addons/l10n_ar/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_be/i18n/ar.po b/addons/l10n_be/i18n/ar.po index 1f702e2f007..18a6f8e3dc8 100644 --- a/addons/l10n_be/i18n/ar.po +++ b/addons/l10n_be/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/bg.po b/addons/l10n_be/i18n/bg.po index d7a644bc106..448eb20617b 100644 --- a/addons/l10n_be/i18n/bg.po +++ b/addons/l10n_be/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/bs.po b/addons/l10n_be/i18n/bs.po index a045e9a1d41..af1b7323da8 100644 --- a/addons/l10n_be/i18n/bs.po +++ b/addons/l10n_be/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ca.po b/addons/l10n_be/i18n/ca.po index bb00e7fc590..f6529ac11fc 100644 --- a/addons/l10n_be/i18n/ca.po +++ b/addons/l10n_be/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/cs.po b/addons/l10n_be/i18n/cs.po index d2af3e9ab13..1f192db84fd 100644 --- a/addons/l10n_be/i18n/cs.po +++ b/addons/l10n_be/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/da.po b/addons/l10n_be/i18n/da.po index dcafa758de4..82703bcb08d 100644 --- a/addons/l10n_be/i18n/da.po +++ b/addons/l10n_be/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/de.po b/addons/l10n_be/i18n/de.po index 5e118bf1d46..d169dc96a4e 100644 --- a/addons/l10n_be/i18n/de.po +++ b/addons/l10n_be/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/en_GB.po b/addons/l10n_be/i18n/en_GB.po index 1d740ce6675..615b11cc3ac 100644 --- a/addons/l10n_be/i18n/en_GB.po +++ b/addons/l10n_be/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/es.po b/addons/l10n_be/i18n/es.po index baa54e46e43..ea695c5acf6 100644 --- a/addons/l10n_be/i18n/es.po +++ b/addons/l10n_be/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/es_AR.po b/addons/l10n_be/i18n/es_AR.po index 5d813bd42b3..a6ad9ca12bd 100644 --- a/addons/l10n_be/i18n/es_AR.po +++ b/addons/l10n_be/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/es_CR.po b/addons/l10n_be/i18n/es_CR.po index c294dbf2883..9824b33e224 100644 --- a/addons/l10n_be/i18n/es_CR.po +++ b/addons/l10n_be/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/et.po b/addons/l10n_be/i18n/et.po index 47dc2f4cde5..e5d389795df 100644 --- a/addons/l10n_be/i18n/et.po +++ b/addons/l10n_be/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/fi.po b/addons/l10n_be/i18n/fi.po index de7a42d4e23..5b56c6170db 100644 --- a/addons/l10n_be/i18n/fi.po +++ b/addons/l10n_be/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/fr.po b/addons/l10n_be/i18n/fr.po index 38896102997..ba5132a52e1 100644 --- a/addons/l10n_be/i18n/fr.po +++ b/addons/l10n_be/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/gl.po b/addons/l10n_be/i18n/gl.po index a3244748c2c..1c86065b2ee 100644 --- a/addons/l10n_be/i18n/gl.po +++ b/addons/l10n_be/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/hr.po b/addons/l10n_be/i18n/hr.po index edd6ec70c4b..f2e63413fe9 100644 --- a/addons/l10n_be/i18n/hr.po +++ b/addons/l10n_be/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/hu.po b/addons/l10n_be/i18n/hu.po index fc381db4ecb..806f221ba4c 100644 --- a/addons/l10n_be/i18n/hu.po +++ b/addons/l10n_be/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/id.po b/addons/l10n_be/i18n/id.po index 74530b94539..08851243c7c 100644 --- a/addons/l10n_be/i18n/id.po +++ b/addons/l10n_be/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/it.po b/addons/l10n_be/i18n/it.po index 4281a3e7ac7..73d719f902c 100644 --- a/addons/l10n_be/i18n/it.po +++ b/addons/l10n_be/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ja.po b/addons/l10n_be/i18n/ja.po index e2c87c43de4..a1fa3c03d4b 100644 --- a/addons/l10n_be/i18n/ja.po +++ b/addons/l10n_be/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ko.po b/addons/l10n_be/i18n/ko.po index f7151337223..f573e952e48 100644 --- a/addons/l10n_be/i18n/ko.po +++ b/addons/l10n_be/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/lt.po b/addons/l10n_be/i18n/lt.po index 2f2afcb3a54..04048b68e56 100644 --- a/addons/l10n_be/i18n/lt.po +++ b/addons/l10n_be/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/mk.po b/addons/l10n_be/i18n/mk.po index 31b6f066499..1e142cdb950 100644 --- a/addons/l10n_be/i18n/mk.po +++ b/addons/l10n_be/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/nl.po b/addons/l10n_be/i18n/nl.po index d683626a925..895321dd26b 100644 --- a/addons/l10n_be/i18n/nl.po +++ b/addons/l10n_be/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/nl_BE.po b/addons/l10n_be/i18n/nl_BE.po index 39ee8f36136..f9200a32c6c 100644 --- a/addons/l10n_be/i18n/nl_BE.po +++ b/addons/l10n_be/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/pl.po b/addons/l10n_be/i18n/pl.po index e9692844f1e..f2e05038f4b 100644 --- a/addons/l10n_be/i18n/pl.po +++ b/addons/l10n_be/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/pt.po b/addons/l10n_be/i18n/pt.po index 00e8c116ee4..48540b5b785 100644 --- a/addons/l10n_be/i18n/pt.po +++ b/addons/l10n_be/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/pt_BR.po b/addons/l10n_be/i18n/pt_BR.po index fa9e9621f28..e72bab5ebad 100644 --- a/addons/l10n_be/i18n/pt_BR.po +++ b/addons/l10n_be/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-07-18 21:21+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ro.po b/addons/l10n_be/i18n/ro.po index fee50eb2935..7c70fa8f825 100644 --- a/addons/l10n_be/i18n/ro.po +++ b/addons/l10n_be/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ru.po b/addons/l10n_be/i18n/ru.po index ec6bf1cedb5..dee34dd1526 100644 --- a/addons/l10n_be/i18n/ru.po +++ b/addons/l10n_be/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/sl.po b/addons/l10n_be/i18n/sl.po index 32d2c9e4c2e..71618e6fda2 100644 --- a/addons/l10n_be/i18n/sl.po +++ b/addons/l10n_be/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/sq.po b/addons/l10n_be/i18n/sq.po index 528f00a6de1..eff691d1bab 100644 --- a/addons/l10n_be/i18n/sq.po +++ b/addons/l10n_be/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/sr@latin.po b/addons/l10n_be/i18n/sr@latin.po index 61d48a39c3f..da190684752 100644 --- a/addons/l10n_be/i18n/sr@latin.po +++ b/addons/l10n_be/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/sv.po b/addons/l10n_be/i18n/sv.po index e21c8c6315c..0b72d80e2ec 100644 --- a/addons/l10n_be/i18n/sv.po +++ b/addons/l10n_be/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/tlh.po b/addons/l10n_be/i18n/tlh.po index d477f3dc469..f7e8cd0322b 100644 --- a/addons/l10n_be/i18n/tlh.po +++ b/addons/l10n_be/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/tr.po b/addons/l10n_be/i18n/tr.po index a09b11e5d9b..7a0a2ec9f65 100644 --- a/addons/l10n_be/i18n/tr.po +++ b/addons/l10n_be/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/uk.po b/addons/l10n_be/i18n/uk.po index e96fc7510e9..bd2c4e6ef04 100644 --- a/addons/l10n_be/i18n/uk.po +++ b/addons/l10n_be/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/vi.po b/addons/l10n_be/i18n/vi.po index 54eacb78bd4..54decc057da 100644 --- a/addons/l10n_be/i18n/vi.po +++ b/addons/l10n_be/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/zh_CN.po b/addons/l10n_be/i18n/zh_CN.po index 3c1f486fb1c..e293c0a5133 100644 --- a/addons/l10n_be/i18n/zh_CN.po +++ b/addons/l10n_be/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/zh_TW.po b/addons/l10n_be/i18n/zh_TW.po index f4481219f87..9aed127465d 100644 --- a/addons/l10n_be/i18n/zh_TW.po +++ b/addons/l10n_be/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:04+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be_coda/i18n/ar.po b/addons/l10n_be_coda/i18n/ar.po index 7085ce58f34..e59c5c6da03 100644 --- a/addons/l10n_be_coda/i18n/ar.po +++ b/addons/l10n_be_coda/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/bg.po b/addons/l10n_be_coda/i18n/bg.po index a213f8d0c7a..3d828c3d5ca 100644 --- a/addons/l10n_be_coda/i18n/bg.po +++ b/addons/l10n_be_coda/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ca.po b/addons/l10n_be_coda/i18n/ca.po index 9a27be66a4a..259325b0aed 100644 --- a/addons/l10n_be_coda/i18n/ca.po +++ b/addons/l10n_be_coda/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/da.po b/addons/l10n_be_coda/i18n/da.po index bfcc4af80a1..ea65d4e52de 100644 --- a/addons/l10n_be_coda/i18n/da.po +++ b/addons/l10n_be_coda/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/de.po b/addons/l10n_be_coda/i18n/de.po index a200066b1f0..d1c4b65fd9a 100644 --- a/addons/l10n_be_coda/i18n/de.po +++ b/addons/l10n_be_coda/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/el.po b/addons/l10n_be_coda/i18n/el.po index 2cc830c8150..8448256767e 100644 --- a/addons/l10n_be_coda/i18n/el.po +++ b/addons/l10n_be_coda/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/en_AU.po b/addons/l10n_be_coda/i18n/en_AU.po index d2da2734c92..e3fa7339a1a 100644 --- a/addons/l10n_be_coda/i18n/en_AU.po +++ b/addons/l10n_be_coda/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/en_GB.po b/addons/l10n_be_coda/i18n/en_GB.po index 0a425dc2e53..d897d9cc540 100644 --- a/addons/l10n_be_coda/i18n/en_GB.po +++ b/addons/l10n_be_coda/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/es.po b/addons/l10n_be_coda/i18n/es.po index 026979a7779..cb12e0b9332 100644 --- a/addons/l10n_be_coda/i18n/es.po +++ b/addons/l10n_be_coda/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/es_CR.po b/addons/l10n_be_coda/i18n/es_CR.po index 59e7b0ca1f1..93b52e617ad 100644 --- a/addons/l10n_be_coda/i18n/es_CR.po +++ b/addons/l10n_be_coda/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/es_EC.po b/addons/l10n_be_coda/i18n/es_EC.po index 159661d4d47..c1c3253c9d6 100644 --- a/addons/l10n_be_coda/i18n/es_EC.po +++ b/addons/l10n_be_coda/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/es_PY.po b/addons/l10n_be_coda/i18n/es_PY.po index 2305777b26d..fc0104a3048 100644 --- a/addons/l10n_be_coda/i18n/es_PY.po +++ b/addons/l10n_be_coda/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/et.po b/addons/l10n_be_coda/i18n/et.po index e4c613cffd0..40fc81d611c 100644 --- a/addons/l10n_be_coda/i18n/et.po +++ b/addons/l10n_be_coda/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/fa.po b/addons/l10n_be_coda/i18n/fa.po index 8e4571be26b..f86d3aa94d1 100644 --- a/addons/l10n_be_coda/i18n/fa.po +++ b/addons/l10n_be_coda/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/fi.po b/addons/l10n_be_coda/i18n/fi.po index 390e6ef81b4..39bb7b02e48 100644 --- a/addons/l10n_be_coda/i18n/fi.po +++ b/addons/l10n_be_coda/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/fr.po b/addons/l10n_be_coda/i18n/fr.po index a894e6efa18..ee2205aeeae 100644 --- a/addons/l10n_be_coda/i18n/fr.po +++ b/addons/l10n_be_coda/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/gl.po b/addons/l10n_be_coda/i18n/gl.po index 21376324997..3ba5465d764 100644 --- a/addons/l10n_be_coda/i18n/gl.po +++ b/addons/l10n_be_coda/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/hr.po b/addons/l10n_be_coda/i18n/hr.po index f79dbdd3ecd..2c614cbdd8a 100644 --- a/addons/l10n_be_coda/i18n/hr.po +++ b/addons/l10n_be_coda/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/hu.po b/addons/l10n_be_coda/i18n/hu.po index a1e8f652210..429c4491e8f 100644 --- a/addons/l10n_be_coda/i18n/hu.po +++ b/addons/l10n_be_coda/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/it.po b/addons/l10n_be_coda/i18n/it.po index 33e786f4e88..4ccf2eb87b7 100644 --- a/addons/l10n_be_coda/i18n/it.po +++ b/addons/l10n_be_coda/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ja.po b/addons/l10n_be_coda/i18n/ja.po index 8a3ee66dea5..1a5a4c4f921 100644 --- a/addons/l10n_be_coda/i18n/ja.po +++ b/addons/l10n_be_coda/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/lv.po b/addons/l10n_be_coda/i18n/lv.po index f4636a4f193..f21e670cd4c 100644 --- a/addons/l10n_be_coda/i18n/lv.po +++ b/addons/l10n_be_coda/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/mk.po b/addons/l10n_be_coda/i18n/mk.po index 92f17764694..cac6af0dbe4 100644 --- a/addons/l10n_be_coda/i18n/mk.po +++ b/addons/l10n_be_coda/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/mn.po b/addons/l10n_be_coda/i18n/mn.po index 5902d641e25..9ee11da2fef 100644 --- a/addons/l10n_be_coda/i18n/mn.po +++ b/addons/l10n_be_coda/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/nb.po b/addons/l10n_be_coda/i18n/nb.po index 2a8b104c906..2a907472527 100644 --- a/addons/l10n_be_coda/i18n/nb.po +++ b/addons/l10n_be_coda/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/nl.po b/addons/l10n_be_coda/i18n/nl.po index 910b5894fa5..ad63b24ce12 100644 --- a/addons/l10n_be_coda/i18n/nl.po +++ b/addons/l10n_be_coda/i18n/nl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/nl_BE.po b/addons/l10n_be_coda/i18n/nl_BE.po index 41bbc53a57c..459500a4239 100644 --- a/addons/l10n_be_coda/i18n/nl_BE.po +++ b/addons/l10n_be_coda/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/pl.po b/addons/l10n_be_coda/i18n/pl.po index 9e52f3ecf7e..996db4596b4 100644 --- a/addons/l10n_be_coda/i18n/pl.po +++ b/addons/l10n_be_coda/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/pt.po b/addons/l10n_be_coda/i18n/pt.po index db19bae9d3b..f77bd08035e 100644 --- a/addons/l10n_be_coda/i18n/pt.po +++ b/addons/l10n_be_coda/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/pt_BR.po b/addons/l10n_be_coda/i18n/pt_BR.po index 61cffcf9124..6f8bc22fc3d 100644 --- a/addons/l10n_be_coda/i18n/pt_BR.po +++ b/addons/l10n_be_coda/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-07-18 23:45+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ro.po b/addons/l10n_be_coda/i18n/ro.po index 0299f1c8be0..2f3681d6d03 100644 --- a/addons/l10n_be_coda/i18n/ro.po +++ b/addons/l10n_be_coda/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ru.po b/addons/l10n_be_coda/i18n/ru.po index 166383ef033..ab01e5936ee 100644 --- a/addons/l10n_be_coda/i18n/ru.po +++ b/addons/l10n_be_coda/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sl.po b/addons/l10n_be_coda/i18n/sl.po index 8025f31bab6..c7ccbce5a2a 100644 --- a/addons/l10n_be_coda/i18n/sl.po +++ b/addons/l10n_be_coda/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sq.po b/addons/l10n_be_coda/i18n/sq.po index a6688764cb1..0a423e50448 100644 --- a/addons/l10n_be_coda/i18n/sq.po +++ b/addons/l10n_be_coda/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:15+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sr.po b/addons/l10n_be_coda/i18n/sr.po index 41afd4b0fca..e806d912235 100644 --- a/addons/l10n_be_coda/i18n/sr.po +++ b/addons/l10n_be_coda/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:05+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sr@latin.po b/addons/l10n_be_coda/i18n/sr@latin.po index 9a495595b7e..595f38de5b1 100644 --- a/addons/l10n_be_coda/i18n/sr@latin.po +++ b/addons/l10n_be_coda/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sv.po b/addons/l10n_be_coda/i18n/sv.po index 27ca2dddde8..e52af034270 100644 --- a/addons/l10n_be_coda/i18n/sv.po +++ b/addons/l10n_be_coda/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/tr.po b/addons/l10n_be_coda/i18n/tr.po index 736b5765064..9708a369bc2 100644 --- a/addons/l10n_be_coda/i18n/tr.po +++ b/addons/l10n_be_coda/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/vi.po b/addons/l10n_be_coda/i18n/vi.po index cae34967fd1..b9cd65a8c06 100644 --- a/addons/l10n_be_coda/i18n/vi.po +++ b/addons/l10n_be_coda/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/zh_CN.po b/addons/l10n_be_coda/i18n/zh_CN.po index ebc86512554..45565c5c2c1 100644 --- a/addons/l10n_be_coda/i18n/zh_CN.po +++ b/addons/l10n_be_coda/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/zh_TW.po b/addons/l10n_be_coda/i18n/zh_TW.po index bfaade34553..d6b0b0e47e6 100644 --- a/addons/l10n_be_coda/i18n/zh_TW.po +++ b/addons/l10n_be_coda/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:16+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_hr_payroll/i18n/de.po b/addons/l10n_be_hr_payroll/i18n/de.po index ee2e20e8811..f5ecb8e425f 100644 --- a/addons/l10n_be_hr_payroll/i18n/de.po +++ b/addons/l10n_be_hr_payroll/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/es.po b/addons/l10n_be_hr_payroll/i18n/es.po index 0acfc7b2707..a8e34a26129 100644 --- a/addons/l10n_be_hr_payroll/i18n/es.po +++ b/addons/l10n_be_hr_payroll/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/es_CR.po b/addons/l10n_be_hr_payroll/i18n/es_CR.po index 45b7968260d..e83188726e9 100644 --- a/addons/l10n_be_hr_payroll/i18n/es_CR.po +++ b/addons/l10n_be_hr_payroll/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/nl.po b/addons/l10n_be_hr_payroll/i18n/nl.po index e2979cc8e8a..a8a75bd21e6 100644 --- a/addons/l10n_be_hr_payroll/i18n/nl.po +++ b/addons/l10n_be_hr_payroll/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/pt.po b/addons/l10n_be_hr_payroll/i18n/pt.po index 199495f24eb..4c7bf11b803 100644 --- a/addons/l10n_be_hr_payroll/i18n/pt.po +++ b/addons/l10n_be_hr_payroll/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/pt_BR.po b/addons/l10n_be_hr_payroll/i18n/pt_BR.po index 1d5c0d9f8f3..84b4301d2ae 100644 --- a/addons/l10n_be_hr_payroll/i18n/pt_BR.po +++ b/addons/l10n_be_hr_payroll/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/sl.po b/addons/l10n_be_hr_payroll/i18n/sl.po index 936b40b46b4..af2e54b75f6 100644 --- a/addons/l10n_be_hr_payroll/i18n/sl.po +++ b/addons/l10n_be_hr_payroll/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/sr@latin.po b/addons/l10n_be_hr_payroll/i18n/sr@latin.po index 2de7d1a9b3c..4255bb65957 100644 --- a/addons/l10n_be_hr_payroll/i18n/sr@latin.po +++ b/addons/l10n_be_hr_payroll/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/tr.po b/addons/l10n_be_hr_payroll/i18n/tr.po index 98b9653116b..4091e2c53de 100644 --- a/addons/l10n_be_hr_payroll/i18n/tr.po +++ b/addons/l10n_be_hr_payroll/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/zh_CN.po b/addons/l10n_be_hr_payroll/i18n/zh_CN.po index f3107fe660e..1fd3d7dd288 100644 --- a/addons/l10n_be_hr_payroll/i18n/zh_CN.po +++ b/addons/l10n_be_hr_payroll/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_invoice_bba/i18n/ar.po b/addons/l10n_be_invoice_bba/i18n/ar.po index 4c120995dfe..098b58a85dd 100644 --- a/addons/l10n_be_invoice_bba/i18n/ar.po +++ b/addons/l10n_be_invoice_bba/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/es.po b/addons/l10n_be_invoice_bba/i18n/es.po index 4d0e7cfe6b8..3371652f186 100644 --- a/addons/l10n_be_invoice_bba/i18n/es.po +++ b/addons/l10n_be_invoice_bba/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/es_CR.po b/addons/l10n_be_invoice_bba/i18n/es_CR.po index 5bbf831c549..4155e497c0b 100644 --- a/addons/l10n_be_invoice_bba/i18n/es_CR.po +++ b/addons/l10n_be_invoice_bba/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/fr.po b/addons/l10n_be_invoice_bba/i18n/fr.po index 261f916f3f7..b340919e91c 100644 --- a/addons/l10n_be_invoice_bba/i18n/fr.po +++ b/addons/l10n_be_invoice_bba/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/nb.po b/addons/l10n_be_invoice_bba/i18n/nb.po index d8961f1a934..82e4abfb4ec 100644 --- a/addons/l10n_be_invoice_bba/i18n/nb.po +++ b/addons/l10n_be_invoice_bba/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/nl.po b/addons/l10n_be_invoice_bba/i18n/nl.po index 1b333cd6d69..5a142dba16f 100644 --- a/addons/l10n_be_invoice_bba/i18n/nl.po +++ b/addons/l10n_be_invoice_bba/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/nl_BE.po b/addons/l10n_be_invoice_bba/i18n/nl_BE.po index db3c814f107..8a19807c4b6 100644 --- a/addons/l10n_be_invoice_bba/i18n/nl_BE.po +++ b/addons/l10n_be_invoice_bba/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/pt.po b/addons/l10n_be_invoice_bba/i18n/pt.po index 95678c82acf..a667a81159a 100644 --- a/addons/l10n_be_invoice_bba/i18n/pt.po +++ b/addons/l10n_be_invoice_bba/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/pt_BR.po b/addons/l10n_be_invoice_bba/i18n/pt_BR.po index 9793c64fedb..d382f379647 100644 --- a/addons/l10n_be_invoice_bba/i18n/pt_BR.po +++ b/addons/l10n_be_invoice_bba/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-07-18 21:22+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/sl.po b/addons/l10n_be_invoice_bba/i18n/sl.po index 83e37977e7b..732d82c4901 100644 --- a/addons/l10n_be_invoice_bba/i18n/sl.po +++ b/addons/l10n_be_invoice_bba/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/sr@latin.po b/addons/l10n_be_invoice_bba/i18n/sr@latin.po index 040cba6c958..be196be217f 100644 --- a/addons/l10n_be_invoice_bba/i18n/sr@latin.po +++ b/addons/l10n_be_invoice_bba/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/tr.po b/addons/l10n_be_invoice_bba/i18n/tr.po index 23529c95279..ea9b844ba92 100644 --- a/addons/l10n_be_invoice_bba/i18n/tr.po +++ b/addons/l10n_be_invoice_bba/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_bo/i18n/en_GB.po b/addons/l10n_bo/i18n/en_GB.po index 85a3be2d380..1cacc5ae1a7 100644 --- a/addons/l10n_bo/i18n/en_GB.po +++ b/addons/l10n_bo/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/es.po b/addons/l10n_bo/i18n/es.po index 1952ffaa471..bc3b6cb9ef2 100644 --- a/addons/l10n_bo/i18n/es.po +++ b/addons/l10n_bo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/it.po b/addons/l10n_bo/i18n/it.po index 41d367afc24..bf6f948bd30 100644 --- a/addons/l10n_bo/i18n/it.po +++ b/addons/l10n_bo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/nl.po b/addons/l10n_bo/i18n/nl.po index f98d4dd93c3..309cf545f59 100644 --- a/addons/l10n_bo/i18n/nl.po +++ b/addons/l10n_bo/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:22+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/pt.po b/addons/l10n_bo/i18n/pt.po index bcea8f5b666..5b01fcbcd94 100644 --- a/addons/l10n_bo/i18n/pt.po +++ b/addons/l10n_bo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/pt_BR.po b/addons/l10n_bo/i18n/pt_BR.po index f9a4c0ccc61..01d100077eb 100644 --- a/addons/l10n_bo/i18n/pt_BR.po +++ b/addons/l10n_bo/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/sl.po b/addons/l10n_bo/i18n/sl.po index a5a84d816a1..10235c5ffbb 100644 --- a/addons/l10n_bo/i18n/sl.po +++ b/addons/l10n_bo/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/tr.po b/addons/l10n_bo/i18n/tr.po index 18b03d885d1..702ffe0febd 100644 --- a/addons/l10n_bo/i18n/tr.po +++ b/addons/l10n_bo/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_br/i18n/ar.po b/addons/l10n_br/i18n/ar.po index 2c034df1d7f..fb1143585c1 100644 --- a/addons/l10n_br/i18n/ar.po +++ b/addons/l10n_br/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/bg.po b/addons/l10n_br/i18n/bg.po index 7185e8c8a07..029af80b968 100644 --- a/addons/l10n_br/i18n/bg.po +++ b/addons/l10n_br/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/ca.po b/addons/l10n_br/i18n/ca.po index 8856b3ba153..a88aea7de66 100644 --- a/addons/l10n_br/i18n/ca.po +++ b/addons/l10n_br/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/da.po b/addons/l10n_br/i18n/da.po index 1cc3d79f92a..74387eed60b 100644 --- a/addons/l10n_br/i18n/da.po +++ b/addons/l10n_br/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/en_GB.po b/addons/l10n_br/i18n/en_GB.po index 77c800c0bd1..ce6e2692b7b 100644 --- a/addons/l10n_br/i18n/en_GB.po +++ b/addons/l10n_br/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/es.po b/addons/l10n_br/i18n/es.po index 4bf955ff14d..55665ef96b8 100644 --- a/addons/l10n_br/i18n/es.po +++ b/addons/l10n_br/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/es_CR.po b/addons/l10n_br/i18n/es_CR.po index 60bfd2c6495..580f789c714 100644 --- a/addons/l10n_br/i18n/es_CR.po +++ b/addons/l10n_br/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/es_PY.po b/addons/l10n_br/i18n/es_PY.po index f71d1eaf715..77d9d88cf18 100644 --- a/addons/l10n_br/i18n/es_PY.po +++ b/addons/l10n_br/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/fr.po b/addons/l10n_br/i18n/fr.po index 6edd486c7b9..1b3138c89e6 100644 --- a/addons/l10n_br/i18n/fr.po +++ b/addons/l10n_br/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/gl.po b/addons/l10n_br/i18n/gl.po index cac99755542..cb186c09141 100644 --- a/addons/l10n_br/i18n/gl.po +++ b/addons/l10n_br/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/hi.po b/addons/l10n_br/i18n/hi.po index fcb76f02413..b31f28563a2 100644 --- a/addons/l10n_br/i18n/hi.po +++ b/addons/l10n_br/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/it.po b/addons/l10n_br/i18n/it.po index 5cf74c1ce6a..e6f1347d4c8 100644 --- a/addons/l10n_br/i18n/it.po +++ b/addons/l10n_br/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/nb.po b/addons/l10n_br/i18n/nb.po index ca55b690402..16f09d76edf 100644 --- a/addons/l10n_br/i18n/nb.po +++ b/addons/l10n_br/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/nl.po b/addons/l10n_br/i18n/nl.po index 2dd813d4577..f40897b6698 100644 --- a/addons/l10n_br/i18n/nl.po +++ b/addons/l10n_br/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/oc.po b/addons/l10n_br/i18n/oc.po index d0339aee499..462eb6caa73 100644 --- a/addons/l10n_br/i18n/oc.po +++ b/addons/l10n_br/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/pt.po b/addons/l10n_br/i18n/pt.po index b0e077e488f..07f7f3fb760 100644 --- a/addons/l10n_br/i18n/pt.po +++ b/addons/l10n_br/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/pt_BR.po b/addons/l10n_br/i18n/pt_BR.po index c7a604abeba..04dd267e5fa 100644 --- a/addons/l10n_br/i18n/pt_BR.po +++ b/addons/l10n_br/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/ru.po b/addons/l10n_br/i18n/ru.po index 604cfaa7ab2..6c0255551bc 100644 --- a/addons/l10n_br/i18n/ru.po +++ b/addons/l10n_br/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/sl.po b/addons/l10n_br/i18n/sl.po index 4a238ddded9..c2e33b3cb4d 100644 --- a/addons/l10n_br/i18n/sl.po +++ b/addons/l10n_br/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/sq.po b/addons/l10n_br/i18n/sq.po index 3dd3bdb1c1c..8dab63a492f 100644 --- a/addons/l10n_br/i18n/sq.po +++ b/addons/l10n_br/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/sr@latin.po b/addons/l10n_br/i18n/sr@latin.po index bee0ec04a72..3a391b3d15b 100644 --- a/addons/l10n_br/i18n/sr@latin.po +++ b/addons/l10n_br/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/tr.po b/addons/l10n_br/i18n/tr.po index e896f36dddf..0f87d90c3b6 100644 --- a/addons/l10n_br/i18n/tr.po +++ b/addons/l10n_br/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_ca/i18n/ar.po b/addons/l10n_ca/i18n/ar.po index c87daede410..c4fc1cf2641 100644 --- a/addons/l10n_ca/i18n/ar.po +++ b/addons/l10n_ca/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/ca.po b/addons/l10n_ca/i18n/ca.po index bbd43858dc8..4d3e98fb66c 100644 --- a/addons/l10n_ca/i18n/ca.po +++ b/addons/l10n_ca/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/da.po b/addons/l10n_ca/i18n/da.po index b8cf0dbec40..25f7f393527 100644 --- a/addons/l10n_ca/i18n/da.po +++ b/addons/l10n_ca/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/de.po b/addons/l10n_ca/i18n/de.po index d002c73e0da..6d87833bb04 100644 --- a/addons/l10n_ca/i18n/de.po +++ b/addons/l10n_ca/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/en_GB.po b/addons/l10n_ca/i18n/en_GB.po index de64e87ad32..643d59c66ed 100644 --- a/addons/l10n_ca/i18n/en_GB.po +++ b/addons/l10n_ca/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/es.po b/addons/l10n_ca/i18n/es.po index 9991a61ad46..794db5a03b8 100644 --- a/addons/l10n_ca/i18n/es.po +++ b/addons/l10n_ca/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/es_CR.po b/addons/l10n_ca/i18n/es_CR.po index 729d906da9b..c98098f296c 100644 --- a/addons/l10n_ca/i18n/es_CR.po +++ b/addons/l10n_ca/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/es_PY.po b/addons/l10n_ca/i18n/es_PY.po index 309c9a65341..eb2dbe4e7cd 100644 --- a/addons/l10n_ca/i18n/es_PY.po +++ b/addons/l10n_ca/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/fr.po b/addons/l10n_ca/i18n/fr.po index dd24ded4f34..48e6d5ca8d4 100644 --- a/addons/l10n_ca/i18n/fr.po +++ b/addons/l10n_ca/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/gl.po b/addons/l10n_ca/i18n/gl.po index bad0549e151..da863e02098 100644 --- a/addons/l10n_ca/i18n/gl.po +++ b/addons/l10n_ca/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/hu.po b/addons/l10n_ca/i18n/hu.po index 2d7cb8b773d..066392afa6e 100644 --- a/addons/l10n_ca/i18n/hu.po +++ b/addons/l10n_ca/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/it.po b/addons/l10n_ca/i18n/it.po index 652c3843132..3f74e8ed35a 100644 --- a/addons/l10n_ca/i18n/it.po +++ b/addons/l10n_ca/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/nb.po b/addons/l10n_ca/i18n/nb.po index 322e7e3b09e..7f1049fb211 100644 --- a/addons/l10n_ca/i18n/nb.po +++ b/addons/l10n_ca/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/nl.po b/addons/l10n_ca/i18n/nl.po index 1edd6d878f2..b5f046e6844 100644 --- a/addons/l10n_ca/i18n/nl.po +++ b/addons/l10n_ca/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/pt.po b/addons/l10n_ca/i18n/pt.po index 77b558a0236..e0452bebb57 100644 --- a/addons/l10n_ca/i18n/pt.po +++ b/addons/l10n_ca/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/pt_BR.po b/addons/l10n_ca/i18n/pt_BR.po index 8807a2b82e1..76420f40f70 100644 --- a/addons/l10n_ca/i18n/pt_BR.po +++ b/addons/l10n_ca/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/sl.po b/addons/l10n_ca/i18n/sl.po index 2b8c313ab33..26365e359fa 100644 --- a/addons/l10n_ca/i18n/sl.po +++ b/addons/l10n_ca/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/sr@latin.po b/addons/l10n_ca/i18n/sr@latin.po index 64e6bfe6648..795a6b06055 100644 --- a/addons/l10n_ca/i18n/sr@latin.po +++ b/addons/l10n_ca/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/tr.po b/addons/l10n_ca/i18n/tr.po index c77551fde9d..1706a71155c 100644 --- a/addons/l10n_ca/i18n/tr.po +++ b/addons/l10n_ca/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/zh_CN.po b/addons/l10n_ca/i18n/zh_CN.po index 689d1130f85..b57e369936d 100644 --- a/addons/l10n_ca/i18n/zh_CN.po +++ b/addons/l10n_ca/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_cl/i18n/es.po b/addons/l10n_cl/i18n/es.po index d5102c18c0a..b2dc57764be 100644 --- a/addons/l10n_cl/i18n/es.po +++ b/addons/l10n_cl/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cl/i18n/nl.po b/addons/l10n_cl/i18n/nl.po index 31947c03cc8..f90d5600933 100644 --- a/addons/l10n_cl/i18n/nl.po +++ b/addons/l10n_cl/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 06:30+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cl/i18n/pt_BR.po b/addons/l10n_cl/i18n/pt_BR.po index efb66393832..bc9c9d8d461 100644 --- a/addons/l10n_cl/i18n/pt_BR.po +++ b/addons/l10n_cl/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-07-18 21:10+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cl/i18n/sl.po b/addons/l10n_cl/i18n/sl.po index 10dedbd2392..db48e7f3e22 100644 --- a/addons/l10n_cl/i18n/sl.po +++ b/addons/l10n_cl/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cl/i18n/tr.po b/addons/l10n_cl/i18n/tr.po index 0c583f60a54..2a3afcd87a0 100644 --- a/addons/l10n_cl/i18n/tr.po +++ b/addons/l10n_cl/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cl/i18n/zh_CN.po b/addons/l10n_cl/i18n/zh_CN.po index ba6df680063..891b9be1147 100644 --- a/addons/l10n_cl/i18n/zh_CN.po +++ b/addons/l10n_cl/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cn/i18n/ar.po b/addons/l10n_cn/i18n/ar.po index a377ecc4f1a..c06cfc38dd1 100644 --- a/addons/l10n_cn/i18n/ar.po +++ b/addons/l10n_cn/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/ca.po b/addons/l10n_cn/i18n/ca.po index a41b09f65bd..842cc72b052 100644 --- a/addons/l10n_cn/i18n/ca.po +++ b/addons/l10n_cn/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/da.po b/addons/l10n_cn/i18n/da.po index ae9079922e3..e786b61b1df 100644 --- a/addons/l10n_cn/i18n/da.po +++ b/addons/l10n_cn/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/es.po b/addons/l10n_cn/i18n/es.po index c14ed5d1122..42acf540002 100644 --- a/addons/l10n_cn/i18n/es.po +++ b/addons/l10n_cn/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/es_CR.po b/addons/l10n_cn/i18n/es_CR.po index da7858fe329..2cbb19ddec7 100644 --- a/addons/l10n_cn/i18n/es_CR.po +++ b/addons/l10n_cn/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/es_PY.po b/addons/l10n_cn/i18n/es_PY.po index adf3c0ac08a..6ca86bfb6d2 100644 --- a/addons/l10n_cn/i18n/es_PY.po +++ b/addons/l10n_cn/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/gl.po b/addons/l10n_cn/i18n/gl.po index b9a59298df0..a4ad66085f6 100644 --- a/addons/l10n_cn/i18n/gl.po +++ b/addons/l10n_cn/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/it.po b/addons/l10n_cn/i18n/it.po index 3bf76a8837c..2d362497a02 100644 --- a/addons/l10n_cn/i18n/it.po +++ b/addons/l10n_cn/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/nb.po b/addons/l10n_cn/i18n/nb.po index 8137d2251a3..2d31f8100e9 100644 --- a/addons/l10n_cn/i18n/nb.po +++ b/addons/l10n_cn/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/pt_BR.po b/addons/l10n_cn/i18n/pt_BR.po index 46324ec8211..bb67086a5ce 100644 --- a/addons/l10n_cn/i18n/pt_BR.po +++ b/addons/l10n_cn/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/sl.po b/addons/l10n_cn/i18n/sl.po index e8e5bb6254e..d53282331b7 100644 --- a/addons/l10n_cn/i18n/sl.po +++ b/addons/l10n_cn/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/sr@latin.po b/addons/l10n_cn/i18n/sr@latin.po index b578faf5b1a..3a13b15cb75 100644 --- a/addons/l10n_cn/i18n/sr@latin.po +++ b/addons/l10n_cn/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/tr.po b/addons/l10n_cn/i18n/tr.po index 1b9334e42c5..2db6a89ac1c 100644 --- a/addons/l10n_cn/i18n/tr.po +++ b/addons/l10n_cn/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/zh_CN.po b/addons/l10n_cn/i18n/zh_CN.po index 3cbfaf2e6ef..7d0d22327b8 100644 --- a/addons/l10n_cn/i18n/zh_CN.po +++ b/addons/l10n_cn/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/zh_TW.po b/addons/l10n_cn/i18n/zh_TW.po index 6b979f2eb72..e28acd74954 100644 --- a/addons/l10n_cn/i18n/zh_TW.po +++ b/addons/l10n_cn/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cr/i18n/ar.po b/addons/l10n_cr/i18n/ar.po index 00e3fe6dc4e..d7b4c959936 100644 --- a/addons/l10n_cr/i18n/ar.po +++ b/addons/l10n_cr/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/ca.po b/addons/l10n_cr/i18n/ca.po index 8689eb08de1..05944eafc86 100644 --- a/addons/l10n_cr/i18n/ca.po +++ b/addons/l10n_cr/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/da.po b/addons/l10n_cr/i18n/da.po index 5cebda586de..865c60eb9b7 100644 --- a/addons/l10n_cr/i18n/da.po +++ b/addons/l10n_cr/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/es.po b/addons/l10n_cr/i18n/es.po index d7aa21967fe..1c6ea3774a8 100644 --- a/addons/l10n_cr/i18n/es.po +++ b/addons/l10n_cr/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/es_CR.po b/addons/l10n_cr/i18n/es_CR.po index 6aa211d5bb8..8243b6a8cde 100644 --- a/addons/l10n_cr/i18n/es_CR.po +++ b/addons/l10n_cr/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/es_PY.po b/addons/l10n_cr/i18n/es_PY.po index e6dcd22743d..58c63efecf0 100644 --- a/addons/l10n_cr/i18n/es_PY.po +++ b/addons/l10n_cr/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/fr.po b/addons/l10n_cr/i18n/fr.po index 42b0e577873..21c2001fe2b 100644 --- a/addons/l10n_cr/i18n/fr.po +++ b/addons/l10n_cr/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/gl.po b/addons/l10n_cr/i18n/gl.po index bb8a3a8d618..9219ade0bdb 100644 --- a/addons/l10n_cr/i18n/gl.po +++ b/addons/l10n_cr/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/it.po b/addons/l10n_cr/i18n/it.po index 617775233aa..e9778b73bb2 100644 --- a/addons/l10n_cr/i18n/it.po +++ b/addons/l10n_cr/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/mn.po b/addons/l10n_cr/i18n/mn.po index 25c90aeeb27..6107e0314e1 100644 --- a/addons/l10n_cr/i18n/mn.po +++ b/addons/l10n_cr/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/nl.po b/addons/l10n_cr/i18n/nl.po index 6b3ab0d1498..4854fac8729 100644 --- a/addons/l10n_cr/i18n/nl.po +++ b/addons/l10n_cr/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:22+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/pt.po b/addons/l10n_cr/i18n/pt.po index 36b93da9a88..c5dd33f2752 100644 --- a/addons/l10n_cr/i18n/pt.po +++ b/addons/l10n_cr/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/pt_BR.po b/addons/l10n_cr/i18n/pt_BR.po index acfc4c2b807..95c3eb23ed4 100644 --- a/addons/l10n_cr/i18n/pt_BR.po +++ b/addons/l10n_cr/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/sl.po b/addons/l10n_cr/i18n/sl.po index 917cfa49b82..4b2f2fee6ff 100644 --- a/addons/l10n_cr/i18n/sl.po +++ b/addons/l10n_cr/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/tr.po b/addons/l10n_cr/i18n/tr.po index 7792f6c7916..4f0ddce6b1a 100644 --- a/addons/l10n_cr/i18n/tr.po +++ b/addons/l10n_cr/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_de/i18n/ar.po b/addons/l10n_de/i18n/ar.po index 7f71d9f772f..29794c1d8a0 100644 --- a/addons/l10n_de/i18n/ar.po +++ b/addons/l10n_de/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/bg.po b/addons/l10n_de/i18n/bg.po index 8cc6ed155e2..4f76e09ca3e 100644 --- a/addons/l10n_de/i18n/bg.po +++ b/addons/l10n_de/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/bs.po b/addons/l10n_de/i18n/bs.po index 414dbad16e8..4673891c572 100644 --- a/addons/l10n_de/i18n/bs.po +++ b/addons/l10n_de/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/ca.po b/addons/l10n_de/i18n/ca.po index 5f49b906403..1ccd4febccb 100644 --- a/addons/l10n_de/i18n/ca.po +++ b/addons/l10n_de/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/cs.po b/addons/l10n_de/i18n/cs.po index 7fac54001fc..c2688ec5feb 100644 --- a/addons/l10n_de/i18n/cs.po +++ b/addons/l10n_de/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/da.po b/addons/l10n_de/i18n/da.po index a8c9ace3bd5..fb4d613ca27 100644 --- a/addons/l10n_de/i18n/da.po +++ b/addons/l10n_de/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/de.po b/addons/l10n_de/i18n/de.po index 179a471b0b2..ec9ed9d2ba2 100644 --- a/addons/l10n_de/i18n/de.po +++ b/addons/l10n_de/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/es.po b/addons/l10n_de/i18n/es.po index 89f786a2b16..5fc2091d707 100644 --- a/addons/l10n_de/i18n/es.po +++ b/addons/l10n_de/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/es_CR.po b/addons/l10n_de/i18n/es_CR.po index 448e70ac0ac..a00f5287223 100644 --- a/addons/l10n_de/i18n/es_CR.po +++ b/addons/l10n_de/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/es_PY.po b/addons/l10n_de/i18n/es_PY.po index 2c7fad35696..993841cc5d8 100644 --- a/addons/l10n_de/i18n/es_PY.po +++ b/addons/l10n_de/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/et.po b/addons/l10n_de/i18n/et.po index b36fcbe478e..e89eb7e4623 100644 --- a/addons/l10n_de/i18n/et.po +++ b/addons/l10n_de/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/fr.po b/addons/l10n_de/i18n/fr.po index ebe5da79896..ba3338d4f8e 100644 --- a/addons/l10n_de/i18n/fr.po +++ b/addons/l10n_de/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/gl.po b/addons/l10n_de/i18n/gl.po index 3019fdccebb..cda5da558c9 100644 --- a/addons/l10n_de/i18n/gl.po +++ b/addons/l10n_de/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/hr.po b/addons/l10n_de/i18n/hr.po index 7815b25005b..35e2d8e710b 100644 --- a/addons/l10n_de/i18n/hr.po +++ b/addons/l10n_de/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/hu.po b/addons/l10n_de/i18n/hu.po index 95d44914a96..be8e96d0b15 100644 --- a/addons/l10n_de/i18n/hu.po +++ b/addons/l10n_de/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/id.po b/addons/l10n_de/i18n/id.po index c878f4173ad..fbffd321da7 100644 --- a/addons/l10n_de/i18n/id.po +++ b/addons/l10n_de/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/it.po b/addons/l10n_de/i18n/it.po index 2c3ad31530b..7bad81f83f3 100644 --- a/addons/l10n_de/i18n/it.po +++ b/addons/l10n_de/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/ko.po b/addons/l10n_de/i18n/ko.po index be0a58f178c..aa7eaea8967 100644 --- a/addons/l10n_de/i18n/ko.po +++ b/addons/l10n_de/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/lt.po b/addons/l10n_de/i18n/lt.po index eddfe17ce50..31b7c681dfd 100644 --- a/addons/l10n_de/i18n/lt.po +++ b/addons/l10n_de/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/nb.po b/addons/l10n_de/i18n/nb.po index 25e2e998892..f014d7f9c33 100644 --- a/addons/l10n_de/i18n/nb.po +++ b/addons/l10n_de/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/nl.po b/addons/l10n_de/i18n/nl.po index 2b006bb2cbf..7b34a622f13 100644 --- a/addons/l10n_de/i18n/nl.po +++ b/addons/l10n_de/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/pl.po b/addons/l10n_de/i18n/pl.po index c0d5bbb0092..57756662064 100644 --- a/addons/l10n_de/i18n/pl.po +++ b/addons/l10n_de/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/pt.po b/addons/l10n_de/i18n/pt.po index 7e554fd2f07..bbfcfb1dd11 100644 --- a/addons/l10n_de/i18n/pt.po +++ b/addons/l10n_de/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/pt_BR.po b/addons/l10n_de/i18n/pt_BR.po index d7941bf3cf3..ac699c69e71 100644 --- a/addons/l10n_de/i18n/pt_BR.po +++ b/addons/l10n_de/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/ro.po b/addons/l10n_de/i18n/ro.po index 0e900e8cd5c..123e55a9ace 100644 --- a/addons/l10n_de/i18n/ro.po +++ b/addons/l10n_de/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/ru.po b/addons/l10n_de/i18n/ru.po index 84201779ae5..233e1de6abd 100644 --- a/addons/l10n_de/i18n/ru.po +++ b/addons/l10n_de/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/sl.po b/addons/l10n_de/i18n/sl.po index 9df8b8a3b60..878b899e9de 100644 --- a/addons/l10n_de/i18n/sl.po +++ b/addons/l10n_de/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/sr@latin.po b/addons/l10n_de/i18n/sr@latin.po index 99543339c1d..434fe040671 100644 --- a/addons/l10n_de/i18n/sr@latin.po +++ b/addons/l10n_de/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/sv.po b/addons/l10n_de/i18n/sv.po index 78cf24c76a0..b231aa830fa 100644 --- a/addons/l10n_de/i18n/sv.po +++ b/addons/l10n_de/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/tr.po b/addons/l10n_de/i18n/tr.po index ededad402da..708c18eeb7b 100644 --- a/addons/l10n_de/i18n/tr.po +++ b/addons/l10n_de/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/vi.po b/addons/l10n_de/i18n/vi.po index 35a0bc07d11..667cd8b8640 100644 --- a/addons/l10n_de/i18n/vi.po +++ b/addons/l10n_de/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/zh_CN.po b/addons/l10n_de/i18n/zh_CN.po index b36fcbe478e..e89eb7e4623 100644 --- a/addons/l10n_de/i18n/zh_CN.po +++ b/addons/l10n_de/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/zh_TW.po b/addons/l10n_de/i18n/zh_TW.po index dbbb3f25527..9604241ccd2 100644 --- a/addons/l10n_de/i18n/zh_TW.po +++ b/addons/l10n_de/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_ec/i18n/ar.po b/addons/l10n_ec/i18n/ar.po index 21bc0b4408f..a5c2765dbe1 100644 --- a/addons/l10n_ec/i18n/ar.po +++ b/addons/l10n_ec/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/ca.po b/addons/l10n_ec/i18n/ca.po index 346393d1f03..9723addf031 100644 --- a/addons/l10n_ec/i18n/ca.po +++ b/addons/l10n_ec/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/da.po b/addons/l10n_ec/i18n/da.po index 9a88ef7f139..baa45206182 100644 --- a/addons/l10n_ec/i18n/da.po +++ b/addons/l10n_ec/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/es.po b/addons/l10n_ec/i18n/es.po index 4b7d8e8235c..8a60f58f3e4 100644 --- a/addons/l10n_ec/i18n/es.po +++ b/addons/l10n_ec/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/es_CR.po b/addons/l10n_ec/i18n/es_CR.po index d77be51c939..03873a7fea3 100644 --- a/addons/l10n_ec/i18n/es_CR.po +++ b/addons/l10n_ec/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/es_EC.po b/addons/l10n_ec/i18n/es_EC.po index 40f3135c32a..e7c8993076a 100644 --- a/addons/l10n_ec/i18n/es_EC.po +++ b/addons/l10n_ec/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/es_PY.po b/addons/l10n_ec/i18n/es_PY.po index 3b45572eceb..a1b91fcd25c 100644 --- a/addons/l10n_ec/i18n/es_PY.po +++ b/addons/l10n_ec/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/fr.po b/addons/l10n_ec/i18n/fr.po index af09d3d71c3..738669bee38 100644 --- a/addons/l10n_ec/i18n/fr.po +++ b/addons/l10n_ec/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/gl.po b/addons/l10n_ec/i18n/gl.po index 60f831ad492..c01578d2423 100644 --- a/addons/l10n_ec/i18n/gl.po +++ b/addons/l10n_ec/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/it.po b/addons/l10n_ec/i18n/it.po index 5886fff7657..d386c9f3ef9 100644 --- a/addons/l10n_ec/i18n/it.po +++ b/addons/l10n_ec/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/nl.po b/addons/l10n_ec/i18n/nl.po index ecdef2a0d2f..624647ffb6d 100644 --- a/addons/l10n_ec/i18n/nl.po +++ b/addons/l10n_ec/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/pt.po b/addons/l10n_ec/i18n/pt.po index eedd0b63440..cfc0d8972f8 100644 --- a/addons/l10n_ec/i18n/pt.po +++ b/addons/l10n_ec/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/pt_BR.po b/addons/l10n_ec/i18n/pt_BR.po index 231737a4b00..b836498ee97 100644 --- a/addons/l10n_ec/i18n/pt_BR.po +++ b/addons/l10n_ec/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/sl.po b/addons/l10n_ec/i18n/sl.po index ae54bdf2e58..06b00a3dd8d 100644 --- a/addons/l10n_ec/i18n/sl.po +++ b/addons/l10n_ec/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/tr.po b/addons/l10n_ec/i18n/tr.po index 3328d9a40f5..1a003375a61 100644 --- a/addons/l10n_ec/i18n/tr.po +++ b/addons/l10n_ec/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_es/i18n/ar.po b/addons/l10n_es/i18n/ar.po index b4d7c49a833..8aded8b4300 100644 --- a/addons/l10n_es/i18n/ar.po +++ b/addons/l10n_es/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/ca.po b/addons/l10n_es/i18n/ca.po index b0d6d0d7b37..860081fc867 100644 --- a/addons/l10n_es/i18n/ca.po +++ b/addons/l10n_es/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/da.po b/addons/l10n_es/i18n/da.po index 8caa74ced7b..1e5f221ae2c 100644 --- a/addons/l10n_es/i18n/da.po +++ b/addons/l10n_es/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/de.po b/addons/l10n_es/i18n/de.po index 37ee7a13b9b..af1d88153b5 100644 --- a/addons/l10n_es/i18n/de.po +++ b/addons/l10n_es/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/es.po b/addons/l10n_es/i18n/es.po index 2b8c5e1c331..b8ade9b7975 100644 --- a/addons/l10n_es/i18n/es.po +++ b/addons/l10n_es/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/es_CR.po b/addons/l10n_es/i18n/es_CR.po index 7e110f976f3..cfadcdf2eb6 100644 --- a/addons/l10n_es/i18n/es_CR.po +++ b/addons/l10n_es/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/es_PY.po b/addons/l10n_es/i18n/es_PY.po index 983807bdd31..cd6ecb52a70 100644 --- a/addons/l10n_es/i18n/es_PY.po +++ b/addons/l10n_es/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/fr.po b/addons/l10n_es/i18n/fr.po index 46f8b891bb5..27251bdae75 100644 --- a/addons/l10n_es/i18n/fr.po +++ b/addons/l10n_es/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/gl.po b/addons/l10n_es/i18n/gl.po index b9836ac7a09..d57c4472478 100644 --- a/addons/l10n_es/i18n/gl.po +++ b/addons/l10n_es/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/hu.po b/addons/l10n_es/i18n/hu.po index 37d2daa43eb..bd6d7b3b20e 100644 --- a/addons/l10n_es/i18n/hu.po +++ b/addons/l10n_es/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/it.po b/addons/l10n_es/i18n/it.po index 7dbe648d5aa..d0dbdda7856 100644 --- a/addons/l10n_es/i18n/it.po +++ b/addons/l10n_es/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/nl.po b/addons/l10n_es/i18n/nl.po index 2a6a012116d..3c729693b55 100644 --- a/addons/l10n_es/i18n/nl.po +++ b/addons/l10n_es/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/oc.po b/addons/l10n_es/i18n/oc.po index a7bace31225..2ae3de1e2d8 100644 --- a/addons/l10n_es/i18n/oc.po +++ b/addons/l10n_es/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/pt.po b/addons/l10n_es/i18n/pt.po index 3ae40c2fe76..7ee1c5c5cf4 100644 --- a/addons/l10n_es/i18n/pt.po +++ b/addons/l10n_es/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/pt_BR.po b/addons/l10n_es/i18n/pt_BR.po index 4e1cc4e093f..c341f32e3e0 100644 --- a/addons/l10n_es/i18n/pt_BR.po +++ b/addons/l10n_es/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/sl.po b/addons/l10n_es/i18n/sl.po index a42a7c6e61e..586babfe9ff 100644 --- a/addons/l10n_es/i18n/sl.po +++ b/addons/l10n_es/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/sr@latin.po b/addons/l10n_es/i18n/sr@latin.po index 11e3aefde53..cc951e54fd9 100644 --- a/addons/l10n_es/i18n/sr@latin.po +++ b/addons/l10n_es/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/tr.po b/addons/l10n_es/i18n/tr.po index a423c101a41..05f8675c516 100644 --- a/addons/l10n_es/i18n/tr.po +++ b/addons/l10n_es/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_fr/i18n/ar.po b/addons/l10n_fr/i18n/ar.po index 916f8080b96..53fe22c9e3a 100644 --- a/addons/l10n_fr/i18n/ar.po +++ b/addons/l10n_fr/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/bg.po b/addons/l10n_fr/i18n/bg.po index f8b1bd182dd..119ab65ade4 100644 --- a/addons/l10n_fr/i18n/bg.po +++ b/addons/l10n_fr/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/bs.po b/addons/l10n_fr/i18n/bs.po index cb57ecaf8c4..3bb5776e447 100644 --- a/addons/l10n_fr/i18n/bs.po +++ b/addons/l10n_fr/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ca.po b/addons/l10n_fr/i18n/ca.po index 2ceb5d0917a..5db791f80f7 100644 --- a/addons/l10n_fr/i18n/ca.po +++ b/addons/l10n_fr/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/cs.po b/addons/l10n_fr/i18n/cs.po index b6fa30fb5b0..bd3f7e27f57 100644 --- a/addons/l10n_fr/i18n/cs.po +++ b/addons/l10n_fr/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/da.po b/addons/l10n_fr/i18n/da.po index 1b46a109eed..78374365abf 100644 --- a/addons/l10n_fr/i18n/da.po +++ b/addons/l10n_fr/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/de.po b/addons/l10n_fr/i18n/de.po index 2698e3ec5aa..6390b7ce1bd 100644 --- a/addons/l10n_fr/i18n/de.po +++ b/addons/l10n_fr/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es.po b/addons/l10n_fr/i18n/es.po index 2e918001189..434592e22b7 100644 --- a/addons/l10n_fr/i18n/es.po +++ b/addons/l10n_fr/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es_AR.po b/addons/l10n_fr/i18n/es_AR.po index e3d93223873..ba66cdbf46b 100644 --- a/addons/l10n_fr/i18n/es_AR.po +++ b/addons/l10n_fr/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es_CR.po b/addons/l10n_fr/i18n/es_CR.po index f8790424415..e89ae1ec51d 100644 --- a/addons/l10n_fr/i18n/es_CR.po +++ b/addons/l10n_fr/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es_PY.po b/addons/l10n_fr/i18n/es_PY.po index 0ebf647b1fa..57cb753ba11 100644 --- a/addons/l10n_fr/i18n/es_PY.po +++ b/addons/l10n_fr/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/et.po b/addons/l10n_fr/i18n/et.po index c39cb3215ab..793c65ef27c 100644 --- a/addons/l10n_fr/i18n/et.po +++ b/addons/l10n_fr/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/fr.po b/addons/l10n_fr/i18n/fr.po index 580018c75cb..cf720292fdb 100644 --- a/addons/l10n_fr/i18n/fr.po +++ b/addons/l10n_fr/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/gl.po b/addons/l10n_fr/i18n/gl.po index 247c53d628f..d4ab72c7b55 100644 --- a/addons/l10n_fr/i18n/gl.po +++ b/addons/l10n_fr/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/hr.po b/addons/l10n_fr/i18n/hr.po index 1407cfcc5c5..5fb7482f782 100644 --- a/addons/l10n_fr/i18n/hr.po +++ b/addons/l10n_fr/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/hu.po b/addons/l10n_fr/i18n/hu.po index 09815fc67e1..7e989f44aa4 100644 --- a/addons/l10n_fr/i18n/hu.po +++ b/addons/l10n_fr/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/id.po b/addons/l10n_fr/i18n/id.po index ba0eab7ef33..41a94a7f66d 100644 --- a/addons/l10n_fr/i18n/id.po +++ b/addons/l10n_fr/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/it.po b/addons/l10n_fr/i18n/it.po index 696224f46f5..41ac196e005 100644 --- a/addons/l10n_fr/i18n/it.po +++ b/addons/l10n_fr/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ko.po b/addons/l10n_fr/i18n/ko.po index 74f67e7b80c..004c41c0aab 100644 --- a/addons/l10n_fr/i18n/ko.po +++ b/addons/l10n_fr/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/lt.po b/addons/l10n_fr/i18n/lt.po index 05773b28b0c..6841ed64730 100644 --- a/addons/l10n_fr/i18n/lt.po +++ b/addons/l10n_fr/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/nl.po b/addons/l10n_fr/i18n/nl.po index 4f94cf4cb93..8c31dad63f1 100644 --- a/addons/l10n_fr/i18n/nl.po +++ b/addons/l10n_fr/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/nl_BE.po b/addons/l10n_fr/i18n/nl_BE.po index 90edbeba909..0abc8b7bbd0 100644 --- a/addons/l10n_fr/i18n/nl_BE.po +++ b/addons/l10n_fr/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/oc.po b/addons/l10n_fr/i18n/oc.po index feca4676d21..6eb4c2000d6 100644 --- a/addons/l10n_fr/i18n/oc.po +++ b/addons/l10n_fr/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/pl.po b/addons/l10n_fr/i18n/pl.po index d887fe5a213..94b8041371b 100644 --- a/addons/l10n_fr/i18n/pl.po +++ b/addons/l10n_fr/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/pt.po b/addons/l10n_fr/i18n/pt.po index c318f1ddd17..606e81d03bf 100644 --- a/addons/l10n_fr/i18n/pt.po +++ b/addons/l10n_fr/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/pt_BR.po b/addons/l10n_fr/i18n/pt_BR.po index b39a20541d6..14c1966f59e 100644 --- a/addons/l10n_fr/i18n/pt_BR.po +++ b/addons/l10n_fr/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-07-18 21:23+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ro.po b/addons/l10n_fr/i18n/ro.po index ddf0c82676f..0123e586ffb 100644 --- a/addons/l10n_fr/i18n/ro.po +++ b/addons/l10n_fr/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ru.po b/addons/l10n_fr/i18n/ru.po index 1d2531a8099..65926eb06c4 100644 --- a/addons/l10n_fr/i18n/ru.po +++ b/addons/l10n_fr/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sl.po b/addons/l10n_fr/i18n/sl.po index cf6e5f28fca..8a20c45f471 100644 --- a/addons/l10n_fr/i18n/sl.po +++ b/addons/l10n_fr/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sq.po b/addons/l10n_fr/i18n/sq.po index 3ef15fdb783..c7dc7b6c15b 100644 --- a/addons/l10n_fr/i18n/sq.po +++ b/addons/l10n_fr/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sr@latin.po b/addons/l10n_fr/i18n/sr@latin.po index e91731819a4..66dd1ebc5d8 100644 --- a/addons/l10n_fr/i18n/sr@latin.po +++ b/addons/l10n_fr/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sv.po b/addons/l10n_fr/i18n/sv.po index 9fdfce80673..67dfc7264a7 100644 --- a/addons/l10n_fr/i18n/sv.po +++ b/addons/l10n_fr/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/tlh.po b/addons/l10n_fr/i18n/tlh.po index fd386b7387e..3803c2156a8 100644 --- a/addons/l10n_fr/i18n/tlh.po +++ b/addons/l10n_fr/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/tr.po b/addons/l10n_fr/i18n/tr.po index 9437a537c1f..a9699d3ab6d 100644 --- a/addons/l10n_fr/i18n/tr.po +++ b/addons/l10n_fr/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/uk.po b/addons/l10n_fr/i18n/uk.po index d387d8ee6b1..8e885b42bd1 100644 --- a/addons/l10n_fr/i18n/uk.po +++ b/addons/l10n_fr/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/vi.po b/addons/l10n_fr/i18n/vi.po index f132ebab346..1a2bc202252 100644 --- a/addons/l10n_fr/i18n/vi.po +++ b/addons/l10n_fr/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/zh_CN.po b/addons/l10n_fr/i18n/zh_CN.po index 90ff22f4b09..056372429c5 100644 --- a/addons/l10n_fr/i18n/zh_CN.po +++ b/addons/l10n_fr/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/zh_TW.po b/addons/l10n_fr/i18n/zh_TW.po index 888e5a3ee82..4ac00102b05 100644 --- a/addons/l10n_fr/i18n/zh_TW.po +++ b/addons/l10n_fr/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr_rib/i18n/ar.po b/addons/l10n_fr_rib/i18n/ar.po index 08a349a8b0e..d198541e0f2 100644 --- a/addons/l10n_fr_rib/i18n/ar.po +++ b/addons/l10n_fr_rib/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/es.po b/addons/l10n_fr_rib/i18n/es.po index 85ca4650f95..b125b2f470a 100644 --- a/addons/l10n_fr_rib/i18n/es.po +++ b/addons/l10n_fr_rib/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/es_CR.po b/addons/l10n_fr_rib/i18n/es_CR.po index d9b9a327ded..6b14d15fdd0 100644 --- a/addons/l10n_fr_rib/i18n/es_CR.po +++ b/addons/l10n_fr_rib/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/fr.po b/addons/l10n_fr_rib/i18n/fr.po index 414df6ca15b..263ef20ba5c 100644 --- a/addons/l10n_fr_rib/i18n/fr.po +++ b/addons/l10n_fr_rib/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/nl.po b/addons/l10n_fr_rib/i18n/nl.po index 186d8aa9c97..e025ad6c203 100644 --- a/addons/l10n_fr_rib/i18n/nl.po +++ b/addons/l10n_fr_rib/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/pt.po b/addons/l10n_fr_rib/i18n/pt.po index 4c5e461f607..b1c94c7eff5 100644 --- a/addons/l10n_fr_rib/i18n/pt.po +++ b/addons/l10n_fr_rib/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:06+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/pt_BR.po b/addons/l10n_fr_rib/i18n/pt_BR.po index 8030b85275e..3b3f2e90497 100644 --- a/addons/l10n_fr_rib/i18n/pt_BR.po +++ b/addons/l10n_fr_rib/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/sl.po b/addons/l10n_fr_rib/i18n/sl.po index 49a9552cc74..436548bd4aa 100644 --- a/addons/l10n_fr_rib/i18n/sl.po +++ b/addons/l10n_fr_rib/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/tr.po b/addons/l10n_fr_rib/i18n/tr.po index fbf1ef5740e..5efc481c1b1 100644 --- a/addons/l10n_fr_rib/i18n/tr.po +++ b/addons/l10n_fr_rib/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_gr/i18n/ar.po b/addons/l10n_gr/i18n/ar.po index 8baa49c1e80..31b16d235aa 100644 --- a/addons/l10n_gr/i18n/ar.po +++ b/addons/l10n_gr/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/ca.po b/addons/l10n_gr/i18n/ca.po index 9b711b85635..97290bd6376 100644 --- a/addons/l10n_gr/i18n/ca.po +++ b/addons/l10n_gr/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/da.po b/addons/l10n_gr/i18n/da.po index 2f4eab75a04..2b87bdab200 100644 --- a/addons/l10n_gr/i18n/da.po +++ b/addons/l10n_gr/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/de.po b/addons/l10n_gr/i18n/de.po index 20e8c7c3fea..23b93d0bac2 100644 --- a/addons/l10n_gr/i18n/de.po +++ b/addons/l10n_gr/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/el.po b/addons/l10n_gr/i18n/el.po index 1134673723b..d0042303ed1 100644 --- a/addons/l10n_gr/i18n/el.po +++ b/addons/l10n_gr/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/es.po b/addons/l10n_gr/i18n/es.po index 49dac77c711..5d413e337fb 100644 --- a/addons/l10n_gr/i18n/es.po +++ b/addons/l10n_gr/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/es_CR.po b/addons/l10n_gr/i18n/es_CR.po index 16d22e6191c..a7b15f5b89c 100644 --- a/addons/l10n_gr/i18n/es_CR.po +++ b/addons/l10n_gr/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/es_PY.po b/addons/l10n_gr/i18n/es_PY.po index 05c8e341ffc..c39eb3ae336 100644 --- a/addons/l10n_gr/i18n/es_PY.po +++ b/addons/l10n_gr/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/fr.po b/addons/l10n_gr/i18n/fr.po index f03ef1fa603..99c34c9c65f 100644 --- a/addons/l10n_gr/i18n/fr.po +++ b/addons/l10n_gr/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/gl.po b/addons/l10n_gr/i18n/gl.po index 500013aa1b7..6aaedcd0e94 100644 --- a/addons/l10n_gr/i18n/gl.po +++ b/addons/l10n_gr/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/hu.po b/addons/l10n_gr/i18n/hu.po index f0685e7d0e3..6d981dc1b80 100644 --- a/addons/l10n_gr/i18n/hu.po +++ b/addons/l10n_gr/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/it.po b/addons/l10n_gr/i18n/it.po index 863b46f48b3..1adedc71a23 100644 --- a/addons/l10n_gr/i18n/it.po +++ b/addons/l10n_gr/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/nl.po b/addons/l10n_gr/i18n/nl.po index 15189c3eff2..184ece6e029 100644 --- a/addons/l10n_gr/i18n/nl.po +++ b/addons/l10n_gr/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/pt.po b/addons/l10n_gr/i18n/pt.po index 3e389f37269..5e4687e48f0 100644 --- a/addons/l10n_gr/i18n/pt.po +++ b/addons/l10n_gr/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/pt_BR.po b/addons/l10n_gr/i18n/pt_BR.po index 6b935d8f7bf..27c8359070a 100644 --- a/addons/l10n_gr/i18n/pt_BR.po +++ b/addons/l10n_gr/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-07-18 21:24+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/sl.po b/addons/l10n_gr/i18n/sl.po index 4c50828b268..1a090ac6cda 100644 --- a/addons/l10n_gr/i18n/sl.po +++ b/addons/l10n_gr/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/sr@latin.po b/addons/l10n_gr/i18n/sr@latin.po index 3ab61744949..38aae361a64 100644 --- a/addons/l10n_gr/i18n/sr@latin.po +++ b/addons/l10n_gr/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/tr.po b/addons/l10n_gr/i18n/tr.po index 3176a576d87..b7d9da391c2 100644 --- a/addons/l10n_gr/i18n/tr.po +++ b/addons/l10n_gr/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gt/i18n/ar.po b/addons/l10n_gt/i18n/ar.po index 1f2b4696d3c..ff408b94a98 100644 --- a/addons/l10n_gt/i18n/ar.po +++ b/addons/l10n_gt/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/ca.po b/addons/l10n_gt/i18n/ca.po index b1b254091dd..34653b60f6d 100644 --- a/addons/l10n_gt/i18n/ca.po +++ b/addons/l10n_gt/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/da.po b/addons/l10n_gt/i18n/da.po index 9218a2dd97d..ad55b2893b3 100644 --- a/addons/l10n_gt/i18n/da.po +++ b/addons/l10n_gt/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/es.po b/addons/l10n_gt/i18n/es.po index f7f3c656a30..730eb2bdbd4 100644 --- a/addons/l10n_gt/i18n/es.po +++ b/addons/l10n_gt/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/es_CR.po b/addons/l10n_gt/i18n/es_CR.po index 616602ee3d3..5f8a48894a0 100644 --- a/addons/l10n_gt/i18n/es_CR.po +++ b/addons/l10n_gt/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/es_PY.po b/addons/l10n_gt/i18n/es_PY.po index fb3e5cf0eff..4dc29573245 100644 --- a/addons/l10n_gt/i18n/es_PY.po +++ b/addons/l10n_gt/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/fr.po b/addons/l10n_gt/i18n/fr.po index 8b278f293e1..8deca25da0a 100644 --- a/addons/l10n_gt/i18n/fr.po +++ b/addons/l10n_gt/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/gl.po b/addons/l10n_gt/i18n/gl.po index 7e28e422ef9..e488d7c1637 100644 --- a/addons/l10n_gt/i18n/gl.po +++ b/addons/l10n_gt/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/hu.po b/addons/l10n_gt/i18n/hu.po index 00fde53843e..bf79e7d1afa 100644 --- a/addons/l10n_gt/i18n/hu.po +++ b/addons/l10n_gt/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/it.po b/addons/l10n_gt/i18n/it.po index c010c6a58df..827693a51ea 100644 --- a/addons/l10n_gt/i18n/it.po +++ b/addons/l10n_gt/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/nl.po b/addons/l10n_gt/i18n/nl.po index 6436940df22..377a6a45fc9 100644 --- a/addons/l10n_gt/i18n/nl.po +++ b/addons/l10n_gt/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:22+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/oc.po b/addons/l10n_gt/i18n/oc.po index 0070e801902..cb6fb229ab0 100644 --- a/addons/l10n_gt/i18n/oc.po +++ b/addons/l10n_gt/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/pt.po b/addons/l10n_gt/i18n/pt.po index 8547956f129..1dd26097f9c 100644 --- a/addons/l10n_gt/i18n/pt.po +++ b/addons/l10n_gt/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/pt_BR.po b/addons/l10n_gt/i18n/pt_BR.po index 9482469c618..4c83b0d71d6 100644 --- a/addons/l10n_gt/i18n/pt_BR.po +++ b/addons/l10n_gt/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/sl.po b/addons/l10n_gt/i18n/sl.po index e77868f934f..e9b45db798f 100644 --- a/addons/l10n_gt/i18n/sl.po +++ b/addons/l10n_gt/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/sr@latin.po b/addons/l10n_gt/i18n/sr@latin.po index 7cb0846d975..85e3e457570 100644 --- a/addons/l10n_gt/i18n/sr@latin.po +++ b/addons/l10n_gt/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/tr.po b/addons/l10n_gt/i18n/tr.po index b22e2804dca..4cc3796224b 100644 --- a/addons/l10n_gt/i18n/tr.po +++ b/addons/l10n_gt/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_hn/i18n/ca.po b/addons/l10n_hn/i18n/ca.po index c3a5e3b33c6..f0da54c4afe 100644 --- a/addons/l10n_hn/i18n/ca.po +++ b/addons/l10n_hn/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/es.po b/addons/l10n_hn/i18n/es.po index ca657482342..18f86ed70f0 100644 --- a/addons/l10n_hn/i18n/es.po +++ b/addons/l10n_hn/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/es_CR.po b/addons/l10n_hn/i18n/es_CR.po index 09c46a2a98f..8bade5fd01e 100644 --- a/addons/l10n_hn/i18n/es_CR.po +++ b/addons/l10n_hn/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/fr.po b/addons/l10n_hn/i18n/fr.po index 5f2f790cee1..201eb2409c6 100644 --- a/addons/l10n_hn/i18n/fr.po +++ b/addons/l10n_hn/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/gl.po b/addons/l10n_hn/i18n/gl.po index b6c84789968..705361b5a48 100644 --- a/addons/l10n_hn/i18n/gl.po +++ b/addons/l10n_hn/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/hu.po b/addons/l10n_hn/i18n/hu.po index c4ab2950021..25c56f8f707 100644 --- a/addons/l10n_hn/i18n/hu.po +++ b/addons/l10n_hn/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/it.po b/addons/l10n_hn/i18n/it.po index 808e1e03d4f..012efd3b071 100644 --- a/addons/l10n_hn/i18n/it.po +++ b/addons/l10n_hn/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/nl.po b/addons/l10n_hn/i18n/nl.po index da74d791878..3987db75a2c 100644 --- a/addons/l10n_hn/i18n/nl.po +++ b/addons/l10n_hn/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/pt.po b/addons/l10n_hn/i18n/pt.po index 9c5d6b8b94f..1f5ee4ec7ec 100644 --- a/addons/l10n_hn/i18n/pt.po +++ b/addons/l10n_hn/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/pt_BR.po b/addons/l10n_hn/i18n/pt_BR.po index aefc8273aa6..efc6c72c9d5 100644 --- a/addons/l10n_hn/i18n/pt_BR.po +++ b/addons/l10n_hn/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/sl.po b/addons/l10n_hn/i18n/sl.po index 7217ed33e2b..c3af74daad7 100644 --- a/addons/l10n_hn/i18n/sl.po +++ b/addons/l10n_hn/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/sr@latin.po b/addons/l10n_hn/i18n/sr@latin.po index 397c9462865..2b76273534e 100644 --- a/addons/l10n_hn/i18n/sr@latin.po +++ b/addons/l10n_hn/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/tr.po b/addons/l10n_hn/i18n/tr.po index a101a685fdc..30fb5ffe402 100644 --- a/addons/l10n_hn/i18n/tr.po +++ b/addons/l10n_hn/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_in/i18n/ar.po b/addons/l10n_in/i18n/ar.po index bd79865b7fe..f8522f87db8 100644 --- a/addons/l10n_in/i18n/ar.po +++ b/addons/l10n_in/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/br.po b/addons/l10n_in/i18n/br.po index 446c18c9d0c..4f4e2e5b274 100644 --- a/addons/l10n_in/i18n/br.po +++ b/addons/l10n_in/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/ca.po b/addons/l10n_in/i18n/ca.po index 0b44a8ece13..60b122b2955 100644 --- a/addons/l10n_in/i18n/ca.po +++ b/addons/l10n_in/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/da.po b/addons/l10n_in/i18n/da.po index 50dc4c84bb3..3751b635f4c 100644 --- a/addons/l10n_in/i18n/da.po +++ b/addons/l10n_in/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/de.po b/addons/l10n_in/i18n/de.po index eb2c3f35215..be950c24252 100644 --- a/addons/l10n_in/i18n/de.po +++ b/addons/l10n_in/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/es.po b/addons/l10n_in/i18n/es.po index 80b3275936a..3447eb20ad5 100644 --- a/addons/l10n_in/i18n/es.po +++ b/addons/l10n_in/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/es_CR.po b/addons/l10n_in/i18n/es_CR.po index 0c5fd284617..7c5163f0e5d 100644 --- a/addons/l10n_in/i18n/es_CR.po +++ b/addons/l10n_in/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/es_PY.po b/addons/l10n_in/i18n/es_PY.po index a3e5e452fe5..0c645ae66bd 100644 --- a/addons/l10n_in/i18n/es_PY.po +++ b/addons/l10n_in/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/et.po b/addons/l10n_in/i18n/et.po index 1b5990598a5..9404e4d70cd 100644 --- a/addons/l10n_in/i18n/et.po +++ b/addons/l10n_in/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/fr.po b/addons/l10n_in/i18n/fr.po index 032f7b0325c..f6308f7c03c 100644 --- a/addons/l10n_in/i18n/fr.po +++ b/addons/l10n_in/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/gl.po b/addons/l10n_in/i18n/gl.po index 4da931a200d..48898a3398e 100644 --- a/addons/l10n_in/i18n/gl.po +++ b/addons/l10n_in/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/hu.po b/addons/l10n_in/i18n/hu.po index 63f3becb3dc..372668b49b3 100644 --- a/addons/l10n_in/i18n/hu.po +++ b/addons/l10n_in/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/it.po b/addons/l10n_in/i18n/it.po index 5aa5d2c5f31..d83dc8bb298 100644 --- a/addons/l10n_in/i18n/it.po +++ b/addons/l10n_in/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/nl.po b/addons/l10n_in/i18n/nl.po index 0fa81367e5f..03fbb2b6c0b 100644 --- a/addons/l10n_in/i18n/nl.po +++ b/addons/l10n_in/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/oc.po b/addons/l10n_in/i18n/oc.po index f4565b38c6e..7e4195c1343 100644 --- a/addons/l10n_in/i18n/oc.po +++ b/addons/l10n_in/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/pt.po b/addons/l10n_in/i18n/pt.po index c33a7b7a47c..ae3a3084b74 100644 --- a/addons/l10n_in/i18n/pt.po +++ b/addons/l10n_in/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/pt_BR.po b/addons/l10n_in/i18n/pt_BR.po index 4342db8077a..f2cde0c673b 100644 --- a/addons/l10n_in/i18n/pt_BR.po +++ b/addons/l10n_in/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/ru.po b/addons/l10n_in/i18n/ru.po index c9ed77cab8b..359f355ea57 100644 --- a/addons/l10n_in/i18n/ru.po +++ b/addons/l10n_in/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/sl.po b/addons/l10n_in/i18n/sl.po index cf5fefeef52..7a1c19d3089 100644 --- a/addons/l10n_in/i18n/sl.po +++ b/addons/l10n_in/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/sr@latin.po b/addons/l10n_in/i18n/sr@latin.po index f191e30130d..d90d2cb2626 100644 --- a/addons/l10n_in/i18n/sr@latin.po +++ b/addons/l10n_in/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/sv.po b/addons/l10n_in/i18n/sv.po index 3fca34a437e..023cc921d69 100644 --- a/addons/l10n_in/i18n/sv.po +++ b/addons/l10n_in/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/tr.po b/addons/l10n_in/i18n/tr.po index f6a850cd5bd..b49a5098fb4 100644 --- a/addons/l10n_in/i18n/tr.po +++ b/addons/l10n_in/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in_hr_payroll/i18n/bn.po b/addons/l10n_in_hr_payroll/i18n/bn.po index cde02bf1994..90434579a0c 100644 --- a/addons/l10n_in_hr_payroll/i18n/bn.po +++ b/addons/l10n_in_hr_payroll/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/es.po b/addons/l10n_in_hr_payroll/i18n/es.po index bb6beca450a..a059332d57e 100644 --- a/addons/l10n_in_hr_payroll/i18n/es.po +++ b/addons/l10n_in_hr_payroll/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/gu.po b/addons/l10n_in_hr_payroll/i18n/gu.po index 20840bbcab5..dabb1ed2485 100644 --- a/addons/l10n_in_hr_payroll/i18n/gu.po +++ b/addons/l10n_in_hr_payroll/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/hi.po b/addons/l10n_in_hr_payroll/i18n/hi.po index 86a31c1c2a1..ed2d60e04c7 100644 --- a/addons/l10n_in_hr_payroll/i18n/hi.po +++ b/addons/l10n_in_hr_payroll/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/nl.po b/addons/l10n_in_hr_payroll/i18n/nl.po index bccaee9ed5c..2a4b638ceef 100644 --- a/addons/l10n_in_hr_payroll/i18n/nl.po +++ b/addons/l10n_in_hr_payroll/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pl.po b/addons/l10n_in_hr_payroll/i18n/pl.po index 9abc21850bd..a44123990aa 100644 --- a/addons/l10n_in_hr_payroll/i18n/pl.po +++ b/addons/l10n_in_hr_payroll/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pt.po b/addons/l10n_in_hr_payroll/i18n/pt.po index 740d6db2af4..7c3a34eb887 100644 --- a/addons/l10n_in_hr_payroll/i18n/pt.po +++ b/addons/l10n_in_hr_payroll/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pt_BR.po b/addons/l10n_in_hr_payroll/i18n/pt_BR.po index fd11fd56f92..3dcac5a96c4 100644 --- a/addons/l10n_in_hr_payroll/i18n/pt_BR.po +++ b/addons/l10n_in_hr_payroll/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-07-18 21:50+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/sl.po b/addons/l10n_in_hr_payroll/i18n/sl.po index 04545cbef95..f418c8458fc 100644 --- a/addons/l10n_in_hr_payroll/i18n/sl.po +++ b/addons/l10n_in_hr_payroll/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/ta.po b/addons/l10n_in_hr_payroll/i18n/ta.po index cb3d3ea19ec..b3c60b31cd0 100644 --- a/addons/l10n_in_hr_payroll/i18n/ta.po +++ b/addons/l10n_in_hr_payroll/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/te.po b/addons/l10n_in_hr_payroll/i18n/te.po index d135d56ce25..5e85e77148d 100644 --- a/addons/l10n_in_hr_payroll/i18n/te.po +++ b/addons/l10n_in_hr_payroll/i18n/te.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/tr.po b/addons/l10n_in_hr_payroll/i18n/tr.po index 3b83023b135..44e7646df6f 100644 --- a/addons/l10n_in_hr_payroll/i18n/tr.po +++ b/addons/l10n_in_hr_payroll/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/zh_CN.po b/addons/l10n_in_hr_payroll/i18n/zh_CN.po index f60b0975229..5d901b30cf8 100644 --- a/addons/l10n_in_hr_payroll/i18n/zh_CN.po +++ b/addons/l10n_in_hr_payroll/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-06-24 10:15+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_it/i18n/ar.po b/addons/l10n_it/i18n/ar.po index 146ac9dfb0e..cfcfbfbe6e9 100644 --- a/addons/l10n_it/i18n/ar.po +++ b/addons/l10n_it/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/ca.po b/addons/l10n_it/i18n/ca.po index cf6d5b47276..4b8060abc78 100644 --- a/addons/l10n_it/i18n/ca.po +++ b/addons/l10n_it/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/da.po b/addons/l10n_it/i18n/da.po index bce4e0b8133..b5853a80e46 100644 --- a/addons/l10n_it/i18n/da.po +++ b/addons/l10n_it/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/es.po b/addons/l10n_it/i18n/es.po index 9d55514231a..47d67d246f8 100644 --- a/addons/l10n_it/i18n/es.po +++ b/addons/l10n_it/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/es_CR.po b/addons/l10n_it/i18n/es_CR.po index f22dcd3460f..d2bc117200f 100644 --- a/addons/l10n_it/i18n/es_CR.po +++ b/addons/l10n_it/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/es_PY.po b/addons/l10n_it/i18n/es_PY.po index 3d0bef612c0..ba155b06426 100644 --- a/addons/l10n_it/i18n/es_PY.po +++ b/addons/l10n_it/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/fr.po b/addons/l10n_it/i18n/fr.po index 8e7adc2f904..c5b567067e5 100644 --- a/addons/l10n_it/i18n/fr.po +++ b/addons/l10n_it/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/gl.po b/addons/l10n_it/i18n/gl.po index 0eb6365db25..a2587c44bc8 100644 --- a/addons/l10n_it/i18n/gl.po +++ b/addons/l10n_it/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/it.po b/addons/l10n_it/i18n/it.po index 734cc4f5980..706a59745ac 100644 --- a/addons/l10n_it/i18n/it.po +++ b/addons/l10n_it/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/nl.po b/addons/l10n_it/i18n/nl.po index 2a5684aaf4c..e17cb377a25 100644 --- a/addons/l10n_it/i18n/nl.po +++ b/addons/l10n_it/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/pt_BR.po b/addons/l10n_it/i18n/pt_BR.po index 2fd8c34cae6..2164ab839fd 100644 --- a/addons/l10n_it/i18n/pt_BR.po +++ b/addons/l10n_it/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-12-23 09:56+0000\n" "PO-Revision-Date: 2013-07-18 21:52+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/sl.po b/addons/l10n_it/i18n/sl.po index c23084b29f5..01a9e9a1dd1 100644 --- a/addons/l10n_it/i18n/sl.po +++ b/addons/l10n_it/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-12-23 09:56+0000\n" "PO-Revision-Date: 2013-09-30 14:40+0000\n" -"Last-Translator: Matmoz \n" +"Last-Translator: Matjaž Mozetič (Matmoz) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-01 05:39+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/tr.po b/addons/l10n_it/i18n/tr.po index 8b06cb7b5b0..a0e4726f99c 100644 --- a/addons/l10n_it/i18n/tr.po +++ b/addons/l10n_it/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_lu/i18n/ar.po b/addons/l10n_lu/i18n/ar.po index 21e9826e7ae..38ef4ffb28d 100644 --- a/addons/l10n_lu/i18n/ar.po +++ b/addons/l10n_lu/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/bg.po b/addons/l10n_lu/i18n/bg.po index 32a6d5fc8ff..fde59cad544 100644 --- a/addons/l10n_lu/i18n/bg.po +++ b/addons/l10n_lu/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/bs.po b/addons/l10n_lu/i18n/bs.po index dafda7c7f0e..fbdacfb076a 100644 --- a/addons/l10n_lu/i18n/bs.po +++ b/addons/l10n_lu/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ca.po b/addons/l10n_lu/i18n/ca.po index 6b232ab6cad..6427901ac86 100644 --- a/addons/l10n_lu/i18n/ca.po +++ b/addons/l10n_lu/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/cs.po b/addons/l10n_lu/i18n/cs.po index 590d8b7d38d..94cace8380d 100644 --- a/addons/l10n_lu/i18n/cs.po +++ b/addons/l10n_lu/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/da.po b/addons/l10n_lu/i18n/da.po index c8a4fa2e0c7..d7cf006f38a 100644 --- a/addons/l10n_lu/i18n/da.po +++ b/addons/l10n_lu/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/de.po b/addons/l10n_lu/i18n/de.po index 5628e655dbd..8e9f06adccd 100644 --- a/addons/l10n_lu/i18n/de.po +++ b/addons/l10n_lu/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es.po b/addons/l10n_lu/i18n/es.po index 3f3b7a93c82..b769d8b0377 100644 --- a/addons/l10n_lu/i18n/es.po +++ b/addons/l10n_lu/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es_AR.po b/addons/l10n_lu/i18n/es_AR.po index e657a319c2c..028296f64e0 100644 --- a/addons/l10n_lu/i18n/es_AR.po +++ b/addons/l10n_lu/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es_CR.po b/addons/l10n_lu/i18n/es_CR.po index 920ef498671..42c0a0d9156 100644 --- a/addons/l10n_lu/i18n/es_CR.po +++ b/addons/l10n_lu/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es_PY.po b/addons/l10n_lu/i18n/es_PY.po index ba5a14df9f7..43c323bfcc2 100644 --- a/addons/l10n_lu/i18n/es_PY.po +++ b/addons/l10n_lu/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/et.po b/addons/l10n_lu/i18n/et.po index e8eeee15ab0..ea09ae7cbfa 100644 --- a/addons/l10n_lu/i18n/et.po +++ b/addons/l10n_lu/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/fr.po b/addons/l10n_lu/i18n/fr.po index f30b54d838a..bbc99d50820 100644 --- a/addons/l10n_lu/i18n/fr.po +++ b/addons/l10n_lu/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/gl.po b/addons/l10n_lu/i18n/gl.po index 21ac13487f4..b2cbbce207f 100644 --- a/addons/l10n_lu/i18n/gl.po +++ b/addons/l10n_lu/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/hr.po b/addons/l10n_lu/i18n/hr.po index 17579998ca3..9e2e306313e 100644 --- a/addons/l10n_lu/i18n/hr.po +++ b/addons/l10n_lu/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/hu.po b/addons/l10n_lu/i18n/hu.po index ced75cf5e38..60eaa78bcd6 100644 --- a/addons/l10n_lu/i18n/hu.po +++ b/addons/l10n_lu/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/id.po b/addons/l10n_lu/i18n/id.po index b9dc1326c43..3bd0f81c8be 100644 --- a/addons/l10n_lu/i18n/id.po +++ b/addons/l10n_lu/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/it.po b/addons/l10n_lu/i18n/it.po index 6b716d3ba02..e3ca7d3d5b4 100644 --- a/addons/l10n_lu/i18n/it.po +++ b/addons/l10n_lu/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ko.po b/addons/l10n_lu/i18n/ko.po index dc7abd8a588..f5fe2f986d9 100644 --- a/addons/l10n_lu/i18n/ko.po +++ b/addons/l10n_lu/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/lt.po b/addons/l10n_lu/i18n/lt.po index fbba87672fb..ab978b260dd 100644 --- a/addons/l10n_lu/i18n/lt.po +++ b/addons/l10n_lu/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/nl.po b/addons/l10n_lu/i18n/nl.po index 44cad8929d2..4d01de82098 100644 --- a/addons/l10n_lu/i18n/nl.po +++ b/addons/l10n_lu/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/nl_BE.po b/addons/l10n_lu/i18n/nl_BE.po index bff5351b0b1..1bf07fd45b6 100644 --- a/addons/l10n_lu/i18n/nl_BE.po +++ b/addons/l10n_lu/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/oc.po b/addons/l10n_lu/i18n/oc.po index 6ed6a22664b..e151e09314f 100644 --- a/addons/l10n_lu/i18n/oc.po +++ b/addons/l10n_lu/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/pl.po b/addons/l10n_lu/i18n/pl.po index d33f8ccc26a..e7658dc2f60 100644 --- a/addons/l10n_lu/i18n/pl.po +++ b/addons/l10n_lu/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/pt.po b/addons/l10n_lu/i18n/pt.po index 3fb35f5faa7..b6be602bb5c 100644 --- a/addons/l10n_lu/i18n/pt.po +++ b/addons/l10n_lu/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/pt_BR.po b/addons/l10n_lu/i18n/pt_BR.po index ecd93c07b13..455277443bc 100644 --- a/addons/l10n_lu/i18n/pt_BR.po +++ b/addons/l10n_lu/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ro.po b/addons/l10n_lu/i18n/ro.po index ea4d80ddefe..9ac8a1d62e3 100644 --- a/addons/l10n_lu/i18n/ro.po +++ b/addons/l10n_lu/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ru.po b/addons/l10n_lu/i18n/ru.po index 07e41ab891a..0a2291ccb3b 100644 --- a/addons/l10n_lu/i18n/ru.po +++ b/addons/l10n_lu/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sl.po b/addons/l10n_lu/i18n/sl.po index b64ed73c11f..ca63152b5e0 100644 --- a/addons/l10n_lu/i18n/sl.po +++ b/addons/l10n_lu/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sq.po b/addons/l10n_lu/i18n/sq.po index fc83045fcc7..f64859c924c 100644 --- a/addons/l10n_lu/i18n/sq.po +++ b/addons/l10n_lu/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sr@latin.po b/addons/l10n_lu/i18n/sr@latin.po index a0230784395..f5f893be98a 100644 --- a/addons/l10n_lu/i18n/sr@latin.po +++ b/addons/l10n_lu/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sv.po b/addons/l10n_lu/i18n/sv.po index 486fc36be06..9bd3d1d0218 100644 --- a/addons/l10n_lu/i18n/sv.po +++ b/addons/l10n_lu/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/tlh.po b/addons/l10n_lu/i18n/tlh.po index 01239fd9234..c1ed34ee92a 100644 --- a/addons/l10n_lu/i18n/tlh.po +++ b/addons/l10n_lu/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/tr.po b/addons/l10n_lu/i18n/tr.po index 74f11833d97..b25531a3b98 100644 --- a/addons/l10n_lu/i18n/tr.po +++ b/addons/l10n_lu/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/uk.po b/addons/l10n_lu/i18n/uk.po index caaf0e4dd0d..d6cad50522a 100644 --- a/addons/l10n_lu/i18n/uk.po +++ b/addons/l10n_lu/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/vi.po b/addons/l10n_lu/i18n/vi.po index b6096a3e63d..4c491ea0343 100644 --- a/addons/l10n_lu/i18n/vi.po +++ b/addons/l10n_lu/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/zh_CN.po b/addons/l10n_lu/i18n/zh_CN.po index 210658eaea3..0c83630fb67 100644 --- a/addons/l10n_lu/i18n/zh_CN.po +++ b/addons/l10n_lu/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/zh_TW.po b/addons/l10n_lu/i18n/zh_TW.po index 0328477710f..ef78876db8b 100644 --- a/addons/l10n_lu/i18n/zh_TW.po +++ b/addons/l10n_lu/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_ma/i18n/ar.po b/addons/l10n_ma/i18n/ar.po index 5e644702a77..e95e7bb7fa8 100644 --- a/addons/l10n_ma/i18n/ar.po +++ b/addons/l10n_ma/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/ca.po b/addons/l10n_ma/i18n/ca.po index d31976e74ae..bc5381a31a1 100644 --- a/addons/l10n_ma/i18n/ca.po +++ b/addons/l10n_ma/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/da.po b/addons/l10n_ma/i18n/da.po index 22b0d975ffc..6a5c15d8a14 100644 --- a/addons/l10n_ma/i18n/da.po +++ b/addons/l10n_ma/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/de.po b/addons/l10n_ma/i18n/de.po index d4ca91eebab..7b655b70af4 100644 --- a/addons/l10n_ma/i18n/de.po +++ b/addons/l10n_ma/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/es.po b/addons/l10n_ma/i18n/es.po index 6733268553d..0e366194821 100644 --- a/addons/l10n_ma/i18n/es.po +++ b/addons/l10n_ma/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/es_CR.po b/addons/l10n_ma/i18n/es_CR.po index 235a734629a..ad1ce135390 100644 --- a/addons/l10n_ma/i18n/es_CR.po +++ b/addons/l10n_ma/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/es_PY.po b/addons/l10n_ma/i18n/es_PY.po index e9282e6b285..8d70d500231 100644 --- a/addons/l10n_ma/i18n/es_PY.po +++ b/addons/l10n_ma/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/fr.po b/addons/l10n_ma/i18n/fr.po index 54f407f40a8..86ccdb62bc4 100644 --- a/addons/l10n_ma/i18n/fr.po +++ b/addons/l10n_ma/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/gl.po b/addons/l10n_ma/i18n/gl.po index b12816192d5..6301b9e5f2b 100644 --- a/addons/l10n_ma/i18n/gl.po +++ b/addons/l10n_ma/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/hu.po b/addons/l10n_ma/i18n/hu.po index d5c2c0c1213..05357ef559f 100644 --- a/addons/l10n_ma/i18n/hu.po +++ b/addons/l10n_ma/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/it.po b/addons/l10n_ma/i18n/it.po index ebe74c22fa8..bd6f1f3e3da 100644 --- a/addons/l10n_ma/i18n/it.po +++ b/addons/l10n_ma/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/nl.po b/addons/l10n_ma/i18n/nl.po index ca022763c2a..5e98f5161db 100644 --- a/addons/l10n_ma/i18n/nl.po +++ b/addons/l10n_ma/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/pt.po b/addons/l10n_ma/i18n/pt.po index 6d2f1a8d826..8c28ce4cdf6 100644 --- a/addons/l10n_ma/i18n/pt.po +++ b/addons/l10n_ma/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/pt_BR.po b/addons/l10n_ma/i18n/pt_BR.po index e5da8d221e2..6db87ad82b2 100644 --- a/addons/l10n_ma/i18n/pt_BR.po +++ b/addons/l10n_ma/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-07-18 21:56+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/sl.po b/addons/l10n_ma/i18n/sl.po index 9435afdf58d..2b395523790 100644 --- a/addons/l10n_ma/i18n/sl.po +++ b/addons/l10n_ma/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:17+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/sr@latin.po b/addons/l10n_ma/i18n/sr@latin.po index 7a5575b5ae6..d22f6fe0db4 100644 --- a/addons/l10n_ma/i18n/sr@latin.po +++ b/addons/l10n_ma/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/tr.po b/addons/l10n_ma/i18n/tr.po index 1ccf5067d87..089543a2da2 100644 --- a/addons/l10n_ma/i18n/tr.po +++ b/addons/l10n_ma/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_multilang/i18n/ar.po b/addons/l10n_multilang/i18n/ar.po index 83cfc1a5b34..108ade2bbd4 100644 --- a/addons/l10n_multilang/i18n/ar.po +++ b/addons/l10n_multilang/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/da.po b/addons/l10n_multilang/i18n/da.po index 9f7f34be898..786832729c0 100644 --- a/addons/l10n_multilang/i18n/da.po +++ b/addons/l10n_multilang/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/de.po b/addons/l10n_multilang/i18n/de.po index 0106ae4460c..b8381acf155 100644 --- a/addons/l10n_multilang/i18n/de.po +++ b/addons/l10n_multilang/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/es.po b/addons/l10n_multilang/i18n/es.po index 9704be2a135..a56e8c074b3 100644 --- a/addons/l10n_multilang/i18n/es.po +++ b/addons/l10n_multilang/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/es_CR.po b/addons/l10n_multilang/i18n/es_CR.po index 9850db9fd8c..65aa3e6f7a8 100644 --- a/addons/l10n_multilang/i18n/es_CR.po +++ b/addons/l10n_multilang/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/fr.po b/addons/l10n_multilang/i18n/fr.po index c40790f5672..c3726ae6613 100644 --- a/addons/l10n_multilang/i18n/fr.po +++ b/addons/l10n_multilang/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/hr.po b/addons/l10n_multilang/i18n/hr.po index 062645d76a2..5c63785c245 100644 --- a/addons/l10n_multilang/i18n/hr.po +++ b/addons/l10n_multilang/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/hu.po b/addons/l10n_multilang/i18n/hu.po index 1bff63ac103..7a700fe997d 100644 --- a/addons/l10n_multilang/i18n/hu.po +++ b/addons/l10n_multilang/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/mn.po b/addons/l10n_multilang/i18n/mn.po index 8d38ccc839c..8a4b5bc93cd 100644 --- a/addons/l10n_multilang/i18n/mn.po +++ b/addons/l10n_multilang/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/nl.po b/addons/l10n_multilang/i18n/nl.po index 5058eb28cb4..c6740185513 100644 --- a/addons/l10n_multilang/i18n/nl.po +++ b/addons/l10n_multilang/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/pl.po b/addons/l10n_multilang/i18n/pl.po index cbf9b77cbe7..bbb78cd25bb 100644 --- a/addons/l10n_multilang/i18n/pl.po +++ b/addons/l10n_multilang/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/pt.po b/addons/l10n_multilang/i18n/pt.po index 751151f384a..5148e69d375 100644 --- a/addons/l10n_multilang/i18n/pt.po +++ b/addons/l10n_multilang/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/pt_BR.po b/addons/l10n_multilang/i18n/pt_BR.po index 246decf3777..b62afcc4783 100644 --- a/addons/l10n_multilang/i18n/pt_BR.po +++ b/addons/l10n_multilang/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/ro.po b/addons/l10n_multilang/i18n/ro.po index 6e47f0a91d3..a8637e261e0 100644 --- a/addons/l10n_multilang/i18n/ro.po +++ b/addons/l10n_multilang/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/sl.po b/addons/l10n_multilang/i18n/sl.po index 386a74c14a1..d20cd56ce5a 100644 --- a/addons/l10n_multilang/i18n/sl.po +++ b/addons/l10n_multilang/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/tr.po b/addons/l10n_multilang/i18n/tr.po index f6a94050050..33747b38402 100644 --- a/addons/l10n_multilang/i18n/tr.po +++ b/addons/l10n_multilang/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/zh_CN.po b/addons/l10n_multilang/i18n/zh_CN.po index 1521ceeb4ca..876d8102260 100644 --- a/addons/l10n_multilang/i18n/zh_CN.po +++ b/addons/l10n_multilang/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:06+0000\n" "PO-Revision-Date: 2013-07-24 12:44+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-25 05:44+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template @@ -107,6 +107,7 @@ msgid "" "the final object when generating them from templates. You must provide the " "language codes separated by ';'" msgstr "" +"此处表明模板翻译所用语言可以在该本地化模块安装时加载,并且由此模板生成最终目标时该语言也会被拷贝到最终目标。提交语言代码时必须用分号 ';' 分隔。'" #. module: l10n_multilang #: constraint:account.account:0 diff --git a/addons/l10n_nl/i18n/ar.po b/addons/l10n_nl/i18n/ar.po index 32c6fe98902..376c879b623 100644 --- a/addons/l10n_nl/i18n/ar.po +++ b/addons/l10n_nl/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/ca.po b/addons/l10n_nl/i18n/ca.po index d8324f13981..fca9026b653 100644 --- a/addons/l10n_nl/i18n/ca.po +++ b/addons/l10n_nl/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/da.po b/addons/l10n_nl/i18n/da.po index 2af99e79cf4..2fff8b000a3 100644 --- a/addons/l10n_nl/i18n/da.po +++ b/addons/l10n_nl/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/en_GB.po b/addons/l10n_nl/i18n/en_GB.po index 341cf79b6a5..4b621ef28c8 100644 --- a/addons/l10n_nl/i18n/en_GB.po +++ b/addons/l10n_nl/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/es.po b/addons/l10n_nl/i18n/es.po index 538c532c6b4..aed9a6eeb38 100644 --- a/addons/l10n_nl/i18n/es.po +++ b/addons/l10n_nl/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/es_CR.po b/addons/l10n_nl/i18n/es_CR.po index 104deec5457..1dc5e91c7c9 100644 --- a/addons/l10n_nl/i18n/es_CR.po +++ b/addons/l10n_nl/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/es_PY.po b/addons/l10n_nl/i18n/es_PY.po index d3b14f2452c..6e79425558d 100644 --- a/addons/l10n_nl/i18n/es_PY.po +++ b/addons/l10n_nl/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/gl.po b/addons/l10n_nl/i18n/gl.po index fd1315d7a98..37d1fea3f13 100644 --- a/addons/l10n_nl/i18n/gl.po +++ b/addons/l10n_nl/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/it.po b/addons/l10n_nl/i18n/it.po index f93a88d959b..458cbc77f51 100644 --- a/addons/l10n_nl/i18n/it.po +++ b/addons/l10n_nl/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/mn.po b/addons/l10n_nl/i18n/mn.po index 839cd501860..7e2b31701d2 100644 --- a/addons/l10n_nl/i18n/mn.po +++ b/addons/l10n_nl/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/nl.po b/addons/l10n_nl/i18n/nl.po index 335d212d65e..7038ccedc4e 100644 --- a/addons/l10n_nl/i18n/nl.po +++ b/addons/l10n_nl/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/pt_BR.po b/addons/l10n_nl/i18n/pt_BR.po index d1c959ebbd8..e10ae287204 100644 --- a/addons/l10n_nl/i18n/pt_BR.po +++ b/addons/l10n_nl/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-07-18 21:57+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/sl.po b/addons/l10n_nl/i18n/sl.po index b3f809b1a9f..1c1d17f0249 100644 --- a/addons/l10n_nl/i18n/sl.po +++ b/addons/l10n_nl/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/sr@latin.po b/addons/l10n_nl/i18n/sr@latin.po index 9cd72df789b..895d9a3ce1c 100644 --- a/addons/l10n_nl/i18n/sr@latin.po +++ b/addons/l10n_nl/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/tr.po b/addons/l10n_nl/i18n/tr.po index c45d07b12f9..3fdc2bb47f3 100644 --- a/addons/l10n_nl/i18n/tr.po +++ b/addons/l10n_nl/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_pe/i18n/ar.po b/addons/l10n_pe/i18n/ar.po index 46dac7fc1a0..e7808a74d6a 100644 --- a/addons/l10n_pe/i18n/ar.po +++ b/addons/l10n_pe/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/br.po b/addons/l10n_pe/i18n/br.po index 89b30bf98a1..a2d20e64c00 100644 --- a/addons/l10n_pe/i18n/br.po +++ b/addons/l10n_pe/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/ca.po b/addons/l10n_pe/i18n/ca.po index 021b39c6ae7..9a8744179db 100644 --- a/addons/l10n_pe/i18n/ca.po +++ b/addons/l10n_pe/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/de.po b/addons/l10n_pe/i18n/de.po index 349fa709060..caec8b0193c 100644 --- a/addons/l10n_pe/i18n/de.po +++ b/addons/l10n_pe/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/es.po b/addons/l10n_pe/i18n/es.po index e80741d5b23..2717725adf2 100644 --- a/addons/l10n_pe/i18n/es.po +++ b/addons/l10n_pe/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/et.po b/addons/l10n_pe/i18n/et.po index 8d8a8503b9c..f5eb05575e5 100644 --- a/addons/l10n_pe/i18n/et.po +++ b/addons/l10n_pe/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/fr.po b/addons/l10n_pe/i18n/fr.po index af6375be215..2303eb59ca9 100644 --- a/addons/l10n_pe/i18n/fr.po +++ b/addons/l10n_pe/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/gl.po b/addons/l10n_pe/i18n/gl.po index 1585556fb9d..475dd7fd121 100644 --- a/addons/l10n_pe/i18n/gl.po +++ b/addons/l10n_pe/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/hu.po b/addons/l10n_pe/i18n/hu.po index 05a3898480b..5b728a7e3dd 100644 --- a/addons/l10n_pe/i18n/hu.po +++ b/addons/l10n_pe/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/it.po b/addons/l10n_pe/i18n/it.po index bcd724c200f..5326e9f7c4c 100644 --- a/addons/l10n_pe/i18n/it.po +++ b/addons/l10n_pe/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/nl.po b/addons/l10n_pe/i18n/nl.po index 4c59c4ecb7d..3d3b34fbe3b 100644 --- a/addons/l10n_pe/i18n/nl.po +++ b/addons/l10n_pe/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/pt.po b/addons/l10n_pe/i18n/pt.po index 16927c49972..1c1fe1df0f9 100644 --- a/addons/l10n_pe/i18n/pt.po +++ b/addons/l10n_pe/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/pt_BR.po b/addons/l10n_pe/i18n/pt_BR.po index 7f1bac2a773..4b25d930f83 100644 --- a/addons/l10n_pe/i18n/pt_BR.po +++ b/addons/l10n_pe/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-07-18 23:17+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/ru.po b/addons/l10n_pe/i18n/ru.po index 51e71f5e3d7..82dbf6eddcb 100644 --- a/addons/l10n_pe/i18n/ru.po +++ b/addons/l10n_pe/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/sl.po b/addons/l10n_pe/i18n/sl.po index a0da0be42ff..9b93cb679c0 100644 --- a/addons/l10n_pe/i18n/sl.po +++ b/addons/l10n_pe/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/sr@latin.po b/addons/l10n_pe/i18n/sr@latin.po index 657788119c4..0b6313d3d3d 100644 --- a/addons/l10n_pe/i18n/sr@latin.po +++ b/addons/l10n_pe/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/sv.po b/addons/l10n_pe/i18n/sv.po index 439f52a55ff..f7c0b540078 100644 --- a/addons/l10n_pe/i18n/sv.po +++ b/addons/l10n_pe/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/tr.po b/addons/l10n_pe/i18n/tr.po index ace3767d8ce..d6420326085 100644 --- a/addons/l10n_pe/i18n/tr.po +++ b/addons/l10n_pe/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pl/i18n/ar.po b/addons/l10n_pl/i18n/ar.po index f34c46ee297..148e136825e 100644 --- a/addons/l10n_pl/i18n/ar.po +++ b/addons/l10n_pl/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/ca.po b/addons/l10n_pl/i18n/ca.po index 5d0dd73de20..0c6f947f985 100644 --- a/addons/l10n_pl/i18n/ca.po +++ b/addons/l10n_pl/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/da.po b/addons/l10n_pl/i18n/da.po index 3ac8a37f79b..56950a03a80 100644 --- a/addons/l10n_pl/i18n/da.po +++ b/addons/l10n_pl/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/es.po b/addons/l10n_pl/i18n/es.po index aa152435c06..fb7a22abb75 100644 --- a/addons/l10n_pl/i18n/es.po +++ b/addons/l10n_pl/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/es_CR.po b/addons/l10n_pl/i18n/es_CR.po index 1d472a5b129..e32d011fd9e 100644 --- a/addons/l10n_pl/i18n/es_CR.po +++ b/addons/l10n_pl/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/es_PY.po b/addons/l10n_pl/i18n/es_PY.po index 18a532d2f14..f19007161fb 100644 --- a/addons/l10n_pl/i18n/es_PY.po +++ b/addons/l10n_pl/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/gl.po b/addons/l10n_pl/i18n/gl.po index c1875586552..d7fa0aafc15 100644 --- a/addons/l10n_pl/i18n/gl.po +++ b/addons/l10n_pl/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/it.po b/addons/l10n_pl/i18n/it.po index 2863c394d5b..b0156cc45c2 100644 --- a/addons/l10n_pl/i18n/it.po +++ b/addons/l10n_pl/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/pt_BR.po b/addons/l10n_pl/i18n/pt_BR.po index c6dc7ab2a3a..64ec9e0065b 100644 --- a/addons/l10n_pl/i18n/pt_BR.po +++ b/addons/l10n_pl/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-07-18 23:12+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/sl.po b/addons/l10n_pl/i18n/sl.po index e0c6f6c2bd6..c055584e583 100644 --- a/addons/l10n_pl/i18n/sl.po +++ b/addons/l10n_pl/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/sr@latin.po b/addons/l10n_pl/i18n/sr@latin.po index 6bdf994ba1d..ba76c76e7ff 100644 --- a/addons/l10n_pl/i18n/sr@latin.po +++ b/addons/l10n_pl/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/tr.po b/addons/l10n_pl/i18n/tr.po index 7142f9be902..c409ac95302 100644 --- a/addons/l10n_pl/i18n/tr.po +++ b/addons/l10n_pl/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_syscohada/i18n/ar.po b/addons/l10n_syscohada/i18n/ar.po index 60ae3878182..add27f4fc41 100644 --- a/addons/l10n_syscohada/i18n/ar.po +++ b/addons/l10n_syscohada/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/ca.po b/addons/l10n_syscohada/i18n/ca.po index 1fdf9ef1b52..49df3b26799 100644 --- a/addons/l10n_syscohada/i18n/ca.po +++ b/addons/l10n_syscohada/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/es.po b/addons/l10n_syscohada/i18n/es.po index 715b4c2e834..9b3e7ad5b0d 100644 --- a/addons/l10n_syscohada/i18n/es.po +++ b/addons/l10n_syscohada/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/es_CR.po b/addons/l10n_syscohada/i18n/es_CR.po index b44029f135c..a67ac4c52b7 100644 --- a/addons/l10n_syscohada/i18n/es_CR.po +++ b/addons/l10n_syscohada/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/fr.po b/addons/l10n_syscohada/i18n/fr.po index 0e558b2a215..5fb4df687c6 100644 --- a/addons/l10n_syscohada/i18n/fr.po +++ b/addons/l10n_syscohada/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/nl.po b/addons/l10n_syscohada/i18n/nl.po index 9865c0e7403..a5a06d11895 100644 --- a/addons/l10n_syscohada/i18n/nl.po +++ b/addons/l10n_syscohada/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/pt.po b/addons/l10n_syscohada/i18n/pt.po index 7ede7f63813..87a53838f72 100644 --- a/addons/l10n_syscohada/i18n/pt.po +++ b/addons/l10n_syscohada/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/pt_BR.po b/addons/l10n_syscohada/i18n/pt_BR.po index 8865651454f..9ef49ddedc5 100644 --- a/addons/l10n_syscohada/i18n/pt_BR.po +++ b/addons/l10n_syscohada/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-07-18 22:41+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/ro.po b/addons/l10n_syscohada/i18n/ro.po index 2a935d373c0..f0f1d193aa8 100644 --- a/addons/l10n_syscohada/i18n/ro.po +++ b/addons/l10n_syscohada/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/sl.po b/addons/l10n_syscohada/i18n/sl.po index dabf174c1f3..c619eb2fe64 100644 --- a/addons/l10n_syscohada/i18n/sl.po +++ b/addons/l10n_syscohada/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/tr.po b/addons/l10n_syscohada/i18n/tr.po index a74ba0ff7c4..dbbb5bac319 100644 --- a/addons/l10n_syscohada/i18n/tr.po +++ b/addons/l10n_syscohada/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_th/i18n/ar.po b/addons/l10n_th/i18n/ar.po index 6ff2e3dad6e..2c8840c887c 100644 --- a/addons/l10n_th/i18n/ar.po +++ b/addons/l10n_th/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/ca.po b/addons/l10n_th/i18n/ca.po index 4083ddac446..1512ceae4f8 100644 --- a/addons/l10n_th/i18n/ca.po +++ b/addons/l10n_th/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/da.po b/addons/l10n_th/i18n/da.po index dacd88c9bb6..d957ceea996 100644 --- a/addons/l10n_th/i18n/da.po +++ b/addons/l10n_th/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/en_GB.po b/addons/l10n_th/i18n/en_GB.po index 07b34b24bcd..4200a0e37b0 100644 --- a/addons/l10n_th/i18n/en_GB.po +++ b/addons/l10n_th/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/es.po b/addons/l10n_th/i18n/es.po index 3fab0ebad93..3435038d417 100644 --- a/addons/l10n_th/i18n/es.po +++ b/addons/l10n_th/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/es_CR.po b/addons/l10n_th/i18n/es_CR.po index b4554e62a89..3cdd12b50ca 100644 --- a/addons/l10n_th/i18n/es_CR.po +++ b/addons/l10n_th/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/es_PY.po b/addons/l10n_th/i18n/es_PY.po index 2727ae0edfe..e057a0eb414 100644 --- a/addons/l10n_th/i18n/es_PY.po +++ b/addons/l10n_th/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/gl.po b/addons/l10n_th/i18n/gl.po index 0c5c4d62e90..f93c4ed979b 100644 --- a/addons/l10n_th/i18n/gl.po +++ b/addons/l10n_th/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/it.po b/addons/l10n_th/i18n/it.po index efb6a075672..e7f592d3110 100644 --- a/addons/l10n_th/i18n/it.po +++ b/addons/l10n_th/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/nb.po b/addons/l10n_th/i18n/nb.po index e134abf2686..f5b58d8e2b0 100644 --- a/addons/l10n_th/i18n/nb.po +++ b/addons/l10n_th/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/nl.po b/addons/l10n_th/i18n/nl.po index d892a117cca..97a7304c737 100644 --- a/addons/l10n_th/i18n/nl.po +++ b/addons/l10n_th/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/pt.po b/addons/l10n_th/i18n/pt.po index 62b2e652d88..3eebcfd619e 100644 --- a/addons/l10n_th/i18n/pt.po +++ b/addons/l10n_th/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/pt_BR.po b/addons/l10n_th/i18n/pt_BR.po index 133018ce84e..0f082e7ca6f 100644 --- a/addons/l10n_th/i18n/pt_BR.po +++ b/addons/l10n_th/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/sl.po b/addons/l10n_th/i18n/sl.po index 98ead0c16c1..ec1f1335857 100644 --- a/addons/l10n_th/i18n/sl.po +++ b/addons/l10n_th/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/sr@latin.po b/addons/l10n_th/i18n/sr@latin.po index 2d2a1bc5470..c20a976afcf 100644 --- a/addons/l10n_th/i18n/sr@latin.po +++ b/addons/l10n_th/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/th.po b/addons/l10n_th/i18n/th.po index 8ea4f83be3a..40683ee9665 100644 --- a/addons/l10n_th/i18n/th.po +++ b/addons/l10n_th/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/tr.po b/addons/l10n_th/i18n/tr.po index 58c4286bf62..30ea251a3b7 100644 --- a/addons/l10n_th/i18n/tr.po +++ b/addons/l10n_th/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_uk/i18n/ar.po b/addons/l10n_uk/i18n/ar.po index 3ce8c6a5270..0fded60c7d9 100644 --- a/addons/l10n_uk/i18n/ar.po +++ b/addons/l10n_uk/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/bg.po b/addons/l10n_uk/i18n/bg.po index 29712750037..04de7002cca 100644 --- a/addons/l10n_uk/i18n/bg.po +++ b/addons/l10n_uk/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/bs.po b/addons/l10n_uk/i18n/bs.po index d15d5dc7603..6c0640d5efc 100644 --- a/addons/l10n_uk/i18n/bs.po +++ b/addons/l10n_uk/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/ca.po b/addons/l10n_uk/i18n/ca.po index e15583875c7..3da8157058d 100644 --- a/addons/l10n_uk/i18n/ca.po +++ b/addons/l10n_uk/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/cs.po b/addons/l10n_uk/i18n/cs.po index b4f79d060fa..a583cf8a0c3 100644 --- a/addons/l10n_uk/i18n/cs.po +++ b/addons/l10n_uk/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/da.po b/addons/l10n_uk/i18n/da.po index b6fdf55331a..56e80c1d7f7 100644 --- a/addons/l10n_uk/i18n/da.po +++ b/addons/l10n_uk/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/de.po b/addons/l10n_uk/i18n/de.po index 5fe8ba6bc9b..cc663585d69 100644 --- a/addons/l10n_uk/i18n/de.po +++ b/addons/l10n_uk/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/es.po b/addons/l10n_uk/i18n/es.po index b7504b17154..629d5ec18d9 100644 --- a/addons/l10n_uk/i18n/es.po +++ b/addons/l10n_uk/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/es_CR.po b/addons/l10n_uk/i18n/es_CR.po index 5a16c0b74dc..17067e00de5 100644 --- a/addons/l10n_uk/i18n/es_CR.po +++ b/addons/l10n_uk/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/es_PY.po b/addons/l10n_uk/i18n/es_PY.po index 84005e02a13..9c07611254f 100644 --- a/addons/l10n_uk/i18n/es_PY.po +++ b/addons/l10n_uk/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/et.po b/addons/l10n_uk/i18n/et.po index 34db11ff2d0..12aafd7debc 100644 --- a/addons/l10n_uk/i18n/et.po +++ b/addons/l10n_uk/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/fr.po b/addons/l10n_uk/i18n/fr.po index 92d5784d89b..b7b64b74015 100644 --- a/addons/l10n_uk/i18n/fr.po +++ b/addons/l10n_uk/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/gl.po b/addons/l10n_uk/i18n/gl.po index 068e2c1df93..89bbb664789 100644 --- a/addons/l10n_uk/i18n/gl.po +++ b/addons/l10n_uk/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/hr.po b/addons/l10n_uk/i18n/hr.po index ec3237f3f26..03fec5627b7 100644 --- a/addons/l10n_uk/i18n/hr.po +++ b/addons/l10n_uk/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/hu.po b/addons/l10n_uk/i18n/hu.po index 3a2441e9e38..6b24d063b30 100644 --- a/addons/l10n_uk/i18n/hu.po +++ b/addons/l10n_uk/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/id.po b/addons/l10n_uk/i18n/id.po index a986e02808f..efedf17b36c 100644 --- a/addons/l10n_uk/i18n/id.po +++ b/addons/l10n_uk/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/it.po b/addons/l10n_uk/i18n/it.po index 87a6ead27a0..486a27df9f7 100644 --- a/addons/l10n_uk/i18n/it.po +++ b/addons/l10n_uk/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/ko.po b/addons/l10n_uk/i18n/ko.po index 1cb980b3ebf..f48f1829711 100644 --- a/addons/l10n_uk/i18n/ko.po +++ b/addons/l10n_uk/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/lt.po b/addons/l10n_uk/i18n/lt.po index 0af620a9462..9b17576475a 100644 --- a/addons/l10n_uk/i18n/lt.po +++ b/addons/l10n_uk/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/nl.po b/addons/l10n_uk/i18n/nl.po index 7c7c075c7c4..1a6cad271e0 100644 --- a/addons/l10n_uk/i18n/nl.po +++ b/addons/l10n_uk/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:22+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/oc.po b/addons/l10n_uk/i18n/oc.po index a1c535bbb7d..37e2a8362b0 100644 --- a/addons/l10n_uk/i18n/oc.po +++ b/addons/l10n_uk/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/pl.po b/addons/l10n_uk/i18n/pl.po index 47d6d8d3ac0..d84fddf4f08 100644 --- a/addons/l10n_uk/i18n/pl.po +++ b/addons/l10n_uk/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/pt.po b/addons/l10n_uk/i18n/pt.po index b58a25991cf..6ecdef46019 100644 --- a/addons/l10n_uk/i18n/pt.po +++ b/addons/l10n_uk/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/pt_BR.po b/addons/l10n_uk/i18n/pt_BR.po index 29b9a8ef53c..dd801693178 100644 --- a/addons/l10n_uk/i18n/pt_BR.po +++ b/addons/l10n_uk/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/ro.po b/addons/l10n_uk/i18n/ro.po index ae7557b50c9..c0e4eb8ff1a 100644 --- a/addons/l10n_uk/i18n/ro.po +++ b/addons/l10n_uk/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-03-07 19:45+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/ru.po b/addons/l10n_uk/i18n/ru.po index 538a13b9c90..ad67fece703 100644 --- a/addons/l10n_uk/i18n/ru.po +++ b/addons/l10n_uk/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/sl.po b/addons/l10n_uk/i18n/sl.po index b731bd32872..7d4d7ae1f78 100644 --- a/addons/l10n_uk/i18n/sl.po +++ b/addons/l10n_uk/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/sq.po b/addons/l10n_uk/i18n/sq.po index 389d8468d81..030a6c77de9 100644 --- a/addons/l10n_uk/i18n/sq.po +++ b/addons/l10n_uk/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/sr@latin.po b/addons/l10n_uk/i18n/sr@latin.po index 12160784737..2f3bab5086c 100644 --- a/addons/l10n_uk/i18n/sr@latin.po +++ b/addons/l10n_uk/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/sv.po b/addons/l10n_uk/i18n/sv.po index 53a64aac9a9..831ef9a6be7 100644 --- a/addons/l10n_uk/i18n/sv.po +++ b/addons/l10n_uk/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/tlh.po b/addons/l10n_uk/i18n/tlh.po index 2dccc0cb24b..d247bf3dd61 100644 --- a/addons/l10n_uk/i18n/tlh.po +++ b/addons/l10n_uk/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/tr.po b/addons/l10n_uk/i18n/tr.po index 221f1beff43..0a560591ea0 100644 --- a/addons/l10n_uk/i18n/tr.po +++ b/addons/l10n_uk/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/uk.po b/addons/l10n_uk/i18n/uk.po index 7e438fb15a5..98c385ddf95 100644 --- a/addons/l10n_uk/i18n/uk.po +++ b/addons/l10n_uk/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/vi.po b/addons/l10n_uk/i18n/vi.po index 88fa18f5693..b873690e3d4 100644 --- a/addons/l10n_uk/i18n/vi.po +++ b/addons/l10n_uk/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/zh_CN.po b/addons/l10n_uk/i18n/zh_CN.po index e87046632c8..fe81dc73351 100644 --- a/addons/l10n_uk/i18n/zh_CN.po +++ b/addons/l10n_uk/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/zh_TW.po b/addons/l10n_uk/i18n/zh_TW.po index 117c2761ab5..d2c98ab05e6 100644 --- a/addons/l10n_uk/i18n/zh_TW.po +++ b/addons/l10n_uk/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_ve/i18n/ar.po b/addons/l10n_ve/i18n/ar.po index 27de8d4d885..646f6b5f17e 100644 --- a/addons/l10n_ve/i18n/ar.po +++ b/addons/l10n_ve/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/ca.po b/addons/l10n_ve/i18n/ca.po index d8cb58f858c..952b8a35c31 100644 --- a/addons/l10n_ve/i18n/ca.po +++ b/addons/l10n_ve/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/da.po b/addons/l10n_ve/i18n/da.po index ff184704a9f..a9cec91fe47 100644 --- a/addons/l10n_ve/i18n/da.po +++ b/addons/l10n_ve/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/de.po b/addons/l10n_ve/i18n/de.po index 8eb8134bf7a..aa13d8261ba 100644 --- a/addons/l10n_ve/i18n/de.po +++ b/addons/l10n_ve/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/es.po b/addons/l10n_ve/i18n/es.po index 44374212b9f..a3e9e5be8cf 100644 --- a/addons/l10n_ve/i18n/es.po +++ b/addons/l10n_ve/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/es_CR.po b/addons/l10n_ve/i18n/es_CR.po index 5aaeb87a47e..e8ac5e07849 100644 --- a/addons/l10n_ve/i18n/es_CR.po +++ b/addons/l10n_ve/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/es_PY.po b/addons/l10n_ve/i18n/es_PY.po index d7070eeaa9a..da1120f7a69 100644 --- a/addons/l10n_ve/i18n/es_PY.po +++ b/addons/l10n_ve/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/gl.po b/addons/l10n_ve/i18n/gl.po index 797eeb0561f..ef05d26a8b3 100644 --- a/addons/l10n_ve/i18n/gl.po +++ b/addons/l10n_ve/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/it.po b/addons/l10n_ve/i18n/it.po index 3cf3944c4c7..fbed9d7ebbf 100644 --- a/addons/l10n_ve/i18n/it.po +++ b/addons/l10n_ve/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/nl.po b/addons/l10n_ve/i18n/nl.po index 464648a50fc..b23e9d9b0e4 100644 --- a/addons/l10n_ve/i18n/nl.po +++ b/addons/l10n_ve/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:22+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/pt.po b/addons/l10n_ve/i18n/pt.po index 8c8bf78e009..c3cc81e3051 100644 --- a/addons/l10n_ve/i18n/pt.po +++ b/addons/l10n_ve/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/pt_BR.po b/addons/l10n_ve/i18n/pt_BR.po index edd3c6e156f..c93867b27eb 100644 --- a/addons/l10n_ve/i18n/pt_BR.po +++ b/addons/l10n_ve/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/ro.po b/addons/l10n_ve/i18n/ro.po index 63c477bc1ea..90147859335 100644 --- a/addons/l10n_ve/i18n/ro.po +++ b/addons/l10n_ve/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-11-24 02:53+0000\n" "PO-Revision-Date: 2013-03-07 19:44+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/sl.po b/addons/l10n_ve/i18n/sl.po index 5e709f6ba7f..c27466a39d3 100644 --- a/addons/l10n_ve/i18n/sl.po +++ b/addons/l10n_ve/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/sr@latin.po b/addons/l10n_ve/i18n/sr@latin.po index 97f0a8fa686..cea30225b48 100644 --- a/addons/l10n_ve/i18n/sr@latin.po +++ b/addons/l10n_ve/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/tr.po b/addons/l10n_ve/i18n/tr.po index 6a3cbc12873..4ff8dae60bb 100644 --- a/addons/l10n_ve/i18n/tr.po +++ b/addons/l10n_ve/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/lunch/i18n/ar.po b/addons/lunch/i18n/ar.po index 66a5cd406d3..cf28ef15599 100644 --- a/addons/lunch/i18n/ar.po +++ b/addons/lunch/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/bg.po b/addons/lunch/i18n/bg.po index 0a183cef801..4d30195380b 100644 --- a/addons/lunch/i18n/bg.po +++ b/addons/lunch/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/ca.po b/addons/lunch/i18n/ca.po index 5f20e7e5bed..d498dd1d078 100644 --- a/addons/lunch/i18n/ca.po +++ b/addons/lunch/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/cs.po b/addons/lunch/i18n/cs.po index 43cc6aee71b..8990e866597 100644 --- a/addons/lunch/i18n/cs.po +++ b/addons/lunch/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/da.po b/addons/lunch/i18n/da.po index fc278e61acf..a73953fb50a 100644 --- a/addons/lunch/i18n/da.po +++ b/addons/lunch/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/de.po b/addons/lunch/i18n/de.po index 6b8325c2468..f575b943687 100644 --- a/addons/lunch/i18n/de.po +++ b/addons/lunch/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/es.po b/addons/lunch/i18n/es.po index ac8e6cfa581..cf2477db89b 100644 --- a/addons/lunch/i18n/es.po +++ b/addons/lunch/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/es_CR.po b/addons/lunch/i18n/es_CR.po index cb5efc56e01..ef7b13135e5 100644 --- a/addons/lunch/i18n/es_CR.po +++ b/addons/lunch/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/es_PY.po b/addons/lunch/i18n/es_PY.po index 2bcabbaf245..6e296258612 100644 --- a/addons/lunch/i18n/es_PY.po +++ b/addons/lunch/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/fi.po b/addons/lunch/i18n/fi.po index 80dbc3fb434..33c032fadc2 100644 --- a/addons/lunch/i18n/fi.po +++ b/addons/lunch/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/fr.po b/addons/lunch/i18n/fr.po index 4ef83411429..ab2dab83fb2 100644 --- a/addons/lunch/i18n/fr.po +++ b/addons/lunch/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/gl.po b/addons/lunch/i18n/gl.po index 8fec9158e98..81a6aa6cc9b 100644 --- a/addons/lunch/i18n/gl.po +++ b/addons/lunch/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/hr.po b/addons/lunch/i18n/hr.po index 4e0aaa6ee4b..9c643683fd9 100644 --- a/addons/lunch/i18n/hr.po +++ b/addons/lunch/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/hu.po b/addons/lunch/i18n/hu.po index 02021b3cd73..bcba3655da9 100644 --- a/addons/lunch/i18n/hu.po +++ b/addons/lunch/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/it.po b/addons/lunch/i18n/it.po index e351b47ab93..b442a1bba32 100644 --- a/addons/lunch/i18n/it.po +++ b/addons/lunch/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/ja.po b/addons/lunch/i18n/ja.po index 06d7825490e..2805baeeaf6 100644 --- a/addons/lunch/i18n/ja.po +++ b/addons/lunch/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/ko.po b/addons/lunch/i18n/ko.po index 817b32758dd..6320cefafa2 100644 --- a/addons/lunch/i18n/ko.po +++ b/addons/lunch/i18n/ko.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-05-12 07:26+0000\n" -"Last-Translator: AhnJD \n" +"Last-Translator: AhnJD \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/mk.po b/addons/lunch/i18n/mk.po index 756db9072c1..adedf5576f2 100644 --- a/addons/lunch/i18n/mk.po +++ b/addons/lunch/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/mn.po b/addons/lunch/i18n/mn.po index 30506c6bb6e..e2135e08e2c 100644 --- a/addons/lunch/i18n/mn.po +++ b/addons/lunch/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/nl.po b/addons/lunch/i18n/nl.po index 5dbf0ff789f..881076a8dd6 100644 --- a/addons/lunch/i18n/nl.po +++ b/addons/lunch/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/pt.po b/addons/lunch/i18n/pt.po index 6e0e16043ff..a4409d37ee4 100644 --- a/addons/lunch/i18n/pt.po +++ b/addons/lunch/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/pt_BR.po b/addons/lunch/i18n/pt_BR.po index d4d6a00a340..51e51c1869f 100644 --- a/addons/lunch/i18n/pt_BR.po +++ b/addons/lunch/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/ro.po b/addons/lunch/i18n/ro.po index 70de247bb43..f2205c1824a 100644 --- a/addons/lunch/i18n/ro.po +++ b/addons/lunch/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 19:02+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/ru.po b/addons/lunch/i18n/ru.po index 59c331deb2a..500531c4131 100644 --- a/addons/lunch/i18n/ru.po +++ b/addons/lunch/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-23 05:52+0000\n" -"X-Generator: Launchpad (build 16737)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/sl.po b/addons/lunch/i18n/sl.po index d0be8a3d580..b723bd4a7c0 100644 --- a/addons/lunch/i18n/sl.po +++ b/addons/lunch/i18n/sl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-15 06:32+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: lunch diff --git a/addons/lunch/i18n/sr@latin.po b/addons/lunch/i18n/sr@latin.po index cea87476892..46a481fc305 100644 --- a/addons/lunch/i18n/sr@latin.po +++ b/addons/lunch/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/sv.po b/addons/lunch/i18n/sv.po index 6233fdeafd3..7e1e54f3936 100644 --- a/addons/lunch/i18n/sv.po +++ b/addons/lunch/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/tr.po b/addons/lunch/i18n/tr.po index 8262543ed28..a987e3ec48f 100644 --- a/addons/lunch/i18n/tr.po +++ b/addons/lunch/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:07+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/zh_CN.po b/addons/lunch/i18n/zh_CN.po index 1cc7139e165..d98139d0ae7 100644 --- a/addons/lunch/i18n/zh_CN.po +++ b/addons/lunch/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-26 16:15+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-27 05:28+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: view:lunch.alert:0 @@ -129,6 +129,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击创建午餐单。 \n" +"

\n" +"

\n" +" 午餐单由使用者定义日期和内容。\n" +" 每个午餐单内容对应一个产品,一个附加信息和一个价格。\n" +" 决定内容前,记得阅读浅红色区域显示的警告。\n" +"

\n" +" " #. module: lunch #: view:lunch.order.line:0 @@ -163,6 +172,11 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 此处可以显示现金的转移。
A 现金转移可以为费用或付款。\n" +" 当收到一个午餐单时,会自动创建费用。而付款则为经理定义的向公司的缴款。\n" +"

\n" +" " #. module: lunch #: field:lunch.cashmove,amount:0 @@ -367,6 +381,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 此处显示按照供应商或日期分组的每个午餐单。\n" +"

\n" +"

\n" +" - 点击 来通知午餐单已下
\n" +" - 点击 来通知午餐单已收
\n" +" - 点击 red X 来通知午餐单无效\n" +"

\n" +" " #. module: lunch #: field:lunch.alert,tuesday:0 @@ -432,6 +458,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击创建午餐分类。 \n" +"

\n" +"

\n" +" 此处可以找到每个午餐的菜品分类。\n" +"

\n" +" " #. module: lunch #: view:lunch.order.order:0 @@ -590,6 +623,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 此处显示今天按照供应商分组的午餐单。\n" +"

\n" +"

\n" +" - 点击 来通知午餐单已下
\n" +" - 点击 来通知午餐单已收
\n" +" - 点击 来通知午餐单无效\n" +"

\n" +" " #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -657,6 +702,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击创建午餐提醒。 \n" +"

\n" +"

\n" +" 提醒用于与午餐单相关的可能事项。\n" +" 必须定义午餐提醒的频度,时间间隔以及要显示的信息。\n" +"

\n" +"

\n" +" 例如:
\n" +" - 频度:每天
\n" +" - 时间间隔:从 00h00 am 到 11h59 pm
\n" +" -信息:\"你必须在 10h30 am 前下单。\"\n" +"

\n" +" " #. module: lunch #: view:lunch.cancel:0 @@ -698,6 +757,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 创建一个付款。 \n" +"

\n" +"

\n" +" 此处显示员工的付款。付款为从员工到公司的现金转移。\n" +"

\n" +" " #. module: lunch #: code:addons/lunch/lunch.py:186 @@ -727,6 +793,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 创建一个付款。\n" +"

\n" +"

\n" +" 每次现金转移都可以是费用或者付款。
\n" +" 开具午餐单收据时自动创建费用。
\n" +" 付款意味着员工向公司缴款。\n" +"

\n" +" " #. module: lunch #: field:lunch.alert,alter_type:0 diff --git a/addons/lunch/i18n/zh_TW.po b/addons/lunch/i18n/zh_TW.po index 416aecac5a3..a4704ab43df 100644 --- a/addons/lunch/i18n/zh_TW.po +++ b/addons/lunch/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/mail/i18n/ar.po b/addons/mail/i18n/ar.po index 95787b7174d..95752c16b63 100644 --- a/addons/mail/i18n/ar.po +++ b/addons/mail/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/bg.po b/addons/mail/i18n/bg.po index 8098147780c..d142a6ec179 100644 --- a/addons/mail/i18n/bg.po +++ b/addons/mail/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/bs.po b/addons/mail/i18n/bs.po index f08f5a50309..f620bf5b30a 100644 --- a/addons/mail/i18n/bs.po +++ b/addons/mail/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:13+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/ca.po b/addons/mail/i18n/ca.po index 2ccddc127d1..e2c8ce19de7 100644 --- a/addons/mail/i18n/ca.po +++ b/addons/mail/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/cs.po b/addons/mail/i18n/cs.po index 405b047d9c6..1a8855edc39 100644 --- a/addons/mail/i18n/cs.po +++ b/addons/mail/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/da.po b/addons/mail/i18n/da.po index 23a0dd85eed..7ba98d3713c 100644 --- a/addons/mail/i18n/da.po +++ b/addons/mail/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/de.po b/addons/mail/i18n/de.po index 6cac337dfab..923ea400303 100644 --- a/addons/mail/i18n/de.po +++ b/addons/mail/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-09 05:48+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/es.po b/addons/mail/i18n/es.po index c09a6c33dd0..aef50de3edc 100644 --- a/addons/mail/i18n/es.po +++ b/addons/mail/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/es_CR.po b/addons/mail/i18n/es_CR.po index fea3f325b78..fe0881f2c50 100644 --- a/addons/mail/i18n/es_CR.po +++ b/addons/mail/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/es_MX.po b/addons/mail/i18n/es_MX.po index 19371e3e7cb..63975684a2a 100644 --- a/addons/mail/i18n/es_MX.po +++ b/addons/mail/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/es_PY.po b/addons/mail/i18n/es_PY.po index fb2a3be72b0..5bf0e6aaba0 100644 --- a/addons/mail/i18n/es_PY.po +++ b/addons/mail/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/es_VE.po b/addons/mail/i18n/es_VE.po index 11ed758bb82..74447e38855 100644 --- a/addons/mail/i18n/es_VE.po +++ b/addons/mail/i18n/es_VE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-29 05:14+0000\n" -"X-Generator: Launchpad (build 16818)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/et.po b/addons/mail/i18n/et.po index d5984acdec6..baf81cd10e2 100644 --- a/addons/mail/i18n/et.po +++ b/addons/mail/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/fi.po b/addons/mail/i18n/fi.po index c0cc0210cb0..e4a6daaf243 100644 --- a/addons/mail/i18n/fi.po +++ b/addons/mail/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/fr.po b/addons/mail/i18n/fr.po index 6a6d9f99599..c3e082a4d98 100644 --- a/addons/mail/i18n/fr.po +++ b/addons/mail/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 06:30+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/gl.po b/addons/mail/i18n/gl.po index f2618264468..80bc5bd8707 100644 --- a/addons/mail/i18n/gl.po +++ b/addons/mail/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/hr.po b/addons/mail/i18n/hr.po index 07f9f82a0e0..b1690cd894f 100644 --- a/addons/mail/i18n/hr.po +++ b/addons/mail/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-19 05:27+0000\n" -"X-Generator: Launchpad (build 16807)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/hu.po b/addons/mail/i18n/hu.po index 91136564712..33a87f0882b 100644 --- a/addons/mail/i18n/hu.po +++ b/addons/mail/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-01 05:39+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/it.po b/addons/mail/i18n/it.po index eda7bafb9ef..a48cfbff633 100644 --- a/addons/mail/i18n/it.po +++ b/addons/mail/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/ja.po b/addons/mail/i18n/ja.po index dceae9860ca..e0657fbae7d 100644 --- a/addons/mail/i18n/ja.po +++ b/addons/mail/i18n/ja.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: mail diff --git a/addons/mail/i18n/ko.po b/addons/mail/i18n/ko.po index f516ac9cb42..f7f14e6c06a 100644 --- a/addons/mail/i18n/ko.po +++ b/addons/mail/i18n/ko.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-05-12 07:39+0000\n" -"Last-Translator: AhnJD \n" +"Last-Translator: AhnJD \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/lt.po b/addons/mail/i18n/lt.po index 8b97cfc0ed7..8206fdcfcb5 100644 --- a/addons/mail/i18n/lt.po +++ b/addons/mail/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-22 05:39+0000\n" -"X-Generator: Launchpad (build 16734)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/lv.po b/addons/mail/i18n/lv.po index 15dc3f97078..351e3ae5c76 100644 --- a/addons/mail/i18n/lv.po +++ b/addons/mail/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/mk.po b/addons/mail/i18n/mk.po index b85fd474218..b301fdbdaea 100644 --- a/addons/mail/i18n/mk.po +++ b/addons/mail/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: mail diff --git a/addons/mail/i18n/mn.po b/addons/mail/i18n/mn.po index a7deb5ef560..6761bb7edbe 100644 --- a/addons/mail/i18n/mn.po +++ b/addons/mail/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/nl.po b/addons/mail/i18n/nl.po index c1ad126453b..3ca7d4f9bb8 100644 --- a/addons/mail/i18n/nl.po +++ b/addons/mail/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-06 11:09+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/pl.po b/addons/mail/i18n/pl.po index a1a9e432aa1..bb46a2eeec7 100644 --- a/addons/mail/i18n/pl.po +++ b/addons/mail/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/pt.po b/addons/mail/i18n/pt.po index 24f237d857b..5565b275b09 100644 --- a/addons/mail/i18n/pt.po +++ b/addons/mail/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/pt_BR.po b/addons/mail/i18n/pt_BR.po index 99e00b00606..3c9becadcaa 100644 --- a/addons/mail/i18n/pt_BR.po +++ b/addons/mail/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 21:00+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/ro.po b/addons/mail/i18n/ro.po index 38e9f7cebb2..1a4bf70f49f 100644 --- a/addons/mail/i18n/ro.po +++ b/addons/mail/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/ru.po b/addons/mail/i18n/ru.po index 776c0c89faa..9cf73ae847a 100644 --- a/addons/mail/i18n/ru.po +++ b/addons/mail/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/sl.po b/addons/mail/i18n/sl.po index 8cb4492ff35..b8172961582 100644 --- a/addons/mail/i18n/sl.po +++ b/addons/mail/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-06 13:24+0000\n" +"PO-Revision-Date: 2013-11-20 22:09+0000\n" "Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-07 05:50+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 @@ -60,7 +60,7 @@ msgstr "Komentarji" #: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" -msgstr "" +msgstr "več sporočil" #. module: mail #: view:mail.alias:0 @@ -80,6 +80,8 @@ msgid "" "The name of the email alias, e.g. 'jobs' if you want to catch emails for " "" msgstr "" +"Ime vzdevka v e-mailu, npr. 'jobs', če želite iskati e-maile za " +"" #. module: mail #: model:ir.actions.act_window,name:mail.action_email_compose_message_wizard @@ -93,6 +95,8 @@ msgid "" "Invalid expression, it must be a literal python dictionary definition e.g. " "\"{'field': 'value'}\"" msgstr "" +"Napačen izraz, mora biti skladen z definicijo python slovarja, npr. " +"\"{'field':'value'}\"" #. module: mail #: view:mail.group:0 @@ -109,7 +113,7 @@ msgstr "Javno" #: code:addons/mail/static/src/xml/mail.xml:277 #, python-format msgid "to" -msgstr "" +msgstr "za" #. module: mail #: view:mail.mail:0 @@ -128,6 +132,8 @@ msgid "" "Email address of the sender. This field is set when no matching partner is " "found for incoming emails." msgstr "" +"Elektronski naslov pošiljatelja. To polje je označeno, če ni najden ustrezen " +"partner za vhodno pošto." #. module: mail #: model:ir.model,name:mail.model_mail_compose_message @@ -139,7 +145,7 @@ msgstr "Čarovnik za sestavljanje e-pošte" #: code:addons/mail/static/src/xml/mail.xml:268 #, python-format msgid "updated document" -msgstr "" +msgstr "ažuriran dokument" #. module: mail #. openerp-web @@ -184,6 +190,8 @@ msgid "" "Members of those groups will automatically added as followers. Note that " "they will be able to manage their subscription manually if necessary." msgstr "" +"Člani te skupine bodo avtomatično dodani kot sledilci. Lahko bodo upravljali " +"svojo prijavo tudi ročno, če bo treba." #. module: mail #. openerp-web @@ -212,6 +220,9 @@ msgid "" " %s won't be notified of any email or discussion on this document. Do you " "really want to remove him from the followers ?" msgstr "" +"Opozorilo! \n" +" %s ne bo obveščen o nobenem e-mailu ali diskusiji na tem dokumentu. Ali ga " +"res želite odstraniti iz seznama sledilcev?" #. module: mail #: field:mail.compose.message,res_id:0 @@ -219,7 +230,7 @@ msgstr "" #: field:mail.message,res_id:0 #: field:mail.wizard.invite,res_id:0 msgid "Related Document ID" -msgstr "" +msgstr "ID povezanega dokumenta" #. module: mail #: code:addons/mail/mail_message.py:737 @@ -234,6 +245,9 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" +"Slika srednje velikosti za to skupino. Avtomatično bo prilagojena na " +"128x128px, z upoštevanjem razmerja. Uporabite to polje v pogledih forme ali " +"nekaterih pogledih kanban." #. module: mail #. openerp-web @@ -271,7 +285,7 @@ msgstr "Prejeto" #: code:addons/mail/static/src/xml/mail.xml:71 #, python-format msgid "Attach a File" -msgstr "" +msgstr "Pripni datoteko" #. module: mail #: view:mail.mail:0 @@ -283,14 +297,14 @@ msgstr "Nit" #: code:addons/mail/static/src/xml/mail.xml:29 #, python-format msgid "Open the full mail composer" -msgstr "" +msgstr "Odpri celotni oblikovalca elektronske pošte" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:29 #, python-format msgid "ò" -msgstr "" +msgstr "ò" #. module: mail #: field:base.config.settings,alias_domain:0 @@ -300,7 +314,7 @@ msgstr "" #. module: mail #: field:mail.group,group_ids:0 msgid "Auto Subscription" -msgstr "" +msgstr "avto-prijava" #. module: mail #: field:mail.mail,references:0 @@ -319,6 +333,8 @@ msgid "" "Author of the message. If not set, email_from may hold an email address that " "did not match any partner." msgstr "" +"Avtor sporočila. Če ni nastavljen, lahko email_from vsebuje elektronski " +"naslov, ki ni povezan z nobenim partnerjem." #. module: mail #. openerp-web @@ -342,6 +358,9 @@ msgid "" "Message type: email for email message, notification for system message, " "comment for other messages such as user replies" msgstr "" +"Tip sporočila: elektronska pošta za elektronsko sporočilo, zaznamek za " +"sistemsko sporočilo, komentar za ostala sporočila kot npr. uporabnikov " +"odgovor" #. module: mail #: help:mail.message.subtype,relation_field:0 @@ -365,14 +384,14 @@ msgstr "Odgovori" #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "" +msgstr "
Bili ste povabljeni, da sledite %s.
" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:53 #, python-format msgid "Send a message" -msgstr "" +msgstr "Pošlji sporočilo" #. module: mail #: help:mail.group,message_unread:0 @@ -400,21 +419,21 @@ msgstr "Vrsta sporočila" #. module: mail #: field:mail.mail,auto_delete:0 msgid "Auto Delete" -msgstr "" +msgstr "avtomatsko brisanje" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:294 #, python-format msgid "notified" -msgstr "" +msgstr "obveščen" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:274 #, python-format msgid "logged a note" -msgstr "" +msgstr "zabeležil pripombo" #. module: mail #. openerp-web @@ -422,14 +441,14 @@ msgstr "" #: view:mail.group:0 #, python-format msgid "Unfollow" -msgstr "" +msgstr "prekini sledenje" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" -msgstr "" +msgstr "pokaži še eno sporočilo" #. module: mail #: code:addons/mail/mail_mail.py:75 @@ -443,7 +462,7 @@ msgstr "Napačno dejanje!" #: code:addons/mail/static/src/xml/mail.xml:25 #, python-format msgid "User img" -msgstr "" +msgstr "slika uporabnika" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_mail @@ -478,23 +497,23 @@ msgstr "" #. module: mail #: view:base.config.settings:0 msgid "mycompany.my.openerp.com" -msgstr "" +msgstr "mycompany.my.openerp.com" #. module: mail #: field:mail.message.subtype,relation_field:0 msgid "Relation field" -msgstr "" +msgstr "Polje povezave" #. module: mail #: selection:mail.compose.message,type:0 #: selection:mail.message,type:0 msgid "System notification" -msgstr "" +msgstr "Sistemsko sporočilo" #. module: mail #: view:mail.message:0 msgid "To Read" -msgstr "" +msgstr "Prebrati" #. module: mail #: model:ir.model,name:mail.model_res_partner @@ -535,13 +554,13 @@ msgstr "Od" #: field:mail.message,subtype_id:0 #: view:mail.message.subtype:0 msgid "Subtype" -msgstr "" +msgstr "Podvrsta" #. module: mail #: view:mail.mail:0 #: view:mail.message.subtype:0 msgid "Email message" -msgstr "" +msgstr "Elektronsko sporočilo" #. module: mail #: model:ir.model,name:mail.model_base_config_settings @@ -558,7 +577,7 @@ msgstr "sledilci" #. module: mail #: view:mail.group:0 msgid "Send a message to the group" -msgstr "" +msgstr "Pošlji sporočilo skupini" #. module: mail #. openerp-web @@ -573,7 +592,7 @@ msgstr "Pošlji" #: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "" +msgstr "Ni sledilcev" #. module: mail #: view:mail.mail:0 @@ -583,7 +602,7 @@ msgstr "Neuspešno" #. module: mail #: view:mail.mail:0 msgid "Cancel Email" -msgstr "" +msgstr "Prekliči e-mail" #. module: mail #. openerp-web diff --git a/addons/mail/i18n/sr@latin.po b/addons/mail/i18n/sr@latin.po index 6e0d65705d0..21fa69cdc77 100644 --- a/addons/mail/i18n/sr@latin.po +++ b/addons/mail/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/sv.po b/addons/mail/i18n/sv.po index dbc95047eac..0a422ee9a0d 100644 --- a/addons/mail/i18n/sv.po +++ b/addons/mail/i18n/sv.po @@ -2,25 +2,26 @@ # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2012. +# Anders Wallenquist , 2013. # msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-19 23:08+0000\n" +"PO-Revision-Date: 2013-11-21 01:48+0000\n" "Last-Translator: Anders Wallenquist \n" -"Language-Team: Swedish \n" +"Language-Team: Svenska \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 msgid "Followers Form" -msgstr "Följare formulär" +msgstr "Följarformulär" #. module: mail #: code:addons/mail/mail_thread.py:246 @@ -95,6 +96,8 @@ msgid "" "Invalid expression, it must be a literal python dictionary definition e.g. " "\"{'field': 'value'}\"" msgstr "" +"Felaktigt uttryck, det måste vara en python dict-definition eg " +"{'fält':'värde'}" #. module: mail #: view:mail.group:0 @@ -134,7 +137,7 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "E-postredigeringsguide" #. module: mail #. openerp-web @@ -203,7 +206,7 @@ msgstr "Läst" #. module: mail #: view:mail.group:0 msgid "Search Groups" -msgstr "" +msgstr "Sökgrupper" #. module: mail #. openerp-web @@ -247,7 +250,7 @@ msgstr "Uppladdningsfel" #. module: mail #: model:mail.group,name:mail.group_support msgid "Support" -msgstr "" +msgstr "Stöd" #. module: mail #: code:addons/mail/mail_message.py:738 @@ -294,7 +297,7 @@ msgstr "" #. module: mail #: field:base.config.settings,alias_domain:0 msgid "Alias Domain" -msgstr "" +msgstr "Domänvärde" #. module: mail #: field:mail.group,group_ids:0 @@ -406,14 +409,14 @@ msgstr "Autoradera" #: code:addons/mail/static/src/xml/mail.xml:294 #, python-format msgid "notified" -msgstr "" +msgstr "notifierad" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:274 #, python-format msgid "logged a note" -msgstr "" +msgstr "Lägg till anteckning" #. module: mail #. openerp-web @@ -442,7 +445,7 @@ msgstr "Ogiltig åtgärd" #: code:addons/mail/static/src/xml/mail.xml:25 #, python-format msgid "User img" -msgstr "" +msgstr "Användarbild" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_mail @@ -455,7 +458,7 @@ msgstr "E-post" #. module: mail #: field:mail.followers,partner_id:0 msgid "Related Partner" -msgstr "" +msgstr "Relaterat företag" #. module: mail #: help:mail.group,message_summary:0 @@ -477,23 +480,23 @@ msgstr "" #. module: mail #: view:base.config.settings:0 msgid "mycompany.my.openerp.com" -msgstr "" +msgstr "mitt.foretag.openerp.com" #. module: mail #: field:mail.message.subtype,relation_field:0 msgid "Relation field" -msgstr "" +msgstr "Relationsfält" #. module: mail #: selection:mail.compose.message,type:0 #: selection:mail.message,type:0 msgid "System notification" -msgstr "" +msgstr "Varningsmeddelande" #. module: mail #: view:mail.message:0 msgid "To Read" -msgstr "" +msgstr "Att läsa" #. module: mail #: model:ir.model,name:mail.model_res_partner @@ -503,7 +506,7 @@ msgstr "Partner" #. module: mail #: model:ir.ui.menu,name:mail.mail_my_stuff msgid "Organizer" -msgstr "" +msgstr "Organisatör" #. module: mail #: field:mail.compose.message,subject:0 @@ -514,7 +517,7 @@ msgstr "Ämne" #. module: mail #: field:mail.wizard.invite,partner_ids:0 msgid "Partners" -msgstr "" +msgstr "Företag" #. module: mail #: view:mail.mail:0 @@ -552,12 +555,12 @@ msgstr "" #: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" -msgstr "" +msgstr "Följare formulär" #. module: mail #: view:mail.group:0 msgid "Send a message to the group" -msgstr "" +msgstr "Meddelande att skicka till gruppen" #. module: mail #. openerp-web @@ -572,7 +575,7 @@ msgstr "Skicka" #: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "" +msgstr "Inga följare" #. module: mail #: view:mail.mail:0 @@ -582,7 +585,7 @@ msgstr "Misslyckades" #. module: mail #: view:mail.mail:0 msgid "Cancel Email" -msgstr "" +msgstr "Avbryt E-post" #. module: mail #. openerp-web @@ -595,18 +598,18 @@ msgstr "" #: field:res.partner,message_follower_ids:0 #, python-format msgid "Followers" -msgstr "" +msgstr "Följare" #. module: mail #: model:ir.actions.client,name:mail.action_mail_archives_feeds #: model:ir.ui.menu,name:mail.mail_archivesfeeds msgid "Archives" -msgstr "" +msgstr "Arkiv" #. module: mail #: view:mail.compose.message:0 msgid "Subject..." -msgstr "" +msgstr "Ärendemening..." #. module: mail #. openerp-web @@ -614,20 +617,20 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" -msgstr "" +msgstr "Radera denna bilaga" #. module: mail #: code:addons/mail/mail_thread.py:112 #, python-format msgid "New" -msgstr "" +msgstr "Ny" #. module: mail #. openerp-web #: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" -msgstr "" +msgstr "En följate" #. module: mail #: field:mail.compose.message,model:0 @@ -635,41 +638,41 @@ msgstr "" #: field:mail.message,model:0 #: field:mail.wizard.invite,res_model:0 msgid "Related Document Model" -msgstr "" +msgstr "Modell för relaterade dokument" #. module: mail #: field:mail.compose.message,type:0 #: field:mail.message,type:0 msgid "Type" -msgstr "" +msgstr "Typ" #. module: mail #: selection:mail.compose.message,type:0 #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Email" -msgstr "" +msgstr "E-Post" #. module: mail #: field:ir.ui.menu,mail_group_id:0 msgid "Mail Group" -msgstr "" +msgstr "E-postgrupp" #. module: mail #: field:mail.alias,alias_defaults:0 msgid "Default Values" -msgstr "" +msgstr "Standardvärden" #. module: mail #: view:mail.mail:0 msgid "by" -msgstr "" +msgstr "av" #. module: mail #: code:addons/mail/res_users.py:89 #, python-format msgid "%s has joined the %s network." -msgstr "" +msgstr "%s har gått med i %s nätverket." #. module: mail #: help:mail.group,image_small:0 @@ -690,29 +693,29 @@ msgstr "Mottagare" #: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" -msgstr "" +msgstr "<<<" #. module: mail #: field:mail.group,group_public_id:0 msgid "Authorized Group" -msgstr "" +msgstr "Bemyndigad grupp" #. module: mail #: view:mail.group:0 msgid "Join Group" -msgstr "" +msgstr "Gå med i grupen" #. module: mail #: help:mail.mail,email_from:0 msgid "Message sender, taken from user preferences." -msgstr "" +msgstr "Avsändare, från dina inställningar" #. module: mail #. openerp-web #: code:addons/mail/static/src/js/mail.js:978 #, python-format msgid "read more" -msgstr "" +msgstr "läs mer" #. module: mail #: code:addons/mail/wizard/invite.py:40 @@ -724,7 +727,7 @@ msgstr "" #: field:mail.compose.message,parent_id:0 #: field:mail.message,parent_id:0 msgid "Parent Message" -msgstr "" +msgstr "Överliggande meddelande" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -755,12 +758,12 @@ msgstr "" #. module: mail #: model:mail.group,name:mail.group_rd msgid "R&D" -msgstr "" +msgstr "FoU" #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite msgid "Invite wizard" -msgstr "" +msgstr "Inbjudningsguide" #. module: mail #: view:mail.mail:0 @@ -772,7 +775,7 @@ msgstr "Avancerat" #: code:addons/mail/static/src/xml/mail.xml:244 #, python-format msgid "Move to Inbox" -msgstr "" +msgstr "Flytta till inboxen" #. module: mail #: code:addons/mail/wizard/mail_compose_message.py:193 @@ -784,7 +787,7 @@ msgstr "Re:" #: field:mail.compose.message,to_read:0 #: field:mail.message,to_read:0 msgid "To read" -msgstr "" +msgstr "Att läsa" #. module: mail #: code:addons/mail/res_users.py:69 @@ -805,14 +808,14 @@ msgstr "" #: code:addons/mail/static/src/js/mail.js:979 #, python-format msgid "read less" -msgstr "" +msgstr "läs mindre" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" -msgstr "" +msgstr "gilla" #. module: mail #: view:mail.compose.message:0 @@ -825,12 +828,12 @@ msgstr "Avbryt" #: code:addons/mail/static/src/xml/mail.xml:47 #, python-format msgid "Share with my followers..." -msgstr "" +msgstr "Dela med mina följare..." #. module: mail #: field:mail.notification,partner_id:0 msgid "Contact" -msgstr "" +msgstr "Kontakt" #. module: mail #: view:mail.group:0 @@ -852,7 +855,7 @@ msgstr "" #. module: mail #: view:mail.mail:0 msgid "on" -msgstr "" +msgstr "på" #. module: mail #: code:addons/mail/mail_message.py:926 @@ -880,14 +883,14 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:55 #, python-format msgid "Log a note" -msgstr "" +msgstr "Logga en notering" #. module: mail #: selection:mail.compose.message,type:0 #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Comment" -msgstr "" +msgstr "Kommentar" #. module: mail #: model:ir.actions.client,help:mail.action_mail_inbox_feeds @@ -914,7 +917,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:188 #, python-format msgid "Compose a new message" -msgstr "" +msgstr "Skriv nytt meddelande" #. module: mail #: view:mail.mail:0 @@ -938,7 +941,7 @@ msgstr "" #. module: mail #: field:mail.group,image:0 msgid "Photo" -msgstr "" +msgstr "Foto" #. module: mail #: help:mail.compose.message,vote_user_ids:0 @@ -967,12 +970,12 @@ msgstr "Sök e-post" #: field:mail.compose.message,child_ids:0 #: field:mail.message,child_ids:0 msgid "Child Messages" -msgstr "" +msgstr "undermeddelanden" #. module: mail #: field:mail.alias,alias_user_id:0 msgid "Owner" -msgstr "" +msgstr "Ägare" #. module: mail #: code:addons/mail/res_partner.py:52 @@ -987,7 +990,7 @@ msgstr "" #: field:mail.notification,message_id:0 #: field:mail.wizard.invite,message:0 msgid "Message" -msgstr "" +msgstr "Meddelanden" #. module: mail #: help:mail.followers,res_id:0 @@ -999,13 +1002,13 @@ msgstr "" #: field:mail.compose.message,body:0 #: field:mail.message,body:0 msgid "Contents" -msgstr "" +msgstr "Innehåll" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_alias #: model:ir.ui.menu,name:mail.mail_alias_menu msgid "Aliases" -msgstr "" +msgstr "Alias" #. module: mail #: help:mail.message.subtype,description:0 @@ -1018,12 +1021,12 @@ msgstr "" #: field:mail.compose.message,vote_user_ids:0 #: field:mail.message,vote_user_ids:0 msgid "Votes" -msgstr "" +msgstr "Röster" #. module: mail #: view:mail.group:0 msgid "Group" -msgstr "" +msgstr "Gruppera" #. module: mail #: help:mail.compose.message,starred:0 @@ -1086,12 +1089,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Meddelande saknas och inget skickat ännu.\n" +"

\n" +" Klicka på översta högra ikonen för att skapa ett " +"meddelande. Detta\n" +" meddelande skickas via e-post om det är en intern " +"kontakt.\n" +"

\n" +" " #. module: mail #: view:mail.mail:0 #: field:mail.mail,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: mail #: view:mail.mail:0 @@ -1107,13 +1119,13 @@ msgstr "Utgående" #: view:mail.wizard.invite:0 #, python-format msgid "or" -msgstr "" +msgstr "eller" #. module: mail #: code:addons/mail/mail_thread.py:111 #, python-format msgid "You have one unread message" -msgstr "" +msgstr "Du har ett oläst meddelande" #. module: mail #: help:mail.compose.message,record_name:0 @@ -1130,12 +1142,12 @@ msgstr "" #: field:mail.message,notification_ids:0 #: view:mail.notification:0 msgid "Notifications" -msgstr "" +msgstr "Notifikationer" #. module: mail #: view:mail.alias:0 msgid "Search Alias" -msgstr "" +msgstr "Sök alias" #. module: mail #: help:mail.alias,alias_force_thread_id:0 @@ -1182,7 +1194,7 @@ msgstr "" #: field:mail.thread,message_is_follower:0 #: field:res.partner,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Är en följare" #. module: mail #: view:mail.alias:0 @@ -1193,12 +1205,12 @@ msgstr "Användare" #. module: mail #: view:mail.group:0 msgid "Groups" -msgstr "" +msgstr "Grupper" #. module: mail #: view:mail.message:0 msgid "Messages Search" -msgstr "" +msgstr "E-postsökning" #. module: mail #: field:mail.compose.message,date:0 @@ -1214,7 +1226,7 @@ msgstr "Utökade filter..." #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Incoming Emails only" -msgstr "" +msgstr "Endast inkommane post" #. module: mail #. openerp-web @@ -1228,14 +1240,14 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" -msgstr "" +msgstr "Till:" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:193 #, python-format msgid "Write to my followers" -msgstr "" +msgstr "Skriv till mina följare" #. module: mail #: model:ir.model,name:mail.model_res_groups @@ -1287,14 +1299,14 @@ msgstr "" #. module: mail #: view:mail.group:0 msgid "Group Form" -msgstr "" +msgstr "Gruppformulär" #. module: mail #: field:mail.compose.message,starred:0 #: field:mail.message,starred:0 #: field:mail.notification,starred:0 msgid "Starred" -msgstr "" +msgstr "Blockerad" #. module: mail #: field:mail.group,menu_id:0 @@ -1305,14 +1317,14 @@ msgstr "" #: code:addons/mail/update.py:93 #, python-format msgid "Error" -msgstr "" +msgstr "Fel" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "" +msgstr "Följer" #. module: mail #: sql_constraint:mail.alias:0 @@ -1412,19 +1424,19 @@ msgstr "" #. module: mail #: model:mail.message.subtype,name:mail.mt_comment msgid "Discussions" -msgstr "" +msgstr "Diskussioner" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:11 #, python-format msgid "Follow" -msgstr "" +msgstr "Följ" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "" +msgstr "Hela företaget" #. module: mail #. openerp-web @@ -1479,14 +1491,14 @@ msgstr "Besvara" #: field:mail.compose.message,notified_partner_ids:0 #: field:mail.message,notified_partner_ids:0 msgid "Notified partners" -msgstr "" +msgstr "Meddelade företag" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" -msgstr "" +msgstr "detta dokument" #. module: mail #: help:mail.group,public:0 @@ -1498,7 +1510,7 @@ msgstr "" #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "" +msgstr "Styrelsemöten" #. module: mail #: field:mail.alias,alias_model_id:0 @@ -1532,7 +1544,7 @@ msgstr "" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "" +msgstr "Aldrig" #. module: mail #: field:mail.mail,mail_server_id:0 @@ -1571,7 +1583,7 @@ msgstr "E-posttråd" #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "" +msgstr "Delta i en grupp" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1662,7 +1674,7 @@ msgstr "" #: model:ir.actions.client,name:mail.action_mail_star_feeds #: model:ir.ui.menu,name:mail.mail_starfeeds msgid "To-do" -msgstr "" +msgstr "Att göra" #. module: mail #: view:mail.alias:0 @@ -1696,20 +1708,20 @@ msgstr "" #: model:ir.ui.menu,name:mail.mail_feeds #: model:ir.ui.menu,name:mail.mail_feeds_main msgid "Messaging" -msgstr "" +msgstr "Meddelanden" #. module: mail #: view:mail.alias:0 #: field:mail.message.subtype,res_model:0 msgid "Model" -msgstr "" +msgstr "Modell" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:206 #, python-format msgid "No messages." -msgstr "" +msgstr "Inga meddelanen" #. module: mail #: help:mail.followers,subtype_ids:0 @@ -1746,7 +1758,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" -msgstr "" +msgstr "avgilla" #. module: mail #: model:ir.model,name:mail.model_mail_group @@ -1772,7 +1784,7 @@ msgstr "" #. module: mail #: selection:mail.group,public:0 msgid "Private" -msgstr "" +msgstr "Privat" #. module: mail #: model:ir.actions.client,help:mail.action_mail_star_feeds @@ -1802,7 +1814,7 @@ msgstr "" #: help:mail.compose.message,parent_id:0 #: help:mail.message,parent_id:0 msgid "Initial thread message." -msgstr "" +msgstr "Inledande meddelande i tråd." #. module: mail #: model:mail.group,name:mail.group_hr_policies @@ -1814,13 +1826,13 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" -msgstr "" +msgstr "Skriv nytt meddelande" #. module: mail #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "" +msgstr "Inkorg" #. module: mail #: field:mail.compose.message,filter_id:0 @@ -1838,17 +1850,17 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_view_message_subtype #: model:ir.ui.menu,name:mail.menu_message_subtype msgid "Subtypes" -msgstr "" +msgstr "Undertyper" #. module: mail #: model:ir.model,name:mail.model_mail_alias msgid "Email Aliases" -msgstr "" +msgstr "E-postalias" #. module: mail #: field:mail.group,image_small:0 msgid "Small-sized photo" -msgstr "" +msgstr "Litet fotografi" #. module: mail #: help:mail.mail,reply_to:0 diff --git a/addons/mail/i18n/th.po b/addons/mail/i18n/th.po index 2f19809f92a..67764b439f7 100644 --- a/addons/mail/i18n/th.po +++ b/addons/mail/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/tr.po b/addons/mail/i18n/tr.po index 0b2b76603b7..2f1644caf34 100644 --- a/addons/mail/i18n/tr.po +++ b/addons/mail/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-12 06:34+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/vi.po b/addons/mail/i18n/vi.po index 5b60ca12057..5b9d23511c4 100644 --- a/addons/mail/i18n/vi.po +++ b/addons/mail/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/zh_CN.po b/addons/mail/i18n/zh_CN.po index a1a76c97baf..78d76993866 100644 --- a/addons/mail/i18n/zh_CN.po +++ b/addons/mail/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-22 13:11+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-23 05:33+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 @@ -355,6 +355,7 @@ msgid "" "automatic subscription on a related document. The field is used to compute " "getattr(related_document.relation_field)." msgstr "" +"使用自动注册相关文档时用来关联模型和子模型的域。该域用来计算 getattr(related_document.relation_field)." #. module: mail #: selection:mail.mail,state:0 @@ -1033,7 +1034,7 @@ msgstr "别名" msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." -msgstr "" +msgstr "将为该子模型的消息添加注解。如为空,则添加名称。" #. module: mail #: field:mail.compose.message,vote_user_ids:0 diff --git a/addons/mail/i18n/zh_TW.po b/addons/mail/i18n/zh_TW.po index 65973ed0a8e..88bbf032376 100644 --- a/addons/mail/i18n/zh_TW.po +++ b/addons/mail/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/marketing/i18n/ar.po b/addons/marketing/i18n/ar.po index f13774d263d..6943311fd85 100644 --- a/addons/marketing/i18n/ar.po +++ b/addons/marketing/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/bg.po b/addons/marketing/i18n/bg.po index e10997059ac..6ad37683c1e 100644 --- a/addons/marketing/i18n/bg.po +++ b/addons/marketing/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/ca.po b/addons/marketing/i18n/ca.po index 6ff8809b071..42ce0d562ee 100644 --- a/addons/marketing/i18n/ca.po +++ b/addons/marketing/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/cs.po b/addons/marketing/i18n/cs.po index 5ff517f7d8e..c008d494b0d 100644 --- a/addons/marketing/i18n/cs.po +++ b/addons/marketing/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/da.po b/addons/marketing/i18n/da.po index a05c7b6c0a5..68e1a7f32ad 100644 --- a/addons/marketing/i18n/da.po +++ b/addons/marketing/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/de.po b/addons/marketing/i18n/de.po index 0cabb0a4c5b..79a8e3d4bd6 100644 --- a/addons/marketing/i18n/de.po +++ b/addons/marketing/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/el.po b/addons/marketing/i18n/el.po index 38ae2d9bd21..d09f6aac8aa 100644 --- a/addons/marketing/i18n/el.po +++ b/addons/marketing/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/es.po b/addons/marketing/i18n/es.po index 70621a41a2d..139d37bfb0f 100644 --- a/addons/marketing/i18n/es.po +++ b/addons/marketing/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/es_CR.po b/addons/marketing/i18n/es_CR.po index 1194270f0eb..d698871c308 100644 --- a/addons/marketing/i18n/es_CR.po +++ b/addons/marketing/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/fi.po b/addons/marketing/i18n/fi.po index f15641fa2ac..8b69656eb0a 100644 --- a/addons/marketing/i18n/fi.po +++ b/addons/marketing/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/fr.po b/addons/marketing/i18n/fr.po index ea79820f72e..bf80d66ff0f 100644 --- a/addons/marketing/i18n/fr.po +++ b/addons/marketing/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/gl.po b/addons/marketing/i18n/gl.po index 5d7ec9be3c7..06a5a088b28 100644 --- a/addons/marketing/i18n/gl.po +++ b/addons/marketing/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/hr.po b/addons/marketing/i18n/hr.po index f539b9c17a3..3cd10edd499 100644 --- a/addons/marketing/i18n/hr.po +++ b/addons/marketing/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/hu.po b/addons/marketing/i18n/hu.po index 21911e69190..e8809276570 100644 --- a/addons/marketing/i18n/hu.po +++ b/addons/marketing/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/id.po b/addons/marketing/i18n/id.po index 6d79c35c16f..f15b22d248a 100644 --- a/addons/marketing/i18n/id.po +++ b/addons/marketing/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/it.po b/addons/marketing/i18n/it.po index 8aff843eba2..2cafe2fecc8 100644 --- a/addons/marketing/i18n/it.po +++ b/addons/marketing/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/ja.po b/addons/marketing/i18n/ja.po index a6742720fb0..7c06d7cd91f 100644 --- a/addons/marketing/i18n/ja.po +++ b/addons/marketing/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/lt.po b/addons/marketing/i18n/lt.po index bd5a6e8e192..a76de35797b 100644 --- a/addons/marketing/i18n/lt.po +++ b/addons/marketing/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/lv.po b/addons/marketing/i18n/lv.po index 15e8856f036..cfdbd5951be 100644 --- a/addons/marketing/i18n/lv.po +++ b/addons/marketing/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/mk.po b/addons/marketing/i18n/mk.po index 045c0253972..0f2d7f3dafd 100644 --- a/addons/marketing/i18n/mk.po +++ b/addons/marketing/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/mn.po b/addons/marketing/i18n/mn.po index bebcb926e81..18401fa3703 100644 --- a/addons/marketing/i18n/mn.po +++ b/addons/marketing/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/nb.po b/addons/marketing/i18n/nb.po index 4bcfbce95c5..96b182e8640 100644 --- a/addons/marketing/i18n/nb.po +++ b/addons/marketing/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/nl.po b/addons/marketing/i18n/nl.po index accffed30ba..fb5d171a6c6 100644 --- a/addons/marketing/i18n/nl.po +++ b/addons/marketing/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-09 09:50+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/pl.po b/addons/marketing/i18n/pl.po index b83c9ab18c4..efb09541395 100644 --- a/addons/marketing/i18n/pl.po +++ b/addons/marketing/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/pt.po b/addons/marketing/i18n/pt.po index f81029ff744..fb0d032c80f 100644 --- a/addons/marketing/i18n/pt.po +++ b/addons/marketing/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/pt_BR.po b/addons/marketing/i18n/pt_BR.po index 8a8911b10e1..9a78207d22d 100644 --- a/addons/marketing/i18n/pt_BR.po +++ b/addons/marketing/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/ro.po b/addons/marketing/i18n/ro.po index d63814caffe..20f2c39fe8a 100644 --- a/addons/marketing/i18n/ro.po +++ b/addons/marketing/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-01 16:48+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/ru.po b/addons/marketing/i18n/ru.po index 829e6bda89a..1a18cd1edbf 100644 --- a/addons/marketing/i18n/ru.po +++ b/addons/marketing/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sk.po b/addons/marketing/i18n/sk.po index 318c2d6e1ab..1f2693a5016 100644 --- a/addons/marketing/i18n/sk.po +++ b/addons/marketing/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sl.po b/addons/marketing/i18n/sl.po index 107c90fe3b0..f1cfc98b8b1 100644 --- a/addons/marketing/i18n/sl.po +++ b/addons/marketing/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sr.po b/addons/marketing/i18n/sr.po index 56deed71b5e..8e50c75aff1 100644 --- a/addons/marketing/i18n/sr.po +++ b/addons/marketing/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sr@latin.po b/addons/marketing/i18n/sr@latin.po index 0feb1ba0a97..1a5904f5f6d 100644 --- a/addons/marketing/i18n/sr@latin.po +++ b/addons/marketing/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sv.po b/addons/marketing/i18n/sv.po index 68c02b20165..6f1fc51af7a 100644 --- a/addons/marketing/i18n/sv.po +++ b/addons/marketing/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/th.po b/addons/marketing/i18n/th.po index d87b2ce30d7..09709c7f137 100644 --- a/addons/marketing/i18n/th.po +++ b/addons/marketing/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/tr.po b/addons/marketing/i18n/tr.po index b931eba3d96..5ca2a46bc97 100644 --- a/addons/marketing/i18n/tr.po +++ b/addons/marketing/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: tr\n" #. module: marketing diff --git a/addons/marketing/i18n/zh_CN.po b/addons/marketing/i18n/zh_CN.po index 45bbfca91ef..c15361fdac7 100644 --- a/addons/marketing/i18n/zh_CN.po +++ b/addons/marketing/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-24 12:41+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-25 05:44+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/zh_TW.po b/addons/marketing/i18n/zh_TW.po index cb2fc05a6b6..c2092fd718a 100644 --- a/addons/marketing/i18n/zh_TW.po +++ b/addons/marketing/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing_campaign/i18n/ar.po b/addons/marketing_campaign/i18n/ar.po index 5a8bb988814..e9cbcfdb588 100644 --- a/addons/marketing_campaign/i18n/ar.po +++ b/addons/marketing_campaign/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/bg.po b/addons/marketing_campaign/i18n/bg.po index 72e1a9c4931..e2952b7ea4a 100644 --- a/addons/marketing_campaign/i18n/bg.po +++ b/addons/marketing_campaign/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/ca.po b/addons/marketing_campaign/i18n/ca.po index d0e5d1402d3..64a091fad35 100644 --- a/addons/marketing_campaign/i18n/ca.po +++ b/addons/marketing_campaign/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/cs.po b/addons/marketing_campaign/i18n/cs.po index 5aff38a1365..a66224d29c8 100644 --- a/addons/marketing_campaign/i18n/cs.po +++ b/addons/marketing_campaign/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/da.po b/addons/marketing_campaign/i18n/da.po index f2b9e1ec6e6..a4f00d99fae 100644 --- a/addons/marketing_campaign/i18n/da.po +++ b/addons/marketing_campaign/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/de.po b/addons/marketing_campaign/i18n/de.po index b2c65280423..fdf16550786 100644 --- a/addons/marketing_campaign/i18n/de.po +++ b/addons/marketing_campaign/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/el.po b/addons/marketing_campaign/i18n/el.po index b74e1b53913..2a8b022c52d 100644 --- a/addons/marketing_campaign/i18n/el.po +++ b/addons/marketing_campaign/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/es.po b/addons/marketing_campaign/i18n/es.po index 48efe626234..be006006bef 100644 --- a/addons/marketing_campaign/i18n/es.po +++ b/addons/marketing_campaign/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/es_CR.po b/addons/marketing_campaign/i18n/es_CR.po index 76b1a0fdb7b..b7a7fa76a33 100644 --- a/addons/marketing_campaign/i18n/es_CR.po +++ b/addons/marketing_campaign/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/fi.po b/addons/marketing_campaign/i18n/fi.po index fd1199aa3b6..7462638af7e 100644 --- a/addons/marketing_campaign/i18n/fi.po +++ b/addons/marketing_campaign/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/fr.po b/addons/marketing_campaign/i18n/fr.po index 8394442750b..0be85f738fe 100644 --- a/addons/marketing_campaign/i18n/fr.po +++ b/addons/marketing_campaign/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-29 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/hi.po b/addons/marketing_campaign/i18n/hi.po index a4d5357b346..77201fc3cb5 100644 --- a/addons/marketing_campaign/i18n/hi.po +++ b/addons/marketing_campaign/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/hr.po b/addons/marketing_campaign/i18n/hr.po index 95b5fafffed..7579833dcb2 100644 --- a/addons/marketing_campaign/i18n/hr.po +++ b/addons/marketing_campaign/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/hu.po b/addons/marketing_campaign/i18n/hu.po index b4653947a0a..8d5f3ac5230 100644 --- a/addons/marketing_campaign/i18n/hu.po +++ b/addons/marketing_campaign/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/it.po b/addons/marketing_campaign/i18n/it.po index cc3574ef43c..6e705561227 100644 --- a/addons/marketing_campaign/i18n/it.po +++ b/addons/marketing_campaign/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/ja.po b/addons/marketing_campaign/i18n/ja.po index 4886e510bd7..a30d56595d5 100644 --- a/addons/marketing_campaign/i18n/ja.po +++ b/addons/marketing_campaign/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/lv.po b/addons/marketing_campaign/i18n/lv.po index 8c952664275..1d1d3e09b3f 100644 --- a/addons/marketing_campaign/i18n/lv.po +++ b/addons/marketing_campaign/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/mk.po b/addons/marketing_campaign/i18n/mk.po index 0d3fea9a4d1..e27433b077c 100644 --- a/addons/marketing_campaign/i18n/mk.po +++ b/addons/marketing_campaign/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/mn.po b/addons/marketing_campaign/i18n/mn.po index c82fe16113d..844f0dd32d8 100644 --- a/addons/marketing_campaign/i18n/mn.po +++ b/addons/marketing_campaign/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:08+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/nl.po b/addons/marketing_campaign/i18n/nl.po index e406018e530..de3f296f00a 100644 --- a/addons/marketing_campaign/i18n/nl.po +++ b/addons/marketing_campaign/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-09-02 09:29+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-03 06:08+0000\n" -"X-Generator: Launchpad (build 16753)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/pl.po b/addons/marketing_campaign/i18n/pl.po index eee9b8a61dc..7f3ab577e7a 100644 --- a/addons/marketing_campaign/i18n/pl.po +++ b/addons/marketing_campaign/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/pt.po b/addons/marketing_campaign/i18n/pt.po index 05a76d8be03..0fe7cb98fb7 100644 --- a/addons/marketing_campaign/i18n/pt.po +++ b/addons/marketing_campaign/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/pt_BR.po b/addons/marketing_campaign/i18n/pt_BR.po index c93fcac3f6f..4dfb8ed3506 100644 --- a/addons/marketing_campaign/i18n/pt_BR.po +++ b/addons/marketing_campaign/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/ro.po b/addons/marketing_campaign/i18n/ro.po index 09c6912fcf5..f85697248d1 100644 --- a/addons/marketing_campaign/i18n/ro.po +++ b/addons/marketing_campaign/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 19:37+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/ru.po b/addons/marketing_campaign/i18n/ru.po index 482deee4295..a4ea3ea912b 100644 --- a/addons/marketing_campaign/i18n/ru.po +++ b/addons/marketing_campaign/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/sl.po b/addons/marketing_campaign/i18n/sl.po index 09294423888..feae7999ca1 100644 --- a/addons/marketing_campaign/i18n/sl.po +++ b/addons/marketing_campaign/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/sr@latin.po b/addons/marketing_campaign/i18n/sr@latin.po index 282c268f011..dc44fc5902c 100644 --- a/addons/marketing_campaign/i18n/sr@latin.po +++ b/addons/marketing_campaign/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/sv.po b/addons/marketing_campaign/i18n/sv.po index 575d05fed67..dc13c6627dc 100644 --- a/addons/marketing_campaign/i18n/sv.po +++ b/addons/marketing_campaign/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/th.po b/addons/marketing_campaign/i18n/th.po index b1eee58d7f7..c3c7cff0872 100644 --- a/addons/marketing_campaign/i18n/th.po +++ b/addons/marketing_campaign/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-02 05:37+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/tr.po b/addons/marketing_campaign/i18n/tr.po index bb18cb6ce8a..72a2ac05059 100644 --- a/addons/marketing_campaign/i18n/tr.po +++ b/addons/marketing_campaign/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/zh_CN.po b/addons/marketing_campaign/i18n/zh_CN.po index 963e5b9da92..2100771ad7c 100644 --- a/addons/marketing_campaign/i18n/zh_CN.po +++ b/addons/marketing_campaign/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign_crm_demo/i18n/ar.po b/addons/marketing_campaign_crm_demo/i18n/ar.po index 33422c7da1e..a8532abc107 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ar.po +++ b/addons/marketing_campaign_crm_demo/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/bg.po b/addons/marketing_campaign_crm_demo/i18n/bg.po index 1983834cae4..155e81e15c3 100644 --- a/addons/marketing_campaign_crm_demo/i18n/bg.po +++ b/addons/marketing_campaign_crm_demo/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/ca.po b/addons/marketing_campaign_crm_demo/i18n/ca.po index 0faae778276..99278bda778 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ca.po +++ b/addons/marketing_campaign_crm_demo/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/da.po b/addons/marketing_campaign_crm_demo/i18n/da.po index 2a2aa135e0a..26a57aae574 100644 --- a/addons/marketing_campaign_crm_demo/i18n/da.po +++ b/addons/marketing_campaign_crm_demo/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/de.po b/addons/marketing_campaign_crm_demo/i18n/de.po index fda3670293d..6e0f947bde5 100644 --- a/addons/marketing_campaign_crm_demo/i18n/de.po +++ b/addons/marketing_campaign_crm_demo/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/es.po b/addons/marketing_campaign_crm_demo/i18n/es.po index 1bcdf33f5bd..b5f47120f13 100644 --- a/addons/marketing_campaign_crm_demo/i18n/es.po +++ b/addons/marketing_campaign_crm_demo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/es_CR.po b/addons/marketing_campaign_crm_demo/i18n/es_CR.po index a44fcfa602f..373465edbab 100644 --- a/addons/marketing_campaign_crm_demo/i18n/es_CR.po +++ b/addons/marketing_campaign_crm_demo/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/fr.po b/addons/marketing_campaign_crm_demo/i18n/fr.po index 40574964eb8..4e36d3a5ca1 100644 --- a/addons/marketing_campaign_crm_demo/i18n/fr.po +++ b/addons/marketing_campaign_crm_demo/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/gl.po b/addons/marketing_campaign_crm_demo/i18n/gl.po index c72eb64f4c6..9692dccc497 100644 --- a/addons/marketing_campaign_crm_demo/i18n/gl.po +++ b/addons/marketing_campaign_crm_demo/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/hr.po b/addons/marketing_campaign_crm_demo/i18n/hr.po index c3ceae7fa51..40198b231d3 100644 --- a/addons/marketing_campaign_crm_demo/i18n/hr.po +++ b/addons/marketing_campaign_crm_demo/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/hu.po b/addons/marketing_campaign_crm_demo/i18n/hu.po index 8ad2ab72216..1bba5966112 100644 --- a/addons/marketing_campaign_crm_demo/i18n/hu.po +++ b/addons/marketing_campaign_crm_demo/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/it.po b/addons/marketing_campaign_crm_demo/i18n/it.po index 07f523b8fa3..8b5db89e5ae 100644 --- a/addons/marketing_campaign_crm_demo/i18n/it.po +++ b/addons/marketing_campaign_crm_demo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/ja.po b/addons/marketing_campaign_crm_demo/i18n/ja.po index 3160852ec01..f803aa34cc9 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ja.po +++ b/addons/marketing_campaign_crm_demo/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/mk.po b/addons/marketing_campaign_crm_demo/i18n/mk.po index 6a1dfd17ef2..532698c71ce 100644 --- a/addons/marketing_campaign_crm_demo/i18n/mk.po +++ b/addons/marketing_campaign_crm_demo/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/nb.po b/addons/marketing_campaign_crm_demo/i18n/nb.po index 3ca41a85039..c2c36aff763 100644 --- a/addons/marketing_campaign_crm_demo/i18n/nb.po +++ b/addons/marketing_campaign_crm_demo/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/nl.po b/addons/marketing_campaign_crm_demo/i18n/nl.po index 447eeb6927f..593037d57d1 100644 --- a/addons/marketing_campaign_crm_demo/i18n/nl.po +++ b/addons/marketing_campaign_crm_demo/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/pt.po b/addons/marketing_campaign_crm_demo/i18n/pt.po index 8243104a216..4d2d7ddfbdf 100644 --- a/addons/marketing_campaign_crm_demo/i18n/pt.po +++ b/addons/marketing_campaign_crm_demo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/pt_BR.po b/addons/marketing_campaign_crm_demo/i18n/pt_BR.po index 1260f302501..af4cbc1bc96 100644 --- a/addons/marketing_campaign_crm_demo/i18n/pt_BR.po +++ b/addons/marketing_campaign_crm_demo/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/ro.po b/addons/marketing_campaign_crm_demo/i18n/ro.po index c02e3b5e229..d0eadaec7e1 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ro.po +++ b/addons/marketing_campaign_crm_demo/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-03 14:52+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/ru.po b/addons/marketing_campaign_crm_demo/i18n/ru.po index 0a975fe5c9c..483f78ede3f 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ru.po +++ b/addons/marketing_campaign_crm_demo/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/sl.po b/addons/marketing_campaign_crm_demo/i18n/sl.po index 7c7366d1295..e5ae1e81e5a 100644 --- a/addons/marketing_campaign_crm_demo/i18n/sl.po +++ b/addons/marketing_campaign_crm_demo/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/sr.po b/addons/marketing_campaign_crm_demo/i18n/sr.po index af5efecc5ff..825e3979c6b 100644 --- a/addons/marketing_campaign_crm_demo/i18n/sr.po +++ b/addons/marketing_campaign_crm_demo/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/sr@latin.po b/addons/marketing_campaign_crm_demo/i18n/sr@latin.po index 8fc84492807..0f6c8a0b01c 100644 --- a/addons/marketing_campaign_crm_demo/i18n/sr@latin.po +++ b/addons/marketing_campaign_crm_demo/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/tr.po b/addons/marketing_campaign_crm_demo/i18n/tr.po index ca0fe869976..83cce4c6c0b 100644 --- a/addons/marketing_campaign_crm_demo/i18n/tr.po +++ b/addons/marketing_campaign_crm_demo/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/zh_CN.po b/addons/marketing_campaign_crm_demo/i18n/zh_CN.po index c030928547c..447542356a4 100644 --- a/addons/marketing_campaign_crm_demo/i18n/zh_CN.po +++ b/addons/marketing_campaign_crm_demo/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 @@ -29,6 +29,11 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hello,

\n" +"

感谢您对注册参加技术培训的兴趣。

\n" +" 如果您需要更多的信息,请重新提交。衷心感谢您的合作。

\n" +"

如果您需要更多的信息,请尽管回复此信息。

\n" +"

安好,OpenERP 团队

" #. module: marketing_campaign_crm_demo #: model:ir.actions.report.xml,name:marketing_campaign_crm_demo.mc_crm_lead_demo_report @@ -50,6 +55,10 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hello,

\n" +"

感谢您对注册参加OpenERP开放日的兴趣。

\n" +"

如果您需要更多的信息,请尽管回复此信息。

\n" +"

安好,OpenERP 团队

" #. module: marketing_campaign_crm_demo #: report:crm.lead.demo:0 @@ -72,6 +81,11 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hello,

\n" +"

我们可以提供非常合适您的产品。\n" +" 针对我们的银牌合作伙伴,我们在2010年6月提供技术培训。

\n" +"

如果您需要更多的信息,请尽管回复此信息。

\n" +"

安好,OpenERP 团队

" #. module: marketing_campaign_crm_demo #: model:email.template,subject:marketing_campaign_crm_demo.email_template_1 @@ -99,6 +113,11 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hello,

\n" +"

我们可以提供非常合适您的产品。\n" +" 我们建议您注册参加 2010五月举行的OpenERP 开放日

\n" +"

如果您需要更多的信息,请尽管回复此信息。

\n" +"

安好,OpenERP 团队

" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_5 @@ -111,6 +130,11 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hello,

\n" +"

我们可以提供非常合适您的产品。\n" +" 针对我们的金牌合作伙伴,我们在2010年6月提供技术培训。

\n" +"

如果您需要更多的信息,请尽管回复此信息。

\n" +"

安好,OpenERP 团队

" #. module: marketing_campaign_crm_demo #: model:email.template,subject:marketing_campaign_crm_demo.email_template_2 @@ -140,6 +164,10 @@ msgid "" " If any further information required kindly revert back.\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hello,

\n" +"

感谢您对购买OpenERP手册的兴趣。

\n" +" 如果您需要更多的信息,请重新提交。\n" +"

安好,OpenERP 团队

" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_7 @@ -151,6 +179,11 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hello,

\n" +"

我们可以提供非常合适您的产品。\n" +" 针对我们的银牌合作伙伴,我们将您升级为金牌合作伙伴。

\n" +"

如果您需要更多的信息,请尽管回复此信息。

\n" +"

安好,OpenERP 团队

" #. module: marketing_campaign_crm_demo #: model:email.template,subject:marketing_campaign_crm_demo.email_template_5 @@ -167,3 +200,7 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hello,

\n" +"

感谢您对OpenERP的浓厚兴趣。\n" +"

如果您需要更多的信息,请尽管回复此信息。

\n" +"

安好,OpenERP 团队

" diff --git a/addons/membership/i18n/ar.po b/addons/membership/i18n/ar.po index 467aa56bf09..5af6f62ca79 100644 --- a/addons/membership/i18n/ar.po +++ b/addons/membership/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/bg.po b/addons/membership/i18n/bg.po index 66f7eda4c52..6de96c06679 100644 --- a/addons/membership/i18n/bg.po +++ b/addons/membership/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/bs.po b/addons/membership/i18n/bs.po index 9c80c8da721..880a450f621 100644 --- a/addons/membership/i18n/bs.po +++ b/addons/membership/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ca.po b/addons/membership/i18n/ca.po index 5e7b7827aef..fbbfc6ff6a2 100644 --- a/addons/membership/i18n/ca.po +++ b/addons/membership/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/cs.po b/addons/membership/i18n/cs.po index deafc701354..7a552941b02 100644 --- a/addons/membership/i18n/cs.po +++ b/addons/membership/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/da.po b/addons/membership/i18n/da.po index 857b8c9c874..807f72af5a4 100644 --- a/addons/membership/i18n/da.po +++ b/addons/membership/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/de.po b/addons/membership/i18n/de.po index 9fb237a6d57..0d1a858ed7f 100644 --- a/addons/membership/i18n/de.po +++ b/addons/membership/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/es.po b/addons/membership/i18n/es.po index 68aec86a393..8cc23b48fae 100644 --- a/addons/membership/i18n/es.po +++ b/addons/membership/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/es_AR.po b/addons/membership/i18n/es_AR.po index b1daaf21cec..e6ddaf3b088 100644 --- a/addons/membership/i18n/es_AR.po +++ b/addons/membership/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/es_CR.po b/addons/membership/i18n/es_CR.po index 503c0d6238f..46098ae8d77 100644 --- a/addons/membership/i18n/es_CR.po +++ b/addons/membership/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/et.po b/addons/membership/i18n/et.po index 34c64fbc9d0..1894d68538b 100644 --- a/addons/membership/i18n/et.po +++ b/addons/membership/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/fi.po b/addons/membership/i18n/fi.po index c432ee450ff..7a23ab8900a 100644 --- a/addons/membership/i18n/fi.po +++ b/addons/membership/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/fr.po b/addons/membership/i18n/fr.po index 76701341329..e56e7ab68c6 100644 --- a/addons/membership/i18n/fr.po +++ b/addons/membership/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/gl.po b/addons/membership/i18n/gl.po index 10600ebe442..8c6bf42a3a4 100644 --- a/addons/membership/i18n/gl.po +++ b/addons/membership/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/hr.po b/addons/membership/i18n/hr.po index e94e863e443..f23f824ae9a 100644 --- a/addons/membership/i18n/hr.po +++ b/addons/membership/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/hu.po b/addons/membership/i18n/hu.po index 9a07228062f..76d407b6299 100644 --- a/addons/membership/i18n/hu.po +++ b/addons/membership/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/id.po b/addons/membership/i18n/id.po index 87227c21ff4..c68f039ce67 100644 --- a/addons/membership/i18n/id.po +++ b/addons/membership/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/it.po b/addons/membership/i18n/it.po index 2a6b9c9c8c7..472751f3e16 100644 --- a/addons/membership/i18n/it.po +++ b/addons/membership/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ja.po b/addons/membership/i18n/ja.po index 29c682e2809..921218bd4d1 100644 --- a/addons/membership/i18n/ja.po +++ b/addons/membership/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ko.po b/addons/membership/i18n/ko.po index 439f8e4dd75..7743bda4cb9 100644 --- a/addons/membership/i18n/ko.po +++ b/addons/membership/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/lt.po b/addons/membership/i18n/lt.po index d11e2014a48..00d611d267e 100644 --- a/addons/membership/i18n/lt.po +++ b/addons/membership/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/mk.po b/addons/membership/i18n/mk.po index ef4366d1b2d..055e094587c 100644 --- a/addons/membership/i18n/mk.po +++ b/addons/membership/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/mn.po b/addons/membership/i18n/mn.po index 09eb2a7dd7f..6e51e135e9a 100644 --- a/addons/membership/i18n/mn.po +++ b/addons/membership/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/nl.po b/addons/membership/i18n/nl.po index 3ac6f61975f..3820b1b6efa 100644 --- a/addons/membership/i18n/nl.po +++ b/addons/membership/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-09 09:01+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/nl_BE.po b/addons/membership/i18n/nl_BE.po index 2745f175bea..56fb981b4fa 100644 --- a/addons/membership/i18n/nl_BE.po +++ b/addons/membership/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/pl.po b/addons/membership/i18n/pl.po index 4c41686f992..536a8c38ec1 100644 --- a/addons/membership/i18n/pl.po +++ b/addons/membership/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/pt.po b/addons/membership/i18n/pt.po index 931c04ac2f1..9cb16c5b9ec 100644 --- a/addons/membership/i18n/pt.po +++ b/addons/membership/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/pt_BR.po b/addons/membership/i18n/pt_BR.po index 153f8c67ed3..76280bf6ffd 100644 --- a/addons/membership/i18n/pt_BR.po +++ b/addons/membership/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ro.po b/addons/membership/i18n/ro.po index a26bdf10fd3..5321bea4500 100644 --- a/addons/membership/i18n/ro.po +++ b/addons/membership/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 19:36+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ru.po b/addons/membership/i18n/ru.po index 80de0a5d5a7..9f068ff2afd 100644 --- a/addons/membership/i18n/ru.po +++ b/addons/membership/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sk.po b/addons/membership/i18n/sk.po index 1a57fc50ac4..b333abb2a93 100644 --- a/addons/membership/i18n/sk.po +++ b/addons/membership/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sl.po b/addons/membership/i18n/sl.po index c62ea2e0dcb..dbfe05f85e7 100644 --- a/addons/membership/i18n/sl.po +++ b/addons/membership/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-07 05:50+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sq.po b/addons/membership/i18n/sq.po index c74b52f0c92..16d75229ea9 100644 --- a/addons/membership/i18n/sq.po +++ b/addons/membership/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:19+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sr@latin.po b/addons/membership/i18n/sr@latin.po index aed60756fe3..f9464e51210 100644 --- a/addons/membership/i18n/sr@latin.po +++ b/addons/membership/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sv.po b/addons/membership/i18n/sv.po index 2e3867466fd..a3eefc673cc 100644 --- a/addons/membership/i18n/sv.po +++ b/addons/membership/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/tlh.po b/addons/membership/i18n/tlh.po index 8440457c3eb..285f7d83478 100644 --- a/addons/membership/i18n/tlh.po +++ b/addons/membership/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/tr.po b/addons/membership/i18n/tr.po index a2d0ea99cd5..340831bf45a 100644 --- a/addons/membership/i18n/tr.po +++ b/addons/membership/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-11 04:59+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/uk.po b/addons/membership/i18n/uk.po index 84f46a6d444..843d1894777 100644 --- a/addons/membership/i18n/uk.po +++ b/addons/membership/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/vi.po b/addons/membership/i18n/vi.po index f0dcbc3b0dd..f85b853688e 100644 --- a/addons/membership/i18n/vi.po +++ b/addons/membership/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/zh_CN.po b/addons/membership/i18n/zh_CN.po index 6a8f0c7cec1..909f869e9ba 100644 --- a/addons/membership/i18n/zh_CN.po +++ b/addons/membership/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 @@ -104,14 +104,14 @@ msgstr "会员资格结束日期" #: field:product.product,membership_date_to:0 #: field:res.partner,membership_stop:0 msgid "Membership End Date" -msgstr "" +msgstr "会员结束日期" #. module: membership #: view:report.membership:0 #: field:report.membership,user_id:0 #: view:res.partner:0 msgid "Salesperson" -msgstr "" +msgstr "销售员" #. module: membership #: model:process.transition,name:membership.process_transition_waitingtoinvoice0 @@ -138,7 +138,7 @@ msgstr "非会员" #. module: membership #: view:product.product:0 msgid "Taxes" -msgstr "" +msgstr "税金" #. module: membership #: view:res.partner:0 @@ -155,7 +155,7 @@ msgstr "" #: code:addons/membership/membership.py:413 #, python-format msgid "Error!" -msgstr "" +msgstr "错误!" #. module: membership #: model:process.transition,name:membership.process_transition_producttomember0 @@ -253,7 +253,7 @@ msgstr "入会日期" #. module: membership #: field:res.partner,membership_cancel:0 msgid "Cancel Membership Date" -msgstr "" +msgstr "取消会员日期" #. module: membership #: model:process.node,name:membership.process_node_paidmember0 @@ -331,7 +331,7 @@ msgstr "会员产品" #. module: membership #: field:res.partner,membership_state:0 msgid "Current Membership Status" -msgstr "" +msgstr "当前会员状态" #. module: membership #: view:product.product:0 @@ -398,7 +398,7 @@ msgstr "业务伙伴为免费会员。" #. module: membership #: view:res.partner:0 msgid "Buy Membership" -msgstr "" +msgstr "购买会员" #. module: membership #: field:report.membership,associate_member_id:0 @@ -437,7 +437,7 @@ msgstr "分类" #. module: membership #: view:res.partner:0 msgid "Contacts" -msgstr "" +msgstr "联系人" #. module: membership #: view:report.membership:0 @@ -467,7 +467,7 @@ msgstr "客户加入会员资格的日期" #. module: membership #: field:membership.membership_line,state:0 msgid "Membership Status" -msgstr "" +msgstr "会员状态" #. module: membership #: view:res.partner:0 @@ -477,7 +477,7 @@ msgstr "客户" #. module: membership #: view:membership.invoice:0 msgid "or" -msgstr "" +msgstr "或者" #. module: membership #: selection:report.membership,month:0 @@ -494,7 +494,7 @@ msgstr "会员产品" #. module: membership #: sql_constraint:product.product:0 msgid "Error ! Ending Date cannot be set before Beginning Date." -msgstr "" +msgstr "错误!失效日期不能早于开始日期" #. module: membership #: selection:report.membership,month:0 @@ -504,7 +504,7 @@ msgstr "6月" #. module: membership #: help:product.product,membership:0 msgid "Check if the product is eligible for membership." -msgstr "" +msgstr "检查产品是否适于成员。" #. module: membership #: selection:membership.membership_line,state:0 @@ -568,6 +568,13 @@ msgid "" "created.\n" " -Paying member: A member who has paid the membership fee." msgstr "" +"该指示显示成员状态:\n" +" -非成员:伙伴未申请任何成员。\n" +" -失效成员:已经取消资格的成员。\n" +" -过期成员:成员身份过期的成员。\n" +" -待批准成员:已经申请成员资格并且将生成发票的成员。\n" +" -待付费成员:已经生成付费申请的成员。\n" +" -付费成员:已经付成员费的成员。" #. module: membership #: selection:report.membership,month:0 @@ -635,6 +642,13 @@ msgid "" " -Paid Member: A member who has paid the membership " "amount." msgstr "" +"该指示显示成员状态:\n" +" -非成员:伙伴未申请任何成员。\n" +" -失效成员:已经取消资格的成员。\n" +" -过期成员:成员身份过期的成员。\n" +" -待批准成员:已经申请成员资格并且将生成发票的成员。\n" +" -待付费成员:已经生成付费申请的成员。\n" +" -付费成员:已经付成员费的成员。" #. module: membership #: model:process.transition,note:membership.process_transition_waitingtoinvoice0 @@ -680,7 +694,7 @@ msgstr "会员价格" #. module: membership #: view:product.product:0 msgid "Membership Duration" -msgstr "" +msgstr "成员期间" #. module: membership #: model:ir.model,name:membership.model_product_product @@ -696,17 +710,17 @@ msgstr "5月" #: field:product.product,membership_date_from:0 #: field:res.partner,membership_start:0 msgid "Membership Start Date" -msgstr "" +msgstr "成员开始日期" #. module: membership #: help:res.partner,free_member:0 msgid "Select if you want to give free membership." -msgstr "" +msgstr "提供免费成员资格" #. module: membership #: field:res.partner,membership_amount:0 msgid "Membership Amount" -msgstr "" +msgstr "成员费用" #. module: membership #: field:report.membership,date_to:0 @@ -786,7 +800,7 @@ msgstr "年" #. module: membership #: view:product.product:0 msgid "Accounting" -msgstr "" +msgstr "记账" #. module: membership #: view:report.membership:0 diff --git a/addons/membership/i18n/zh_TW.po b/addons/membership/i18n/zh_TW.po index b5e95512df0..f9e4be0ac33 100644 --- a/addons/membership/i18n/zh_TW.po +++ b/addons/membership/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/mrp/i18n/ar.po b/addons/mrp/i18n/ar.po index 760037b9f60..89dd7bb4dd0 100644 --- a/addons/mrp/i18n/ar.po +++ b/addons/mrp/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/bg.po b/addons/mrp/i18n/bg.po index 9cd80283b04..3572bf0a4b5 100644 --- a/addons/mrp/i18n/bg.po +++ b/addons/mrp/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/bs.po b/addons/mrp/i18n/bs.po index ca2a53ee97e..5bbb408e84e 100644 --- a/addons/mrp/i18n/bs.po +++ b/addons/mrp/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ca.po b/addons/mrp/i18n/ca.po index ea7f52d3dca..ec0efde5c40 100644 --- a/addons/mrp/i18n/ca.po +++ b/addons/mrp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/cs.po b/addons/mrp/i18n/cs.po index 594b4ce1b42..747e09b7901 100644 --- a/addons/mrp/i18n/cs.po +++ b/addons/mrp/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/da.po b/addons/mrp/i18n/da.po index c9644be472d..f9f47d18c35 100644 --- a/addons/mrp/i18n/da.po +++ b/addons/mrp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-23 05:35+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/de.po b/addons/mrp/i18n/de.po index 91907764ab6..65489bd9184 100644 --- a/addons/mrp/i18n/de.po +++ b/addons/mrp/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/el.po b/addons/mrp/i18n/el.po index 31941df8679..71307476f05 100644 --- a/addons/mrp/i18n/el.po +++ b/addons/mrp/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es.po b/addons/mrp/i18n/es.po index 47c958798e8..2fab078d67a 100644 --- a/addons/mrp/i18n/es.po +++ b/addons/mrp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_AR.po b/addons/mrp/i18n/es_AR.po index 7f8894418e0..b5431e01ef2 100644 --- a/addons/mrp/i18n/es_AR.po +++ b/addons/mrp/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_BO.po b/addons/mrp/i18n/es_BO.po index 75c030abb7f..c876df32fd9 100644 --- a/addons/mrp/i18n/es_BO.po +++ b/addons/mrp/i18n/es_BO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 07:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_CL.po b/addons/mrp/i18n/es_CL.po index 3ae3b25f845..a307dde695b 100644 --- a/addons/mrp/i18n/es_CL.po +++ b/addons/mrp/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_CR.po b/addons/mrp/i18n/es_CR.po index 3dfaaf92410..660dc2df522 100644 --- a/addons/mrp/i18n/es_CR.po +++ b/addons/mrp/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_EC.po b/addons/mrp/i18n/es_EC.po index a17702c0b1e..67ef9cd3c8b 100644 --- a/addons/mrp/i18n/es_EC.po +++ b/addons/mrp/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_MX.po b/addons/mrp/i18n/es_MX.po index 6e9c6ac5f3d..709832ef572 100644 --- a/addons/mrp/i18n/es_MX.po +++ b/addons/mrp/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/et.po b/addons/mrp/i18n/et.po index c9053c35ae9..6a0a6ade4d4 100644 --- a/addons/mrp/i18n/et.po +++ b/addons/mrp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/fi.po b/addons/mrp/i18n/fi.po index 6f4e0639c75..3e87ad1de12 100644 --- a/addons/mrp/i18n/fi.po +++ b/addons/mrp/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/fr.po b/addons/mrp/i18n/fr.po index c97d740ae9e..4fae1ccdf5c 100644 --- a/addons/mrp/i18n/fr.po +++ b/addons/mrp/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/gl.po b/addons/mrp/i18n/gl.po index da42da74a48..7a5e6aacfec 100644 --- a/addons/mrp/i18n/gl.po +++ b/addons/mrp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/hi.po b/addons/mrp/i18n/hi.po index a9a2a83f0e8..0a5623bc016 100644 --- a/addons/mrp/i18n/hi.po +++ b/addons/mrp/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/hr.po b/addons/mrp/i18n/hr.po index b793a95bead..78972a61a0c 100644 --- a/addons/mrp/i18n/hr.po +++ b/addons/mrp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/hu.po b/addons/mrp/i18n/hu.po index 77df89ce971..72e5e31f63c 100644 --- a/addons/mrp/i18n/hu.po +++ b/addons/mrp/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/id.po b/addons/mrp/i18n/id.po index 6eeaeea46d6..dfa19ab8bdd 100644 --- a/addons/mrp/i18n/id.po +++ b/addons/mrp/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/it.po b/addons/mrp/i18n/it.po index ae11dc45ef2..3a9be187180 100644 --- a/addons/mrp/i18n/it.po +++ b/addons/mrp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ja.po b/addons/mrp/i18n/ja.po index 8fe08a2cf4a..64ee3947c93 100644 --- a/addons/mrp/i18n/ja.po +++ b/addons/mrp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-16 05:13+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ko.po b/addons/mrp/i18n/ko.po index 2d43c02c5ce..0e98f236307 100644 --- a/addons/mrp/i18n/ko.po +++ b/addons/mrp/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/lt.po b/addons/mrp/i18n/lt.po index 147f9bf513f..b35f7683548 100644 --- a/addons/mrp/i18n/lt.po +++ b/addons/mrp/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-22 05:40+0000\n" -"X-Generator: Launchpad (build 16734)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/lv.po b/addons/mrp/i18n/lv.po index 169d2faf13b..19bab8faadd 100644 --- a/addons/mrp/i18n/lv.po +++ b/addons/mrp/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/mk.po b/addons/mrp/i18n/mk.po index 2e18b34d6dd..81a843b49bc 100644 --- a/addons/mrp/i18n/mk.po +++ b/addons/mrp/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: mrp diff --git a/addons/mrp/i18n/mn.po b/addons/mrp/i18n/mn.po index 2b45476a386..4a67e285506 100644 --- a/addons/mrp/i18n/mn.po +++ b/addons/mrp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/nb.po b/addons/mrp/i18n/nb.po index 9bdaa8be2cc..543f4882c10 100644 --- a/addons/mrp/i18n/nb.po +++ b/addons/mrp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/nl.po b/addons/mrp/i18n/nl.po index fe970c6e089..c3480f46693 100644 --- a/addons/mrp/i18n/nl.po +++ b/addons/mrp/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:23+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/nl_BE.po b/addons/mrp/i18n/nl_BE.po index 6f66ecd76c3..65b8b779d0f 100644 --- a/addons/mrp/i18n/nl_BE.po +++ b/addons/mrp/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/pl.po b/addons/mrp/i18n/pl.po index cbff3f195ee..24fd98b1a4e 100644 --- a/addons/mrp/i18n/pl.po +++ b/addons/mrp/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: mrp diff --git a/addons/mrp/i18n/pt.po b/addons/mrp/i18n/pt.po index 5cfb72c43b7..087342826b1 100644 --- a/addons/mrp/i18n/pt.po +++ b/addons/mrp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/pt_BR.po b/addons/mrp/i18n/pt_BR.po index 169f00f5f03..1bf3e0ead89 100644 --- a/addons/mrp/i18n/pt_BR.po +++ b/addons/mrp/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ro.po b/addons/mrp/i18n/ro.po index 5da63db1dda..6066cf6cec5 100644 --- a/addons/mrp/i18n/ro.po +++ b/addons/mrp/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ru.po b/addons/mrp/i18n/ru.po index f6132fc9adc..1345d013c6e 100644 --- a/addons/mrp/i18n/ru.po +++ b/addons/mrp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sk.po b/addons/mrp/i18n/sk.po index 8231d7c0671..017296ff660 100644 --- a/addons/mrp/i18n/sk.po +++ b/addons/mrp/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sl.po b/addons/mrp/i18n/sl.po index 648f1cd7a87..fbde5bb59f2 100644 --- a/addons/mrp/i18n/sl.po +++ b/addons/mrp/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sq.po b/addons/mrp/i18n/sq.po index 4a07560b3ff..1b09d926228 100644 --- a/addons/mrp/i18n/sq.po +++ b/addons/mrp/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:09+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:20+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sr@latin.po b/addons/mrp/i18n/sr@latin.po index e2fa645940b..0e3c11b1b99 100644 --- a/addons/mrp/i18n/sr@latin.po +++ b/addons/mrp/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sv.po b/addons/mrp/i18n/sv.po index 6c1b1bfc552..4d53f3b7365 100644 --- a/addons/mrp/i18n/sv.po +++ b/addons/mrp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/tlh.po b/addons/mrp/i18n/tlh.po index 49042b25e15..27c9c01e7d8 100644 --- a/addons/mrp/i18n/tlh.po +++ b/addons/mrp/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/tr.po b/addons/mrp/i18n/tr.po index 80062b6a809..41616874545 100644 --- a/addons/mrp/i18n/tr.po +++ b/addons/mrp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/uk.po b/addons/mrp/i18n/uk.po index 9dc67d359de..247750b1743 100644 --- a/addons/mrp/i18n/uk.po +++ b/addons/mrp/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/vi.po b/addons/mrp/i18n/vi.po index c5a9ad75030..8b6d1505c16 100644 --- a/addons/mrp/i18n/vi.po +++ b/addons/mrp/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/zh_CN.po b/addons/mrp/i18n/zh_CN.po index 7ada2e4bc30..4fd7522d54e 100644 --- a/addons/mrp/i18n/zh_CN.po +++ b/addons/mrp/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-08 06:26+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/zh_HK.po b/addons/mrp/i18n/zh_HK.po index d4c19fc9c32..df1299a7a53 100644 --- a/addons/mrp/i18n/zh_HK.po +++ b/addons/mrp/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/zh_TW.po b/addons/mrp/i18n/zh_TW.po index 42cee3bb145..8d06fe6e886 100644 --- a/addons/mrp/i18n/zh_TW.po +++ b/addons/mrp/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-29 05:45+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp_byproduct/i18n/ab.po b/addons/mrp_byproduct/i18n/ab.po index 96db1ef5cb7..be7fbb9b32e 100644 --- a/addons/mrp_byproduct/i18n/ab.po +++ b/addons/mrp_byproduct/i18n/ab.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ar.po b/addons/mrp_byproduct/i18n/ar.po index cd73d345200..8bfa098b2db 100644 --- a/addons/mrp_byproduct/i18n/ar.po +++ b/addons/mrp_byproduct/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/bg.po b/addons/mrp_byproduct/i18n/bg.po index 7bd0e24784e..5f8bb2d1fd4 100644 --- a/addons/mrp_byproduct/i18n/bg.po +++ b/addons/mrp_byproduct/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/bs.po b/addons/mrp_byproduct/i18n/bs.po index 4c50df196b6..4e4c0abe9e2 100644 --- a/addons/mrp_byproduct/i18n/bs.po +++ b/addons/mrp_byproduct/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ca.po b/addons/mrp_byproduct/i18n/ca.po index 7035d36241f..a5d1adbd0cb 100644 --- a/addons/mrp_byproduct/i18n/ca.po +++ b/addons/mrp_byproduct/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/cs.po b/addons/mrp_byproduct/i18n/cs.po index 3c0bb4db684..17be9b53a6c 100644 --- a/addons/mrp_byproduct/i18n/cs.po +++ b/addons/mrp_byproduct/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/da.po b/addons/mrp_byproduct/i18n/da.po index cba36167578..96125326196 100644 --- a/addons/mrp_byproduct/i18n/da.po +++ b/addons/mrp_byproduct/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/de.po b/addons/mrp_byproduct/i18n/de.po index a4ef458b906..0bd55833b36 100644 --- a/addons/mrp_byproduct/i18n/de.po +++ b/addons/mrp_byproduct/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es.po b/addons/mrp_byproduct/i18n/es.po index c286cd857f0..c6bc4f68634 100644 --- a/addons/mrp_byproduct/i18n/es.po +++ b/addons/mrp_byproduct/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es_AR.po b/addons/mrp_byproduct/i18n/es_AR.po index 7b0aba02c45..b4a70d408c4 100644 --- a/addons/mrp_byproduct/i18n/es_AR.po +++ b/addons/mrp_byproduct/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es_CR.po b/addons/mrp_byproduct/i18n/es_CR.po index bcdc00f5a4b..5700b7f5825 100644 --- a/addons/mrp_byproduct/i18n/es_CR.po +++ b/addons/mrp_byproduct/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es_EC.po b/addons/mrp_byproduct/i18n/es_EC.po index c48f9905cd9..b82ce535240 100644 --- a/addons/mrp_byproduct/i18n/es_EC.po +++ b/addons/mrp_byproduct/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/et.po b/addons/mrp_byproduct/i18n/et.po index 150e0611462..524077544c3 100644 --- a/addons/mrp_byproduct/i18n/et.po +++ b/addons/mrp_byproduct/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/fi.po b/addons/mrp_byproduct/i18n/fi.po index 9a3752f74a3..cf29d2b71bd 100644 --- a/addons/mrp_byproduct/i18n/fi.po +++ b/addons/mrp_byproduct/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/fr.po b/addons/mrp_byproduct/i18n/fr.po index c63a0cb9330..63484c79b2e 100644 --- a/addons/mrp_byproduct/i18n/fr.po +++ b/addons/mrp_byproduct/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/gl.po b/addons/mrp_byproduct/i18n/gl.po index 84a7cdad6e7..01b852718c7 100644 --- a/addons/mrp_byproduct/i18n/gl.po +++ b/addons/mrp_byproduct/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/hr.po b/addons/mrp_byproduct/i18n/hr.po index 0bda73a339e..6e172ae80f7 100644 --- a/addons/mrp_byproduct/i18n/hr.po +++ b/addons/mrp_byproduct/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/hu.po b/addons/mrp_byproduct/i18n/hu.po index 3ff2a64cf45..6936346c0b4 100644 --- a/addons/mrp_byproduct/i18n/hu.po +++ b/addons/mrp_byproduct/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/id.po b/addons/mrp_byproduct/i18n/id.po index 13de56a29a4..a7377014a00 100644 --- a/addons/mrp_byproduct/i18n/id.po +++ b/addons/mrp_byproduct/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/it.po b/addons/mrp_byproduct/i18n/it.po index 1d82e82e469..d8837e46c4a 100644 --- a/addons/mrp_byproduct/i18n/it.po +++ b/addons/mrp_byproduct/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ja.po b/addons/mrp_byproduct/i18n/ja.po index dafba9889e2..aff5a03520b 100644 --- a/addons/mrp_byproduct/i18n/ja.po +++ b/addons/mrp_byproduct/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ko.po b/addons/mrp_byproduct/i18n/ko.po index 81c5b7bad51..2760060bad5 100644 --- a/addons/mrp_byproduct/i18n/ko.po +++ b/addons/mrp_byproduct/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/lt.po b/addons/mrp_byproduct/i18n/lt.po index c775e3dc5b5..4a940ec914a 100644 --- a/addons/mrp_byproduct/i18n/lt.po +++ b/addons/mrp_byproduct/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-27 05:03+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/lv.po b/addons/mrp_byproduct/i18n/lv.po index bfee602cb39..11488213634 100644 --- a/addons/mrp_byproduct/i18n/lv.po +++ b/addons/mrp_byproduct/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/mk.po b/addons/mrp_byproduct/i18n/mk.po index d8016651aab..6b145927dde 100644 --- a/addons/mrp_byproduct/i18n/mk.po +++ b/addons/mrp_byproduct/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/mn.po b/addons/mrp_byproduct/i18n/mn.po index 56e4a68e45a..432e9db2b78 100644 --- a/addons/mrp_byproduct/i18n/mn.po +++ b/addons/mrp_byproduct/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/nb.po b/addons/mrp_byproduct/i18n/nb.po index 1ea1ea57036..dfaafffe966 100644 --- a/addons/mrp_byproduct/i18n/nb.po +++ b/addons/mrp_byproduct/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/nl.po b/addons/mrp_byproduct/i18n/nl.po index 0a1d7cbb9f0..a40aed3bf2f 100644 --- a/addons/mrp_byproduct/i18n/nl.po +++ b/addons/mrp_byproduct/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-27 17:48+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/nl_BE.po b/addons/mrp_byproduct/i18n/nl_BE.po index b2f95f5c5b9..622a321d6a8 100644 --- a/addons/mrp_byproduct/i18n/nl_BE.po +++ b/addons/mrp_byproduct/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/oc.po b/addons/mrp_byproduct/i18n/oc.po index 9e541eb4efe..91d5261b953 100644 --- a/addons/mrp_byproduct/i18n/oc.po +++ b/addons/mrp_byproduct/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/pl.po b/addons/mrp_byproduct/i18n/pl.po index 60e79a49fad..31f1c8c9e92 100644 --- a/addons/mrp_byproduct/i18n/pl.po +++ b/addons/mrp_byproduct/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/pt.po b/addons/mrp_byproduct/i18n/pt.po index d9555d603d9..61983546122 100644 --- a/addons/mrp_byproduct/i18n/pt.po +++ b/addons/mrp_byproduct/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/pt_BR.po b/addons/mrp_byproduct/i18n/pt_BR.po index 843d69e7a7c..5319130d396 100644 --- a/addons/mrp_byproduct/i18n/pt_BR.po +++ b/addons/mrp_byproduct/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ro.po b/addons/mrp_byproduct/i18n/ro.po index 7c06e19dbe0..16351ac2472 100644 --- a/addons/mrp_byproduct/i18n/ro.po +++ b/addons/mrp_byproduct/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-08 18:38+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ru.po b/addons/mrp_byproduct/i18n/ru.po index 3ab9c0534e5..c18d3d7bbd3 100644 --- a/addons/mrp_byproduct/i18n/ru.po +++ b/addons/mrp_byproduct/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sk.po b/addons/mrp_byproduct/i18n/sk.po index 09260e573f8..2ee21eff123 100644 --- a/addons/mrp_byproduct/i18n/sk.po +++ b/addons/mrp_byproduct/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sl.po b/addons/mrp_byproduct/i18n/sl.po index e5814cb2ba9..e263d921754 100644 --- a/addons/mrp_byproduct/i18n/sl.po +++ b/addons/mrp_byproduct/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sq.po b/addons/mrp_byproduct/i18n/sq.po index 1f0aa269aa0..bb0ef4649e3 100644 --- a/addons/mrp_byproduct/i18n/sq.po +++ b/addons/mrp_byproduct/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sr.po b/addons/mrp_byproduct/i18n/sr.po index d2164f26626..451ccebfbdd 100644 --- a/addons/mrp_byproduct/i18n/sr.po +++ b/addons/mrp_byproduct/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sr@latin.po b/addons/mrp_byproduct/i18n/sr@latin.po index 3a2a825e4a5..a25daa74678 100644 --- a/addons/mrp_byproduct/i18n/sr@latin.po +++ b/addons/mrp_byproduct/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sv.po b/addons/mrp_byproduct/i18n/sv.po index 357c3c22e16..4ef8afe3027 100644 --- a/addons/mrp_byproduct/i18n/sv.po +++ b/addons/mrp_byproduct/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/tlh.po b/addons/mrp_byproduct/i18n/tlh.po index 016660d8f70..80e7c58d2fd 100644 --- a/addons/mrp_byproduct/i18n/tlh.po +++ b/addons/mrp_byproduct/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/tr.po b/addons/mrp_byproduct/i18n/tr.po index 6795653f3c8..cd491a9151d 100644 --- a/addons/mrp_byproduct/i18n/tr.po +++ b/addons/mrp_byproduct/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/uk.po b/addons/mrp_byproduct/i18n/uk.po index 1da1433431d..f38ac4b6440 100644 --- a/addons/mrp_byproduct/i18n/uk.po +++ b/addons/mrp_byproduct/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/vi.po b/addons/mrp_byproduct/i18n/vi.po index 59ed5489d2b..a12eabcb252 100644 --- a/addons/mrp_byproduct/i18n/vi.po +++ b/addons/mrp_byproduct/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/zh_CN.po b/addons/mrp_byproduct/i18n/zh_CN.po index 04d0f65d9f8..f948381517d 100644 --- a/addons/mrp_byproduct/i18n/zh_CN.po +++ b/addons/mrp_byproduct/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/zh_TW.po b/addons/mrp_byproduct/i18n/zh_TW.po index ab12a8d01fc..b22ea2f8a05 100644 --- a/addons/mrp_byproduct/i18n/zh_TW.po +++ b/addons/mrp_byproduct/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_jit/i18n/ar.po b/addons/mrp_jit/i18n/ar.po index c2e4b6014ed..a4513c7fa70 100644 --- a/addons/mrp_jit/i18n/ar.po +++ b/addons/mrp_jit/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/bg.po b/addons/mrp_jit/i18n/bg.po index 6166b8b3a79..2845e57b7c4 100644 --- a/addons/mrp_jit/i18n/bg.po +++ b/addons/mrp_jit/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/bs.po b/addons/mrp_jit/i18n/bs.po index 4b2a407abda..a0388fed07b 100644 --- a/addons/mrp_jit/i18n/bs.po +++ b/addons/mrp_jit/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ca.po b/addons/mrp_jit/i18n/ca.po index 2294d392f3c..45c6f2f71a1 100644 --- a/addons/mrp_jit/i18n/ca.po +++ b/addons/mrp_jit/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/cs.po b/addons/mrp_jit/i18n/cs.po index e54945c2f18..6407bb249b9 100644 --- a/addons/mrp_jit/i18n/cs.po +++ b/addons/mrp_jit/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/da.po b/addons/mrp_jit/i18n/da.po index 47af87db812..1cbdf35c2da 100644 --- a/addons/mrp_jit/i18n/da.po +++ b/addons/mrp_jit/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/de.po b/addons/mrp_jit/i18n/de.po index a2b5af1bb81..547b3f0f171 100644 --- a/addons/mrp_jit/i18n/de.po +++ b/addons/mrp_jit/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/el.po b/addons/mrp_jit/i18n/el.po index c450cfe4b3a..17e08265a9c 100644 --- a/addons/mrp_jit/i18n/el.po +++ b/addons/mrp_jit/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/en_GB.po b/addons/mrp_jit/i18n/en_GB.po index 35ed595c96d..3f26fd08593 100644 --- a/addons/mrp_jit/i18n/en_GB.po +++ b/addons/mrp_jit/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es.po b/addons/mrp_jit/i18n/es.po index 2aa409b5a7b..068d58edd34 100644 --- a/addons/mrp_jit/i18n/es.po +++ b/addons/mrp_jit/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es_AR.po b/addons/mrp_jit/i18n/es_AR.po index 9449a9109a7..1aad5cc3029 100644 --- a/addons/mrp_jit/i18n/es_AR.po +++ b/addons/mrp_jit/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es_CR.po b/addons/mrp_jit/i18n/es_CR.po index 21490617351..d5de6ca7f17 100644 --- a/addons/mrp_jit/i18n/es_CR.po +++ b/addons/mrp_jit/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es_EC.po b/addons/mrp_jit/i18n/es_EC.po index 18321c57c6e..d40b1a0e842 100644 --- a/addons/mrp_jit/i18n/es_EC.po +++ b/addons/mrp_jit/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/et.po b/addons/mrp_jit/i18n/et.po index f5e9521e641..db0aeda0e55 100644 --- a/addons/mrp_jit/i18n/et.po +++ b/addons/mrp_jit/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/fi.po b/addons/mrp_jit/i18n/fi.po index aa167615293..22dfe76cb2f 100644 --- a/addons/mrp_jit/i18n/fi.po +++ b/addons/mrp_jit/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/fr.po b/addons/mrp_jit/i18n/fr.po index a3bf0a173e0..1a5ea30119d 100644 --- a/addons/mrp_jit/i18n/fr.po +++ b/addons/mrp_jit/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/gl.po b/addons/mrp_jit/i18n/gl.po index c3ca3cb3360..b5113422e0f 100644 --- a/addons/mrp_jit/i18n/gl.po +++ b/addons/mrp_jit/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/hr.po b/addons/mrp_jit/i18n/hr.po index 56341a72673..31b2d734a5b 100644 --- a/addons/mrp_jit/i18n/hr.po +++ b/addons/mrp_jit/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/hu.po b/addons/mrp_jit/i18n/hu.po index b8d089b06ca..57ef27afb47 100644 --- a/addons/mrp_jit/i18n/hu.po +++ b/addons/mrp_jit/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/id.po b/addons/mrp_jit/i18n/id.po index 755b4ca8010..6419bd10c60 100644 --- a/addons/mrp_jit/i18n/id.po +++ b/addons/mrp_jit/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/it.po b/addons/mrp_jit/i18n/it.po index 072b56e6ecf..d26797c63d4 100644 --- a/addons/mrp_jit/i18n/it.po +++ b/addons/mrp_jit/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ja.po b/addons/mrp_jit/i18n/ja.po index d23f13a1454..f1c6ec278ce 100644 --- a/addons/mrp_jit/i18n/ja.po +++ b/addons/mrp_jit/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/kab.po b/addons/mrp_jit/i18n/kab.po index c29b239548c..7347b496e6d 100644 --- a/addons/mrp_jit/i18n/kab.po +++ b/addons/mrp_jit/i18n/kab.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ko.po b/addons/mrp_jit/i18n/ko.po index fb881766118..6007cce3f5b 100644 --- a/addons/mrp_jit/i18n/ko.po +++ b/addons/mrp_jit/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/lt.po b/addons/mrp_jit/i18n/lt.po index 363c8d2b10a..ab958c7d78c 100644 --- a/addons/mrp_jit/i18n/lt.po +++ b/addons/mrp_jit/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/mk.po b/addons/mrp_jit/i18n/mk.po index 8f3e2ebc992..2dedd8f4d4d 100644 --- a/addons/mrp_jit/i18n/mk.po +++ b/addons/mrp_jit/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ml.po b/addons/mrp_jit/i18n/ml.po index b5177f0abc3..f0dd798610b 100644 --- a/addons/mrp_jit/i18n/ml.po +++ b/addons/mrp_jit/i18n/ml.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/mn.po b/addons/mrp_jit/i18n/mn.po index cd3435535ea..7f5df3134b4 100644 --- a/addons/mrp_jit/i18n/mn.po +++ b/addons/mrp_jit/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/nb.po b/addons/mrp_jit/i18n/nb.po index 66c8147c089..830888196c8 100644 --- a/addons/mrp_jit/i18n/nb.po +++ b/addons/mrp_jit/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/nl.po b/addons/mrp_jit/i18n/nl.po index 3b344721c1c..5962779b911 100644 --- a/addons/mrp_jit/i18n/nl.po +++ b/addons/mrp_jit/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/nl_BE.po b/addons/mrp_jit/i18n/nl_BE.po index 05aab4ae90d..20750ac46cf 100644 --- a/addons/mrp_jit/i18n/nl_BE.po +++ b/addons/mrp_jit/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/oc.po b/addons/mrp_jit/i18n/oc.po index 822acdfae62..05e757bd070 100644 --- a/addons/mrp_jit/i18n/oc.po +++ b/addons/mrp_jit/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/pl.po b/addons/mrp_jit/i18n/pl.po index 5dc9c05a8ef..4845dadfe2e 100644 --- a/addons/mrp_jit/i18n/pl.po +++ b/addons/mrp_jit/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/pt.po b/addons/mrp_jit/i18n/pt.po index c8561f23dae..8bfe7710495 100644 --- a/addons/mrp_jit/i18n/pt.po +++ b/addons/mrp_jit/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/pt_BR.po b/addons/mrp_jit/i18n/pt_BR.po index ba8f2238f51..4fc090ad97e 100644 --- a/addons/mrp_jit/i18n/pt_BR.po +++ b/addons/mrp_jit/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ro.po b/addons/mrp_jit/i18n/ro.po index d55de948001..fc4e099947c 100644 --- a/addons/mrp_jit/i18n/ro.po +++ b/addons/mrp_jit/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ru.po b/addons/mrp_jit/i18n/ru.po index 7aa76da7078..af8d7369bc3 100644 --- a/addons/mrp_jit/i18n/ru.po +++ b/addons/mrp_jit/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sk.po b/addons/mrp_jit/i18n/sk.po index 5fd0351d8eb..c5accae81d3 100644 --- a/addons/mrp_jit/i18n/sk.po +++ b/addons/mrp_jit/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sl.po b/addons/mrp_jit/i18n/sl.po index 5a401c93ca7..9735d863e41 100644 --- a/addons/mrp_jit/i18n/sl.po +++ b/addons/mrp_jit/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sq.po b/addons/mrp_jit/i18n/sq.po index 763c496cdf9..603a837c067 100644 --- a/addons/mrp_jit/i18n/sq.po +++ b/addons/mrp_jit/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sr.po b/addons/mrp_jit/i18n/sr.po index 70a43c8d55f..a707dc0c88d 100644 --- a/addons/mrp_jit/i18n/sr.po +++ b/addons/mrp_jit/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sr@latin.po b/addons/mrp_jit/i18n/sr@latin.po index 556b3a45810..c7db03934d4 100644 --- a/addons/mrp_jit/i18n/sr@latin.po +++ b/addons/mrp_jit/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sv.po b/addons/mrp_jit/i18n/sv.po index 8162e806bf2..8729991e610 100644 --- a/addons/mrp_jit/i18n/sv.po +++ b/addons/mrp_jit/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ta.po b/addons/mrp_jit/i18n/ta.po index d2342ad7062..f25ee90afcb 100644 --- a/addons/mrp_jit/i18n/ta.po +++ b/addons/mrp_jit/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/tr.po b/addons/mrp_jit/i18n/tr.po index b03750aa585..546b4202052 100644 --- a/addons/mrp_jit/i18n/tr.po +++ b/addons/mrp_jit/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/uk.po b/addons/mrp_jit/i18n/uk.po index 1bd020bf6e4..69fb3da62f9 100644 --- a/addons/mrp_jit/i18n/uk.po +++ b/addons/mrp_jit/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/vi.po b/addons/mrp_jit/i18n/vi.po index e500c7ee0d3..35ce9f4c89d 100644 --- a/addons/mrp_jit/i18n/vi.po +++ b/addons/mrp_jit/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/zh_CN.po b/addons/mrp_jit/i18n/zh_CN.po index 0384793aaee..d6e2e75bbef 100644 --- a/addons/mrp_jit/i18n/zh_CN.po +++ b/addons/mrp_jit/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/zh_TW.po b/addons/mrp_jit/i18n/zh_TW.po index 673ca9faae2..4ac1b27eac4 100644 --- a/addons/mrp_jit/i18n/zh_TW.po +++ b/addons/mrp_jit/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_operations/i18n/ar.po b/addons/mrp_operations/i18n/ar.po index 8567b6c0125..4788cfe949f 100644 --- a/addons/mrp_operations/i18n/ar.po +++ b/addons/mrp_operations/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/bg.po b/addons/mrp_operations/i18n/bg.po index 9324c3d13e1..a7eb8335ed6 100644 --- a/addons/mrp_operations/i18n/bg.po +++ b/addons/mrp_operations/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/bs.po b/addons/mrp_operations/i18n/bs.po index d681c5fcb66..ab778c0105a 100644 --- a/addons/mrp_operations/i18n/bs.po +++ b/addons/mrp_operations/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ca.po b/addons/mrp_operations/i18n/ca.po index f75c8f24eb4..fabde8ca0b7 100644 --- a/addons/mrp_operations/i18n/ca.po +++ b/addons/mrp_operations/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/cs.po b/addons/mrp_operations/i18n/cs.po index cde3ad14083..094a6ca0e48 100644 --- a/addons/mrp_operations/i18n/cs.po +++ b/addons/mrp_operations/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/da.po b/addons/mrp_operations/i18n/da.po index 567edb719e0..0ee10c8994d 100644 --- a/addons/mrp_operations/i18n/da.po +++ b/addons/mrp_operations/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/de.po b/addons/mrp_operations/i18n/de.po index bc6f5d9fb6b..b32e2efd29a 100644 --- a/addons/mrp_operations/i18n/de.po +++ b/addons/mrp_operations/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/es.po b/addons/mrp_operations/i18n/es.po index 94fa5f3f59e..3aa9c4b96b3 100644 --- a/addons/mrp_operations/i18n/es.po +++ b/addons/mrp_operations/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/es_AR.po b/addons/mrp_operations/i18n/es_AR.po index 93eb5990ac9..dc09bf635b7 100644 --- a/addons/mrp_operations/i18n/es_AR.po +++ b/addons/mrp_operations/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/es_CR.po b/addons/mrp_operations/i18n/es_CR.po index 00750fb9040..ffae89c8925 100644 --- a/addons/mrp_operations/i18n/es_CR.po +++ b/addons/mrp_operations/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/es_EC.po b/addons/mrp_operations/i18n/es_EC.po index e4acaa3f15e..92a93080c69 100644 --- a/addons/mrp_operations/i18n/es_EC.po +++ b/addons/mrp_operations/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/et.po b/addons/mrp_operations/i18n/et.po index af94000560c..e70d19861b2 100644 --- a/addons/mrp_operations/i18n/et.po +++ b/addons/mrp_operations/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/fi.po b/addons/mrp_operations/i18n/fi.po index e4660712c1a..34e372d6cd8 100644 --- a/addons/mrp_operations/i18n/fi.po +++ b/addons/mrp_operations/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/fr.po b/addons/mrp_operations/i18n/fr.po index e4eb07e7b63..da3acb401e5 100644 --- a/addons/mrp_operations/i18n/fr.po +++ b/addons/mrp_operations/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/hi.po b/addons/mrp_operations/i18n/hi.po index 2eca402b13a..aeff870dc6f 100644 --- a/addons/mrp_operations/i18n/hi.po +++ b/addons/mrp_operations/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/hr.po b/addons/mrp_operations/i18n/hr.po index 378ce73a967..f7dd9fe9f05 100644 --- a/addons/mrp_operations/i18n/hr.po +++ b/addons/mrp_operations/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/hu.po b/addons/mrp_operations/i18n/hu.po index e123fa11656..96ab0969d5e 100644 --- a/addons/mrp_operations/i18n/hu.po +++ b/addons/mrp_operations/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/id.po b/addons/mrp_operations/i18n/id.po index 3474f91c874..e46486b016a 100644 --- a/addons/mrp_operations/i18n/id.po +++ b/addons/mrp_operations/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/it.po b/addons/mrp_operations/i18n/it.po index e1f30b96f5f..ab09a0cfdf5 100644 --- a/addons/mrp_operations/i18n/it.po +++ b/addons/mrp_operations/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ja.po b/addons/mrp_operations/i18n/ja.po index a4d11576097..5352727fe31 100644 --- a/addons/mrp_operations/i18n/ja.po +++ b/addons/mrp_operations/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ko.po b/addons/mrp_operations/i18n/ko.po index e740a80c044..19c2c40a5a8 100644 --- a/addons/mrp_operations/i18n/ko.po +++ b/addons/mrp_operations/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/lt.po b/addons/mrp_operations/i18n/lt.po index 6574458b546..e2a8e64be6c 100644 --- a/addons/mrp_operations/i18n/lt.po +++ b/addons/mrp_operations/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/lv.po b/addons/mrp_operations/i18n/lv.po index 9b70205cc1c..db700f09acd 100644 --- a/addons/mrp_operations/i18n/lv.po +++ b/addons/mrp_operations/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/mk.po b/addons/mrp_operations/i18n/mk.po index a138b1012e9..475808b0d15 100644 --- a/addons/mrp_operations/i18n/mk.po +++ b/addons/mrp_operations/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/mn.po b/addons/mrp_operations/i18n/mn.po index 06fa737f17e..9bfe35d9445 100644 --- a/addons/mrp_operations/i18n/mn.po +++ b/addons/mrp_operations/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/nl.po b/addons/mrp_operations/i18n/nl.po index bc7e0fbc46e..a4f0cfdefe3 100644 --- a/addons/mrp_operations/i18n/nl.po +++ b/addons/mrp_operations/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-13 10:42+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/nl_BE.po b/addons/mrp_operations/i18n/nl_BE.po index 781c91559f7..94cd381e7f7 100644 --- a/addons/mrp_operations/i18n/nl_BE.po +++ b/addons/mrp_operations/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/pl.po b/addons/mrp_operations/i18n/pl.po index 3d83865f227..11bd2e425a4 100644 --- a/addons/mrp_operations/i18n/pl.po +++ b/addons/mrp_operations/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/pt.po b/addons/mrp_operations/i18n/pt.po index 61a872156dd..e91ec15231c 100644 --- a/addons/mrp_operations/i18n/pt.po +++ b/addons/mrp_operations/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/pt_BR.po b/addons/mrp_operations/i18n/pt_BR.po index 1ef38c9ab84..050463dfdea 100644 --- a/addons/mrp_operations/i18n/pt_BR.po +++ b/addons/mrp_operations/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ro.po b/addons/mrp_operations/i18n/ro.po index 9aabad9e9e3..257a983506c 100644 --- a/addons/mrp_operations/i18n/ro.po +++ b/addons/mrp_operations/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-08 18:33+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ru.po b/addons/mrp_operations/i18n/ru.po index b4bc687501c..195a9470296 100644 --- a/addons/mrp_operations/i18n/ru.po +++ b/addons/mrp_operations/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-23 05:52+0000\n" -"X-Generator: Launchpad (build 16737)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sl.po b/addons/mrp_operations/i18n/sl.po index 6ee7769b673..d8da8fe822b 100644 --- a/addons/mrp_operations/i18n/sl.po +++ b/addons/mrp_operations/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sq.po b/addons/mrp_operations/i18n/sq.po index 3caa54f839e..85a6e8b4054 100644 --- a/addons/mrp_operations/i18n/sq.po +++ b/addons/mrp_operations/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:10+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sr.po b/addons/mrp_operations/i18n/sr.po index 35b4567a713..d28425880c9 100644 --- a/addons/mrp_operations/i18n/sr.po +++ b/addons/mrp_operations/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sr@latin.po b/addons/mrp_operations/i18n/sr@latin.po index e1d0c73ef2c..77f312e6f16 100644 --- a/addons/mrp_operations/i18n/sr@latin.po +++ b/addons/mrp_operations/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sv.po b/addons/mrp_operations/i18n/sv.po index cc9c2325ed3..7ca3d5c758d 100644 --- a/addons/mrp_operations/i18n/sv.po +++ b/addons/mrp_operations/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/tlh.po b/addons/mrp_operations/i18n/tlh.po index f9d17a43929..41f663cdd87 100644 --- a/addons/mrp_operations/i18n/tlh.po +++ b/addons/mrp_operations/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/tr.po b/addons/mrp_operations/i18n/tr.po index 5d05503fbe0..d0358d7be02 100644 --- a/addons/mrp_operations/i18n/tr.po +++ b/addons/mrp_operations/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/uk.po b/addons/mrp_operations/i18n/uk.po index 745238c8cfa..e0760c807f7 100644 --- a/addons/mrp_operations/i18n/uk.po +++ b/addons/mrp_operations/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/vi.po b/addons/mrp_operations/i18n/vi.po index c18318747d1..65927588baa 100644 --- a/addons/mrp_operations/i18n/vi.po +++ b/addons/mrp_operations/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/zh_CN.po b/addons/mrp_operations/i18n/zh_CN.po index 1978c98a82f..05ceeca632d 100644 --- a/addons/mrp_operations/i18n/zh_CN.po +++ b/addons/mrp_operations/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-20 05:05+0000\n" -"X-Generator: Launchpad (build 16807)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/zh_TW.po b/addons/mrp_operations/i18n/zh_TW.po index 6972a2a2046..6a32df233b7 100644 --- a/addons/mrp_operations/i18n/zh_TW.po +++ b/addons/mrp_operations/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_repair/i18n/ar.po b/addons/mrp_repair/i18n/ar.po index c7194155f96..6bad6b428c6 100644 --- a/addons/mrp_repair/i18n/ar.po +++ b/addons/mrp_repair/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/bg.po b/addons/mrp_repair/i18n/bg.po index dfd7d607511..b59831e1bfd 100644 --- a/addons/mrp_repair/i18n/bg.po +++ b/addons/mrp_repair/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/bs.po b/addons/mrp_repair/i18n/bs.po index 018068bbce2..e081178b508 100644 --- a/addons/mrp_repair/i18n/bs.po +++ b/addons/mrp_repair/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ca.po b/addons/mrp_repair/i18n/ca.po index 56a73e4fb93..6e215935554 100644 --- a/addons/mrp_repair/i18n/ca.po +++ b/addons/mrp_repair/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/cs.po b/addons/mrp_repair/i18n/cs.po index 865126aa63b..e5d3a7f3d66 100644 --- a/addons/mrp_repair/i18n/cs.po +++ b/addons/mrp_repair/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/da.po b/addons/mrp_repair/i18n/da.po index 6b5a34936c4..750d3dc21c0 100644 --- a/addons/mrp_repair/i18n/da.po +++ b/addons/mrp_repair/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/de.po b/addons/mrp_repair/i18n/de.po index a1a10facf2c..fa4e95c0089 100644 --- a/addons/mrp_repair/i18n/de.po +++ b/addons/mrp_repair/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/es.po b/addons/mrp_repair/i18n/es.po index 6070cbab66e..3b1d4135a63 100644 --- a/addons/mrp_repair/i18n/es.po +++ b/addons/mrp_repair/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/es_AR.po b/addons/mrp_repair/i18n/es_AR.po index e74987e10b3..af8ed1fb750 100644 --- a/addons/mrp_repair/i18n/es_AR.po +++ b/addons/mrp_repair/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/es_CR.po b/addons/mrp_repair/i18n/es_CR.po index 5963ee13373..3285a3f702a 100644 --- a/addons/mrp_repair/i18n/es_CR.po +++ b/addons/mrp_repair/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/es_EC.po b/addons/mrp_repair/i18n/es_EC.po index 81af6628b56..f841f0d45e6 100644 --- a/addons/mrp_repair/i18n/es_EC.po +++ b/addons/mrp_repair/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/et.po b/addons/mrp_repair/i18n/et.po index e948f9f4b33..ee4017309b3 100644 --- a/addons/mrp_repair/i18n/et.po +++ b/addons/mrp_repair/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/fi.po b/addons/mrp_repair/i18n/fi.po index cbc3e3d5a34..f8874224889 100644 --- a/addons/mrp_repair/i18n/fi.po +++ b/addons/mrp_repair/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/fr.po b/addons/mrp_repair/i18n/fr.po index b590067292d..09cc624f7ed 100644 --- a/addons/mrp_repair/i18n/fr.po +++ b/addons/mrp_repair/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/hi.po b/addons/mrp_repair/i18n/hi.po index 80db54166ec..e13d2ee1a91 100644 --- a/addons/mrp_repair/i18n/hi.po +++ b/addons/mrp_repair/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/hr.po b/addons/mrp_repair/i18n/hr.po index cb429f1592a..c0e47b06d09 100644 --- a/addons/mrp_repair/i18n/hr.po +++ b/addons/mrp_repair/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/hu.po b/addons/mrp_repair/i18n/hu.po index eec56f0447a..4d13dc6f8fa 100644 --- a/addons/mrp_repair/i18n/hu.po +++ b/addons/mrp_repair/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/id.po b/addons/mrp_repair/i18n/id.po index e1b2e6f77df..97f6b6fc5b2 100644 --- a/addons/mrp_repair/i18n/id.po +++ b/addons/mrp_repair/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/it.po b/addons/mrp_repair/i18n/it.po index 237db3da880..4eb3c83b0bb 100644 --- a/addons/mrp_repair/i18n/it.po +++ b/addons/mrp_repair/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ja.po b/addons/mrp_repair/i18n/ja.po index 3f20865b3e9..c5c29dd7bf6 100644 --- a/addons/mrp_repair/i18n/ja.po +++ b/addons/mrp_repair/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ko.po b/addons/mrp_repair/i18n/ko.po index e13779c2605..dc63f9f77f5 100644 --- a/addons/mrp_repair/i18n/ko.po +++ b/addons/mrp_repair/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/lt.po b/addons/mrp_repair/i18n/lt.po index 29d9ed608b0..c2ad197bedd 100644 --- a/addons/mrp_repair/i18n/lt.po +++ b/addons/mrp_repair/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/lv.po b/addons/mrp_repair/i18n/lv.po index 4ed64405a5c..819fda81b41 100644 --- a/addons/mrp_repair/i18n/lv.po +++ b/addons/mrp_repair/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/mk.po b/addons/mrp_repair/i18n/mk.po index cd8ec400de2..f2d609ef637 100644 --- a/addons/mrp_repair/i18n/mk.po +++ b/addons/mrp_repair/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/mn.po b/addons/mrp_repair/i18n/mn.po index 3c10ac57bcc..25766d0a6a0 100644 --- a/addons/mrp_repair/i18n/mn.po +++ b/addons/mrp_repair/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/nl.po b/addons/mrp_repair/i18n/nl.po index 1682c016c7d..8ca93c80b8b 100644 --- a/addons/mrp_repair/i18n/nl.po +++ b/addons/mrp_repair/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-26 12:55+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/nl_BE.po b/addons/mrp_repair/i18n/nl_BE.po index a5fd9a8ff3a..78b595d7dee 100644 --- a/addons/mrp_repair/i18n/nl_BE.po +++ b/addons/mrp_repair/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/pl.po b/addons/mrp_repair/i18n/pl.po index d205ffac57d..62d7d577409 100644 --- a/addons/mrp_repair/i18n/pl.po +++ b/addons/mrp_repair/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/pt.po b/addons/mrp_repair/i18n/pt.po index cdb8b1387fc..251164bdb8b 100644 --- a/addons/mrp_repair/i18n/pt.po +++ b/addons/mrp_repair/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/pt_BR.po b/addons/mrp_repair/i18n/pt_BR.po index 8fb7834ff23..8c117907866 100644 --- a/addons/mrp_repair/i18n/pt_BR.po +++ b/addons/mrp_repair/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ro.po b/addons/mrp_repair/i18n/ro.po index 8d4fcfd3118..fa549722446 100644 --- a/addons/mrp_repair/i18n/ro.po +++ b/addons/mrp_repair/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 19:34+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ru.po b/addons/mrp_repair/i18n/ru.po index e8099f27b3b..71ef7e9e76b 100644 --- a/addons/mrp_repair/i18n/ru.po +++ b/addons/mrp_repair/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sl.po b/addons/mrp_repair/i18n/sl.po index f640da0b2f1..558ffac3490 100644 --- a/addons/mrp_repair/i18n/sl.po +++ b/addons/mrp_repair/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sq.po b/addons/mrp_repair/i18n/sq.po index acc9482a02f..bd70143f413 100644 --- a/addons/mrp_repair/i18n/sq.po +++ b/addons/mrp_repair/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sr.po b/addons/mrp_repair/i18n/sr.po index 1c43248c7a3..4a5188bc71d 100644 --- a/addons/mrp_repair/i18n/sr.po +++ b/addons/mrp_repair/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sr@latin.po b/addons/mrp_repair/i18n/sr@latin.po index 2cca4a23cd7..778a5a945e5 100644 --- a/addons/mrp_repair/i18n/sr@latin.po +++ b/addons/mrp_repair/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sv.po b/addons/mrp_repair/i18n/sv.po index 5f20fdc08cd..3d13383eda8 100644 --- a/addons/mrp_repair/i18n/sv.po +++ b/addons/mrp_repair/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/tlh.po b/addons/mrp_repair/i18n/tlh.po index f55279e6315..d6718a246e2 100644 --- a/addons/mrp_repair/i18n/tlh.po +++ b/addons/mrp_repair/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/tr.po b/addons/mrp_repair/i18n/tr.po index 5d293c01605..8a8e8f8ba7e 100644 --- a/addons/mrp_repair/i18n/tr.po +++ b/addons/mrp_repair/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/uk.po b/addons/mrp_repair/i18n/uk.po index 4f581858cef..7c34a008cbd 100644 --- a/addons/mrp_repair/i18n/uk.po +++ b/addons/mrp_repair/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/vi.po b/addons/mrp_repair/i18n/vi.po index dbfb973a2eb..fa0d9e149f8 100644 --- a/addons/mrp_repair/i18n/vi.po +++ b/addons/mrp_repair/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/zh_CN.po b/addons/mrp_repair/i18n/zh_CN.po index b33036d8a73..ad8178c4182 100644 --- a/addons/mrp_repair/i18n/zh_CN.po +++ b/addons/mrp_repair/i18n/zh_CN.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/zh_TW.po b/addons/mrp_repair/i18n/zh_TW.po index 58c60aaa166..344298c2a50 100644 --- a/addons/mrp_repair/i18n/zh_TW.po +++ b/addons/mrp_repair/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/multi_company/i18n/ar.po b/addons/multi_company/i18n/ar.po index cbb6c77a282..83649afe00b 100644 --- a/addons/multi_company/i18n/ar.po +++ b/addons/multi_company/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/bg.po b/addons/multi_company/i18n/bg.po index bf58cd9af42..b0d15e4798b 100644 --- a/addons/multi_company/i18n/bg.po +++ b/addons/multi_company/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/bs.po b/addons/multi_company/i18n/bs.po index b99c0d4293a..0a4f5dd0785 100644 --- a/addons/multi_company/i18n/bs.po +++ b/addons/multi_company/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/ca.po b/addons/multi_company/i18n/ca.po index 1649edaf94e..20f136157f3 100644 --- a/addons/multi_company/i18n/ca.po +++ b/addons/multi_company/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/cs.po b/addons/multi_company/i18n/cs.po index 6874ad604ce..7436f6b2862 100644 --- a/addons/multi_company/i18n/cs.po +++ b/addons/multi_company/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/da.po b/addons/multi_company/i18n/da.po index 2602677fcf0..a32e02e810f 100644 --- a/addons/multi_company/i18n/da.po +++ b/addons/multi_company/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/de.po b/addons/multi_company/i18n/de.po index 5a7bfbcec11..8084851dba3 100644 --- a/addons/multi_company/i18n/de.po +++ b/addons/multi_company/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/es.po b/addons/multi_company/i18n/es.po index 783e64f9975..fe1b3ca586f 100644 --- a/addons/multi_company/i18n/es.po +++ b/addons/multi_company/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/es_CR.po b/addons/multi_company/i18n/es_CR.po index 17a19fa7be5..948a4f4f3d9 100644 --- a/addons/multi_company/i18n/es_CR.po +++ b/addons/multi_company/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/es_EC.po b/addons/multi_company/i18n/es_EC.po index 301644d6269..ddba07ca901 100644 --- a/addons/multi_company/i18n/es_EC.po +++ b/addons/multi_company/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/et.po b/addons/multi_company/i18n/et.po index 9af0357d77b..3ef087f5c77 100644 --- a/addons/multi_company/i18n/et.po +++ b/addons/multi_company/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/fi.po b/addons/multi_company/i18n/fi.po index 1cf1d228c02..494270c9dae 100644 --- a/addons/multi_company/i18n/fi.po +++ b/addons/multi_company/i18n/fi.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-11-18 05:52+0000\n" +"PO-Revision-Date: 2013-11-20 20:22+0000\n" "Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: multi_company @@ -45,6 +45,19 @@ msgid "" "Thank you in advance for your cooperation.\n" "Best Regards," msgstr "" +"Hyvä vastaanottaja,\n" +"\n" +"Kirjanpitomme mukaan teillä on myöhässä olevia maksuja. Löydätte " +"yksityiskohdat jäljempää.\n" +"Mikäli olette jo suorittanut, voitte unohtaa tämän maksuhuomautuksen. Muussa " +"tapauksessa\n" +"pyydämme maksamaan heti koko jäljempänä kuvatun velkanne. \n" +"\n" +"Mikäli teillä on kysyttävää, olkaa hyvä ja ottaakaa meihin yhteyttä.\n" +"\n" +"Kiitokset etukäteen yhteistyöstänne.\n" +"\n" +"Yhteistyöterveisin," #. module: multi_company #: view:multi_company.default:0 diff --git a/addons/multi_company/i18n/fr.po b/addons/multi_company/i18n/fr.po index 64b3d9ca13a..ae43d2322a2 100644 --- a/addons/multi_company/i18n/fr.po +++ b/addons/multi_company/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/gl.po b/addons/multi_company/i18n/gl.po index 1ea742c93c5..ae228943e28 100644 --- a/addons/multi_company/i18n/gl.po +++ b/addons/multi_company/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/hr.po b/addons/multi_company/i18n/hr.po index 81d932311af..8e4699cd6c0 100644 --- a/addons/multi_company/i18n/hr.po +++ b/addons/multi_company/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/hu.po b/addons/multi_company/i18n/hu.po index c2b04db5f69..1107f16a902 100644 --- a/addons/multi_company/i18n/hu.po +++ b/addons/multi_company/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/id.po b/addons/multi_company/i18n/id.po index e394a1c9b2d..69e5c117b05 100644 --- a/addons/multi_company/i18n/id.po +++ b/addons/multi_company/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/it.po b/addons/multi_company/i18n/it.po index 606ce0c9002..4404e3d4cf8 100644 --- a/addons/multi_company/i18n/it.po +++ b/addons/multi_company/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/ja.po b/addons/multi_company/i18n/ja.po index adedffeb88d..34320990922 100644 --- a/addons/multi_company/i18n/ja.po +++ b/addons/multi_company/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/lo.po b/addons/multi_company/i18n/lo.po index 17fe8e3c72a..1acd92ca2d0 100644 --- a/addons/multi_company/i18n/lo.po +++ b/addons/multi_company/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/lt.po b/addons/multi_company/i18n/lt.po index 2960b49b996..3356c36643a 100644 --- a/addons/multi_company/i18n/lt.po +++ b/addons/multi_company/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/lv.po b/addons/multi_company/i18n/lv.po index 3123b0a297a..e50a5cee291 100644 --- a/addons/multi_company/i18n/lv.po +++ b/addons/multi_company/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/mk.po b/addons/multi_company/i18n/mk.po index 66bc2942a84..e9a61cf78b4 100644 --- a/addons/multi_company/i18n/mk.po +++ b/addons/multi_company/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/mn.po b/addons/multi_company/i18n/mn.po index f9a0f33adaf..8cd3dbd86ed 100644 --- a/addons/multi_company/i18n/mn.po +++ b/addons/multi_company/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/nb.po b/addons/multi_company/i18n/nb.po index b146b495bad..8dd64ae6028 100644 --- a/addons/multi_company/i18n/nb.po +++ b/addons/multi_company/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/nl.po b/addons/multi_company/i18n/nl.po index 4de4d1da420..eabac262cc3 100644 --- a/addons/multi_company/i18n/nl.po +++ b/addons/multi_company/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-04 19:44+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/oc.po b/addons/multi_company/i18n/oc.po index 2f41588c9a2..06005e622cb 100644 --- a/addons/multi_company/i18n/oc.po +++ b/addons/multi_company/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/pl.po b/addons/multi_company/i18n/pl.po index f4ef6bfef04..2807c4de9b4 100644 --- a/addons/multi_company/i18n/pl.po +++ b/addons/multi_company/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/pt.po b/addons/multi_company/i18n/pt.po index bad8c42dadb..4b57b20462c 100644 --- a/addons/multi_company/i18n/pt.po +++ b/addons/multi_company/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/pt_BR.po b/addons/multi_company/i18n/pt_BR.po index 89f88c58da8..63c3f8f68ca 100644 --- a/addons/multi_company/i18n/pt_BR.po +++ b/addons/multi_company/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/ro.po b/addons/multi_company/i18n/ro.po index 27ec75436d5..25cf11f281d 100644 --- a/addons/multi_company/i18n/ro.po +++ b/addons/multi_company/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-09 14:07+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/ru.po b/addons/multi_company/i18n/ru.po index f917f98efa1..566bc04d153 100644 --- a/addons/multi_company/i18n/ru.po +++ b/addons/multi_company/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/sl.po b/addons/multi_company/i18n/sl.po index fb8df089227..7c6e209b931 100644 --- a/addons/multi_company/i18n/sl.po +++ b/addons/multi_company/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/sr.po b/addons/multi_company/i18n/sr.po index e95e97fb8cf..3ab71e19001 100644 --- a/addons/multi_company/i18n/sr.po +++ b/addons/multi_company/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/sr@latin.po b/addons/multi_company/i18n/sr@latin.po index 86f1d8a7e83..3123c007103 100644 --- a/addons/multi_company/i18n/sr@latin.po +++ b/addons/multi_company/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/sv.po b/addons/multi_company/i18n/sv.po index b50ef75d22a..78e10bc62ba 100644 --- a/addons/multi_company/i18n/sv.po +++ b/addons/multi_company/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/tr.po b/addons/multi_company/i18n/tr.po index cf78c26f2b8..bd7e6428e34 100644 --- a/addons/multi_company/i18n/tr.po +++ b/addons/multi_company/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/uk.po b/addons/multi_company/i18n/uk.po index ef0d8a97593..0213d42a9e5 100644 --- a/addons/multi_company/i18n/uk.po +++ b/addons/multi_company/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/vi.po b/addons/multi_company/i18n/vi.po index ed5f84db7e2..758af5c3823 100644 --- a/addons/multi_company/i18n/vi.po +++ b/addons/multi_company/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/zh_CN.po b/addons/multi_company/i18n/zh_CN.po index ba8ed7b7242..42e22b142dd 100644 --- a/addons/multi_company/i18n/zh_CN.po +++ b/addons/multi_company/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/zh_TW.po b/addons/multi_company/i18n/zh_TW.po index 6f0f4c74cd7..aa6d4a2206f 100644 --- a/addons/multi_company/i18n/zh_TW.po +++ b/addons/multi_company/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/note/i18n/bs.po b/addons/note/i18n/bs.po index 8f119144c7f..17c9c8e0be8 100644 --- a/addons/note/i18n/bs.po +++ b/addons/note/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-07 05:03+0000\n" -"X-Generator: Launchpad (build 16721)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/cs.po b/addons/note/i18n/cs.po index 45f17f69619..31448659376 100644 --- a/addons/note/i18n/cs.po +++ b/addons/note/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/de.po b/addons/note/i18n/de.po index f9fda7c8129..845c6bf5f8f 100644 --- a/addons/note/i18n/de.po +++ b/addons/note/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/es.po b/addons/note/i18n/es.po index 6672934e0ae..9548a7ea791 100644 --- a/addons/note/i18n/es.po +++ b/addons/note/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/fr.po b/addons/note/i18n/fr.po index 5fedf7e63dc..13bb9fa1989 100644 --- a/addons/note/i18n/fr.po +++ b/addons/note/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/hr.po b/addons/note/i18n/hr.po index d54b4b704d4..207f7cc0e7f 100644 --- a/addons/note/i18n/hr.po +++ b/addons/note/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/hu.po b/addons/note/i18n/hu.po index fc083c9f3e0..81ecd0ae0a5 100644 --- a/addons/note/i18n/hu.po +++ b/addons/note/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/id.po b/addons/note/i18n/id.po index cb30cd1d98e..14aaa3a9b43 100644 --- a/addons/note/i18n/id.po +++ b/addons/note/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/it.po b/addons/note/i18n/it.po index 9dfca74df32..ade9239758e 100644 --- a/addons/note/i18n/it.po +++ b/addons/note/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/lt.po b/addons/note/i18n/lt.po index 12339cbe0bd..f8db06db2cf 100644 --- a/addons/note/i18n/lt.po +++ b/addons/note/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/mk.po b/addons/note/i18n/mk.po index d310760d142..41d36f5bb40 100644 --- a/addons/note/i18n/mk.po +++ b/addons/note/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: note diff --git a/addons/note/i18n/mn.po b/addons/note/i18n/mn.po index 606d7bc5a34..dac03317da3 100644 --- a/addons/note/i18n/mn.po +++ b/addons/note/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/nl.po b/addons/note/i18n/nl.po index eb0052f9138..58012c27d51 100644 --- a/addons/note/i18n/nl.po +++ b/addons/note/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-08 10:02+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/pl.po b/addons/note/i18n/pl.po index 8658171b8d6..9efef2ca6c9 100644 --- a/addons/note/i18n/pl.po +++ b/addons/note/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/pt.po b/addons/note/i18n/pt.po index 8598dc14e5c..282ddcca6ab 100644 --- a/addons/note/i18n/pt.po +++ b/addons/note/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/pt_BR.po b/addons/note/i18n/pt_BR.po index d515619b1ac..aecddde6576 100644 --- a/addons/note/i18n/pt_BR.po +++ b/addons/note/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 21:36+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/ro.po b/addons/note/i18n/ro.po index be370658b90..e21a3308a3e 100644 --- a/addons/note/i18n/ro.po +++ b/addons/note/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-06 20:11+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/ru.po b/addons/note/i18n/ru.po index 6283c51867b..0a8b2cb741d 100644 --- a/addons/note/i18n/ru.po +++ b/addons/note/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/sl.po b/addons/note/i18n/sl.po index f8c281215fe..32e0e3cdfae 100644 --- a/addons/note/i18n/sl.po +++ b/addons/note/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/sv.po b/addons/note/i18n/sv.po index 7903fb90105..23b4172eeee 100644 --- a/addons/note/i18n/sv.po +++ b/addons/note/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/tr.po b/addons/note/i18n/tr.po index 4604df9f4c0..ca2d2243c2b 100644 --- a/addons/note/i18n/tr.po +++ b/addons/note/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/zh_CN.po b/addons/note/i18n/zh_CN.po index 1cfefb72c41..1248ff62bb0 100644 --- a/addons/note/i18n/zh_CN.po +++ b/addons/note/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-24 10:29+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note_pad/i18n/cs.po b/addons/note_pad/i18n/cs.po index 493ca3764fa..3e2598ecf04 100644 --- a/addons/note_pad/i18n/cs.po +++ b/addons/note_pad/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/de.po b/addons/note_pad/i18n/de.po index 0354269bc88..03040e045b5 100644 --- a/addons/note_pad/i18n/de.po +++ b/addons/note_pad/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/en_GB.po b/addons/note_pad/i18n/en_GB.po index f295d707d3b..66033d258e1 100644 --- a/addons/note_pad/i18n/en_GB.po +++ b/addons/note_pad/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/es.po b/addons/note_pad/i18n/es.po index 25aea00767c..9e3a1901f41 100644 --- a/addons/note_pad/i18n/es.po +++ b/addons/note_pad/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/fr.po b/addons/note_pad/i18n/fr.po index f1453159e56..5377d6085c3 100644 --- a/addons/note_pad/i18n/fr.po +++ b/addons/note_pad/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/hr.po b/addons/note_pad/i18n/hr.po index d779229ffa7..e6e2c0d1919 100644 --- a/addons/note_pad/i18n/hr.po +++ b/addons/note_pad/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/hu.po b/addons/note_pad/i18n/hu.po index 727e6e613c1..ea52afa8f59 100644 --- a/addons/note_pad/i18n/hu.po +++ b/addons/note_pad/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/it.po b/addons/note_pad/i18n/it.po index 60369e5b16b..5671a24f76c 100644 --- a/addons/note_pad/i18n/it.po +++ b/addons/note_pad/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/lt.po b/addons/note_pad/i18n/lt.po index 92ec01944cd..785ead94d16 100644 --- a/addons/note_pad/i18n/lt.po +++ b/addons/note_pad/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/mk.po b/addons/note_pad/i18n/mk.po index c01e05598db..973e9c9954a 100644 --- a/addons/note_pad/i18n/mk.po +++ b/addons/note_pad/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/mn.po b/addons/note_pad/i18n/mn.po index ceda2fb8297..00d0f8675c3 100644 --- a/addons/note_pad/i18n/mn.po +++ b/addons/note_pad/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/nl.po b/addons/note_pad/i18n/nl.po index 8bc2389e8a2..b48caeda59e 100644 --- a/addons/note_pad/i18n/nl.po +++ b/addons/note_pad/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/pl.po b/addons/note_pad/i18n/pl.po index b4deafd49a6..edef4934565 100644 --- a/addons/note_pad/i18n/pl.po +++ b/addons/note_pad/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/pt.po b/addons/note_pad/i18n/pt.po index 9a685820e37..4426f30df02 100644 --- a/addons/note_pad/i18n/pt.po +++ b/addons/note_pad/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/pt_BR.po b/addons/note_pad/i18n/pt_BR.po index ad8193ad363..34602b7469a 100644 --- a/addons/note_pad/i18n/pt_BR.po +++ b/addons/note_pad/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/ro.po b/addons/note_pad/i18n/ro.po index 978062c83f3..249b0a4ae46 100644 --- a/addons/note_pad/i18n/ro.po +++ b/addons/note_pad/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-09 14:09+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/ru.po b/addons/note_pad/i18n/ru.po index d12801b3352..b365f6c0f6b 100644 --- a/addons/note_pad/i18n/ru.po +++ b/addons/note_pad/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/sl.po b/addons/note_pad/i18n/sl.po index f40d7c6e176..c6e9e76b75d 100644 --- a/addons/note_pad/i18n/sl.po +++ b/addons/note_pad/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/sv.po b/addons/note_pad/i18n/sv.po index 4021e5fb656..3a5f0e091d1 100644 --- a/addons/note_pad/i18n/sv.po +++ b/addons/note_pad/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/tr.po b/addons/note_pad/i18n/tr.po index 7ffc6239e82..b62b6018df5 100644 --- a/addons/note_pad/i18n/tr.po +++ b/addons/note_pad/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/vi.po b/addons/note_pad/i18n/vi.po index b96b0182831..784b4957377 100644 --- a/addons/note_pad/i18n/vi.po +++ b/addons/note_pad/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/zh_CN.po b/addons/note_pad/i18n/zh_CN.po index 3e410e94a82..5011b085e60 100644 --- a/addons/note_pad/i18n/zh_CN.po +++ b/addons/note_pad/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/pad/i18n/ar.po b/addons/pad/i18n/ar.po index f62815760ff..3ae3d28cae4 100644 --- a/addons/pad/i18n/ar.po +++ b/addons/pad/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/bg.po b/addons/pad/i18n/bg.po index b56321dcba2..1ec83c5ba88 100644 --- a/addons/pad/i18n/bg.po +++ b/addons/pad/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/ca.po b/addons/pad/i18n/ca.po index f44702cfae9..cc379cfd30c 100644 --- a/addons/pad/i18n/ca.po +++ b/addons/pad/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/cs.po b/addons/pad/i18n/cs.po index 7b573814bee..7977448cc03 100644 --- a/addons/pad/i18n/cs.po +++ b/addons/pad/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/da.po b/addons/pad/i18n/da.po index cc194db8b84..6094372aef4 100644 --- a/addons/pad/i18n/da.po +++ b/addons/pad/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/de.po b/addons/pad/i18n/de.po index b23160015e8..de8ddada592 100644 --- a/addons/pad/i18n/de.po +++ b/addons/pad/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/es.po b/addons/pad/i18n/es.po index 93297a52aac..33ffb35fe23 100644 --- a/addons/pad/i18n/es.po +++ b/addons/pad/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/es_CR.po b/addons/pad/i18n/es_CR.po index fc525e217e2..206d8aa118e 100644 --- a/addons/pad/i18n/es_CR.po +++ b/addons/pad/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/fi.po b/addons/pad/i18n/fi.po index d9a27cd3542..a526486b71b 100644 --- a/addons/pad/i18n/fi.po +++ b/addons/pad/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/fr.po b/addons/pad/i18n/fr.po index 8aac194337c..9ddb6733a21 100644 --- a/addons/pad/i18n/fr.po +++ b/addons/pad/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/gl.po b/addons/pad/i18n/gl.po index fbf6ad33f67..25ce2a4314c 100644 --- a/addons/pad/i18n/gl.po +++ b/addons/pad/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/hr.po b/addons/pad/i18n/hr.po index b2198500bb9..478cd88d0da 100644 --- a/addons/pad/i18n/hr.po +++ b/addons/pad/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/hu.po b/addons/pad/i18n/hu.po index 30bfd53cd7a..edb7dc56b88 100644 --- a/addons/pad/i18n/hu.po +++ b/addons/pad/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/it.po b/addons/pad/i18n/it.po index 74cd2cf94b1..a45b317f07d 100644 --- a/addons/pad/i18n/it.po +++ b/addons/pad/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/ja.po b/addons/pad/i18n/ja.po index a0af5bcb1e9..67c348249fd 100644 --- a/addons/pad/i18n/ja.po +++ b/addons/pad/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/mk.po b/addons/pad/i18n/mk.po index a57b42b11dc..93333538cf9 100644 --- a/addons/pad/i18n/mk.po +++ b/addons/pad/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/mn.po b/addons/pad/i18n/mn.po index 1a4e4daf275..a2543c31698 100644 --- a/addons/pad/i18n/mn.po +++ b/addons/pad/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/nb.po b/addons/pad/i18n/nb.po index 14d85e43790..3557a1b78ad 100644 --- a/addons/pad/i18n/nb.po +++ b/addons/pad/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/nl.po b/addons/pad/i18n/nl.po index 92320c0e8fa..e87ef4ec0e8 100644 --- a/addons/pad/i18n/nl.po +++ b/addons/pad/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-06 12:00+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/pl.po b/addons/pad/i18n/pl.po index 75e33643101..dc619df2b47 100644 --- a/addons/pad/i18n/pl.po +++ b/addons/pad/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/pt.po b/addons/pad/i18n/pt.po index d127c33b4ce..a51b16d2e03 100644 --- a/addons/pad/i18n/pt.po +++ b/addons/pad/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/pt_BR.po b/addons/pad/i18n/pt_BR.po index 5ea1c6e8950..3cf14576064 100644 --- a/addons/pad/i18n/pt_BR.po +++ b/addons/pad/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/ro.po b/addons/pad/i18n/ro.po index cca75298827..0e451da2b16 100644 --- a/addons/pad/i18n/ro.po +++ b/addons/pad/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 19:34+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/ru.po b/addons/pad/i18n/ru.po index 45aff60270a..70585dd0e61 100644 --- a/addons/pad/i18n/ru.po +++ b/addons/pad/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/sl.po b/addons/pad/i18n/sl.po index 56e239cd401..89a9058271f 100644 --- a/addons/pad/i18n/sl.po +++ b/addons/pad/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-05 06:30+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/sr@latin.po b/addons/pad/i18n/sr@latin.po index 3b4b990f391..9758c8f11f9 100644 --- a/addons/pad/i18n/sr@latin.po +++ b/addons/pad/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/sv.po b/addons/pad/i18n/sv.po index 71d6514b975..c0b9127d569 100644 --- a/addons/pad/i18n/sv.po +++ b/addons/pad/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/tr.po b/addons/pad/i18n/tr.po index 43d888c6990..67481b0a37a 100644 --- a/addons/pad/i18n/tr.po +++ b/addons/pad/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/zh_CN.po b/addons/pad/i18n/zh_CN.po index 8184c618934..ed3fbd1c9f3 100644 --- a/addons/pad/i18n/zh_CN.po +++ b/addons/pad/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad #. openerp-web diff --git a/addons/pad_project/i18n/ar.po b/addons/pad_project/i18n/ar.po index 400164ac8b7..315aa8f368b 100644 --- a/addons/pad_project/i18n/ar.po +++ b/addons/pad_project/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/cs.po b/addons/pad_project/i18n/cs.po index 99a65556481..7d377bfca4b 100644 --- a/addons/pad_project/i18n/cs.po +++ b/addons/pad_project/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/de.po b/addons/pad_project/i18n/de.po index 53041963a52..f39f39b91a9 100644 --- a/addons/pad_project/i18n/de.po +++ b/addons/pad_project/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/es.po b/addons/pad_project/i18n/es.po index 70a2177a2d6..e6086617054 100644 --- a/addons/pad_project/i18n/es.po +++ b/addons/pad_project/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/es_CR.po b/addons/pad_project/i18n/es_CR.po index 04382fc2a77..2ed7952c1e6 100644 --- a/addons/pad_project/i18n/es_CR.po +++ b/addons/pad_project/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/fi.po b/addons/pad_project/i18n/fi.po index 234ab554cd9..857fb347d9d 100644 --- a/addons/pad_project/i18n/fi.po +++ b/addons/pad_project/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/fr.po b/addons/pad_project/i18n/fr.po index b5a5b8899e2..0d74f6b0330 100644 --- a/addons/pad_project/i18n/fr.po +++ b/addons/pad_project/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-14 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/hr.po b/addons/pad_project/i18n/hr.po index 89b1de36c0e..11371fb439a 100644 --- a/addons/pad_project/i18n/hr.po +++ b/addons/pad_project/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/hu.po b/addons/pad_project/i18n/hu.po index 7e040fbe1c1..09e6fa824eb 100644 --- a/addons/pad_project/i18n/hu.po +++ b/addons/pad_project/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/it.po b/addons/pad_project/i18n/it.po index 42717c87217..3dad2af41c3 100644 --- a/addons/pad_project/i18n/it.po +++ b/addons/pad_project/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/ja.po b/addons/pad_project/i18n/ja.po index c0a48ff6c86..a01d73eb2f3 100644 --- a/addons/pad_project/i18n/ja.po +++ b/addons/pad_project/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/lt.po b/addons/pad_project/i18n/lt.po index b4d9efdcd3f..92a502b7447 100644 --- a/addons/pad_project/i18n/lt.po +++ b/addons/pad_project/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/mk.po b/addons/pad_project/i18n/mk.po index 883b24aeb83..f40408fdf51 100644 --- a/addons/pad_project/i18n/mk.po +++ b/addons/pad_project/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/mn.po b/addons/pad_project/i18n/mn.po index 67a38e18303..040da7f0015 100644 --- a/addons/pad_project/i18n/mn.po +++ b/addons/pad_project/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/nb.po b/addons/pad_project/i18n/nb.po index cf05853612a..47d32762573 100644 --- a/addons/pad_project/i18n/nb.po +++ b/addons/pad_project/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/nl.po b/addons/pad_project/i18n/nl.po index 087b9680bcd..567e2119007 100644 --- a/addons/pad_project/i18n/nl.po +++ b/addons/pad_project/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/pl.po b/addons/pad_project/i18n/pl.po index fee3e11cf12..2d51e9bde50 100644 --- a/addons/pad_project/i18n/pl.po +++ b/addons/pad_project/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/pt.po b/addons/pad_project/i18n/pt.po index 8731c49f872..331766eff21 100644 --- a/addons/pad_project/i18n/pt.po +++ b/addons/pad_project/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/pt_BR.po b/addons/pad_project/i18n/pt_BR.po index 796fce40287..0a55782fe19 100644 --- a/addons/pad_project/i18n/pt_BR.po +++ b/addons/pad_project/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/ro.po b/addons/pad_project/i18n/ro.po index 4c4f97218a4..35323574baa 100644 --- a/addons/pad_project/i18n/ro.po +++ b/addons/pad_project/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-10 11:03+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/ru.po b/addons/pad_project/i18n/ru.po index 6c3e724b0b2..edbd4264f3b 100644 --- a/addons/pad_project/i18n/ru.po +++ b/addons/pad_project/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/sl.po b/addons/pad_project/i18n/sl.po index 33fb6404bed..34926147ac7 100644 --- a/addons/pad_project/i18n/sl.po +++ b/addons/pad_project/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/sv.po b/addons/pad_project/i18n/sv.po index 8dd955965ce..eb00d7904af 100644 --- a/addons/pad_project/i18n/sv.po +++ b/addons/pad_project/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/tr.po b/addons/pad_project/i18n/tr.po index 8bae217860c..5abb876a696 100644 --- a/addons/pad_project/i18n/tr.po +++ b/addons/pad_project/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/zh_CN.po b/addons/pad_project/i18n/zh_CN.po index 1ec3984127e..d00096dac0d 100644 --- a/addons/pad_project/i18n/zh_CN.po +++ b/addons/pad_project/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/zh_TW.po b/addons/pad_project/i18n/zh_TW.po index df8d8a2de31..98dff718138 100644 --- a/addons/pad_project/i18n/zh_TW.po +++ b/addons/pad_project/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/plugin/i18n/ar.po b/addons/plugin/i18n/ar.po index 90a064f5261..236bef85967 100644 --- a/addons/plugin/i18n/ar.po +++ b/addons/plugin/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/cs.po b/addons/plugin/i18n/cs.po index 8e0790b6911..3bc0fbd939b 100644 --- a/addons/plugin/i18n/cs.po +++ b/addons/plugin/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/de.po b/addons/plugin/i18n/de.po index 80c5387c056..626be4bbcf7 100644 --- a/addons/plugin/i18n/de.po +++ b/addons/plugin/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/es.po b/addons/plugin/i18n/es.po index fed2f227918..7a2a5e520ff 100644 --- a/addons/plugin/i18n/es.po +++ b/addons/plugin/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/es_CR.po b/addons/plugin/i18n/es_CR.po index 132ac9426d1..68c7dd33d23 100644 --- a/addons/plugin/i18n/es_CR.po +++ b/addons/plugin/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/fi.po b/addons/plugin/i18n/fi.po index 90a3bcab95b..ad60502c0ca 100644 --- a/addons/plugin/i18n/fi.po +++ b/addons/plugin/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/fr.po b/addons/plugin/i18n/fr.po index 4b5876d52bc..0154a8e8658 100644 --- a/addons/plugin/i18n/fr.po +++ b/addons/plugin/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/hr.po b/addons/plugin/i18n/hr.po index 867d06c61ce..1c04858b62c 100644 --- a/addons/plugin/i18n/hr.po +++ b/addons/plugin/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/hu.po b/addons/plugin/i18n/hu.po index 8a702862a26..15ba336c8ff 100644 --- a/addons/plugin/i18n/hu.po +++ b/addons/plugin/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/it.po b/addons/plugin/i18n/it.po index 05e7bf393c2..ab9b31f0cd6 100644 --- a/addons/plugin/i18n/it.po +++ b/addons/plugin/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/ja.po b/addons/plugin/i18n/ja.po index 9a13857f92c..70eaa155acc 100644 --- a/addons/plugin/i18n/ja.po +++ b/addons/plugin/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/lt.po b/addons/plugin/i18n/lt.po index 80d9a98f64c..199fade6094 100644 --- a/addons/plugin/i18n/lt.po +++ b/addons/plugin/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/mk.po b/addons/plugin/i18n/mk.po index 8b53acf3b8f..c5bb5515250 100644 --- a/addons/plugin/i18n/mk.po +++ b/addons/plugin/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/mn.po b/addons/plugin/i18n/mn.po index ba5cb7a94f8..4b211c58474 100644 --- a/addons/plugin/i18n/mn.po +++ b/addons/plugin/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/nb.po b/addons/plugin/i18n/nb.po index 7bcb9151337..cefd8618ed4 100644 --- a/addons/plugin/i18n/nb.po +++ b/addons/plugin/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/nl.po b/addons/plugin/i18n/nl.po index e86efe1ec38..95ec854b40e 100644 --- a/addons/plugin/i18n/nl.po +++ b/addons/plugin/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-08 12:15+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/pt.po b/addons/plugin/i18n/pt.po index 0f616529393..26b2749fe4e 100644 --- a/addons/plugin/i18n/pt.po +++ b/addons/plugin/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/pt_BR.po b/addons/plugin/i18n/pt_BR.po index bd61dc34e05..e95af5c6b39 100644 --- a/addons/plugin/i18n/pt_BR.po +++ b/addons/plugin/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 21:08+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/ro.po b/addons/plugin/i18n/ro.po index 0e1537fcbc8..b074f959804 100644 --- a/addons/plugin/i18n/ro.po +++ b/addons/plugin/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-10 11:08+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/ru.po b/addons/plugin/i18n/ru.po index 10198d49a03..1cb8b692c5e 100644 --- a/addons/plugin/i18n/ru.po +++ b/addons/plugin/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/sl.po b/addons/plugin/i18n/sl.po index 4128723152e..8966c80c9dc 100644 --- a/addons/plugin/i18n/sl.po +++ b/addons/plugin/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/sv.po b/addons/plugin/i18n/sv.po index d4fac18526a..6557ef8c702 100644 --- a/addons/plugin/i18n/sv.po +++ b/addons/plugin/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/tr.po b/addons/plugin/i18n/tr.po index e27a668cc90..57fab82523b 100644 --- a/addons/plugin/i18n/tr.po +++ b/addons/plugin/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/zh_CN.po b/addons/plugin/i18n/zh_CN.po index 36f966b7c14..36bb1a7f56c 100644 --- a/addons/plugin/i18n/zh_CN.po +++ b/addons/plugin/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin/i18n/zh_TW.po b/addons/plugin/i18n/zh_TW.po index b1e702f22cc..25b04920cd9 100644 --- a/addons/plugin/i18n/zh_TW.po +++ b/addons/plugin/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin #: code:addons/plugin/plugin_handler.py:105 diff --git a/addons/plugin_outlook/i18n/ar.po b/addons/plugin_outlook/i18n/ar.po index 643ce2c2dab..4966bbd299c 100644 --- a/addons/plugin_outlook/i18n/ar.po +++ b/addons/plugin_outlook/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/bg.po b/addons/plugin_outlook/i18n/bg.po index 934f6d0fffb..3df99a9e89c 100644 --- a/addons/plugin_outlook/i18n/bg.po +++ b/addons/plugin_outlook/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/ca.po b/addons/plugin_outlook/i18n/ca.po index fd562ba5ab0..608df983c83 100644 --- a/addons/plugin_outlook/i18n/ca.po +++ b/addons/plugin_outlook/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/cs.po b/addons/plugin_outlook/i18n/cs.po index e351be4abb9..4ce1f749cdb 100644 --- a/addons/plugin_outlook/i18n/cs.po +++ b/addons/plugin_outlook/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/da.po b/addons/plugin_outlook/i18n/da.po index 1478b27d860..e479cdd9ed9 100644 --- a/addons/plugin_outlook/i18n/da.po +++ b/addons/plugin_outlook/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/de.po b/addons/plugin_outlook/i18n/de.po index ce3c7c35f9e..e7912eebe54 100644 --- a/addons/plugin_outlook/i18n/de.po +++ b/addons/plugin_outlook/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/el.po b/addons/plugin_outlook/i18n/el.po index 4ade3b3a8ce..7efad903388 100644 --- a/addons/plugin_outlook/i18n/el.po +++ b/addons/plugin_outlook/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/es.po b/addons/plugin_outlook/i18n/es.po index 3f1b592dfab..f9f7b953157 100644 --- a/addons/plugin_outlook/i18n/es.po +++ b/addons/plugin_outlook/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/es_CR.po b/addons/plugin_outlook/i18n/es_CR.po index db45b55a919..fcc552e1437 100644 --- a/addons/plugin_outlook/i18n/es_CR.po +++ b/addons/plugin_outlook/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/et.po b/addons/plugin_outlook/i18n/et.po index 90d40f43925..a025fb46ab7 100644 --- a/addons/plugin_outlook/i18n/et.po +++ b/addons/plugin_outlook/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/fi.po b/addons/plugin_outlook/i18n/fi.po index dc3027e2077..66a57e6d380 100644 --- a/addons/plugin_outlook/i18n/fi.po +++ b/addons/plugin_outlook/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/fr.po b/addons/plugin_outlook/i18n/fr.po index 2920a6df2e5..06e294f1209 100644 --- a/addons/plugin_outlook/i18n/fr.po +++ b/addons/plugin_outlook/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/gl.po b/addons/plugin_outlook/i18n/gl.po index 0a5d8ed5075..c2f492bc794 100644 --- a/addons/plugin_outlook/i18n/gl.po +++ b/addons/plugin_outlook/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/hr.po b/addons/plugin_outlook/i18n/hr.po index 4db78e5c068..f8952c72a4e 100644 --- a/addons/plugin_outlook/i18n/hr.po +++ b/addons/plugin_outlook/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/hu.po b/addons/plugin_outlook/i18n/hu.po index 8dc79db1b87..9146b9824c6 100644 --- a/addons/plugin_outlook/i18n/hu.po +++ b/addons/plugin_outlook/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/id.po b/addons/plugin_outlook/i18n/id.po index b08c0dae07d..aa27a1107dd 100644 --- a/addons/plugin_outlook/i18n/id.po +++ b/addons/plugin_outlook/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/it.po b/addons/plugin_outlook/i18n/it.po index 1026eec407a..d1f6a6f6124 100644 --- a/addons/plugin_outlook/i18n/it.po +++ b/addons/plugin_outlook/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/ja.po b/addons/plugin_outlook/i18n/ja.po index 121233a48fd..ecb3e91589f 100644 --- a/addons/plugin_outlook/i18n/ja.po +++ b/addons/plugin_outlook/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/mk.po b/addons/plugin_outlook/i18n/mk.po index 742fd164320..b70bb67344e 100644 --- a/addons/plugin_outlook/i18n/mk.po +++ b/addons/plugin_outlook/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/mn.po b/addons/plugin_outlook/i18n/mn.po index 56100d9015c..3019a46f27b 100644 --- a/addons/plugin_outlook/i18n/mn.po +++ b/addons/plugin_outlook/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/nb.po b/addons/plugin_outlook/i18n/nb.po index 7d9bc777fe2..f9676175436 100644 --- a/addons/plugin_outlook/i18n/nb.po +++ b/addons/plugin_outlook/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/nl.po b/addons/plugin_outlook/i18n/nl.po index 96214cb4e46..1f76ca27073 100644 --- a/addons/plugin_outlook/i18n/nl.po +++ b/addons/plugin_outlook/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/pl.po b/addons/plugin_outlook/i18n/pl.po index aebe93efad5..ba81e52321c 100644 --- a/addons/plugin_outlook/i18n/pl.po +++ b/addons/plugin_outlook/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/pt.po b/addons/plugin_outlook/i18n/pt.po index 03f8a83f7b4..fb14736c2d2 100644 --- a/addons/plugin_outlook/i18n/pt.po +++ b/addons/plugin_outlook/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/pt_BR.po b/addons/plugin_outlook/i18n/pt_BR.po index f572ddb7cf6..98e5afd8439 100644 --- a/addons/plugin_outlook/i18n/pt_BR.po +++ b/addons/plugin_outlook/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/ro.po b/addons/plugin_outlook/i18n/ro.po index 7fd214b725b..46ee1211a78 100644 --- a/addons/plugin_outlook/i18n/ro.po +++ b/addons/plugin_outlook/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-10 12:05+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/ru.po b/addons/plugin_outlook/i18n/ru.po index 5db3b552955..b8e7214729f 100644 --- a/addons/plugin_outlook/i18n/ru.po +++ b/addons/plugin_outlook/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/sl.po b/addons/plugin_outlook/i18n/sl.po index abaec9a5778..aec0c968b14 100644 --- a/addons/plugin_outlook/i18n/sl.po +++ b/addons/plugin_outlook/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-11-20 10:22+0000\n" +"Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 @@ -35,7 +35,7 @@ msgstr "outlook.installer" #. module: plugin_outlook #: view:outlook.installer:0 msgid "MS .Net Framework 3.5 or above." -msgstr "" +msgstr "MS .Net Framework 3.5 ali višja verzija" #. module: plugin_outlook #: model:ir.actions.act_window,name:plugin_outlook.action_outlook_installer @@ -43,12 +43,12 @@ msgstr "" #: model:ir.ui.menu,name:plugin_outlook.menu_base_config_plugins_outlook #: view:outlook.installer:0 msgid "Install Outlook Plug-In" -msgstr "" +msgstr "Namesti Outlook vmesnik" #. module: plugin_outlook #: view:outlook.installer:0 msgid "System requirements:" -msgstr "" +msgstr "Sistemske zahteve" #. module: plugin_outlook #: view:outlook.installer:0 @@ -65,7 +65,7 @@ msgstr "" #. module: plugin_outlook #: view:outlook.installer:0 msgid "MS Outlook 2005 or above." -msgstr "" +msgstr "MS Outlook 2005 ali višja verzija." #. module: plugin_outlook #: view:outlook.installer:0 diff --git a/addons/plugin_outlook/i18n/sr@latin.po b/addons/plugin_outlook/i18n/sr@latin.po index 27ceb1fa8ad..3ac976059ea 100644 --- a/addons/plugin_outlook/i18n/sr@latin.po +++ b/addons/plugin_outlook/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/sv.po b/addons/plugin_outlook/i18n/sv.po index beee0f3cecd..0670cf76f04 100644 --- a/addons/plugin_outlook/i18n/sv.po +++ b/addons/plugin_outlook/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/tr.po b/addons/plugin_outlook/i18n/tr.po index 517bd7eacb2..ab93857ddaf 100644 --- a/addons/plugin_outlook/i18n/tr.po +++ b/addons/plugin_outlook/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/zh_CN.po b/addons/plugin_outlook/i18n/zh_CN.po index 1b1d20669bf..63eff315041 100644 --- a/addons/plugin_outlook/i18n/zh_CN.po +++ b/addons/plugin_outlook/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_thunderbird/i18n/ar.po b/addons/plugin_thunderbird/i18n/ar.po index 79b323cfc43..c93976ea724 100644 --- a/addons/plugin_thunderbird/i18n/ar.po +++ b/addons/plugin_thunderbird/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/bg.po b/addons/plugin_thunderbird/i18n/bg.po index 38efea459f2..c7151c37f0a 100644 --- a/addons/plugin_thunderbird/i18n/bg.po +++ b/addons/plugin_thunderbird/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/ca.po b/addons/plugin_thunderbird/i18n/ca.po index 23c0b661bbe..0e18ba582ef 100644 --- a/addons/plugin_thunderbird/i18n/ca.po +++ b/addons/plugin_thunderbird/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/cs.po b/addons/plugin_thunderbird/i18n/cs.po index da8a173a7ab..2f8d81b4afb 100644 --- a/addons/plugin_thunderbird/i18n/cs.po +++ b/addons/plugin_thunderbird/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/da.po b/addons/plugin_thunderbird/i18n/da.po index 5fe495ac249..28254abada0 100644 --- a/addons/plugin_thunderbird/i18n/da.po +++ b/addons/plugin_thunderbird/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/de.po b/addons/plugin_thunderbird/i18n/de.po index 085f9c3e0d0..2520b6b0c73 100644 --- a/addons/plugin_thunderbird/i18n/de.po +++ b/addons/plugin_thunderbird/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/en_GB.po b/addons/plugin_thunderbird/i18n/en_GB.po index dd055495ca0..6f3ce9c8b48 100644 --- a/addons/plugin_thunderbird/i18n/en_GB.po +++ b/addons/plugin_thunderbird/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/en_US.po b/addons/plugin_thunderbird/i18n/en_US.po index 38157a678e4..a915be9fda1 100644 --- a/addons/plugin_thunderbird/i18n/en_US.po +++ b/addons/plugin_thunderbird/i18n/en_US.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/es.po b/addons/plugin_thunderbird/i18n/es.po index 2d64cf72d9e..77645c81049 100644 --- a/addons/plugin_thunderbird/i18n/es.po +++ b/addons/plugin_thunderbird/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/es_CR.po b/addons/plugin_thunderbird/i18n/es_CR.po index c2b5185653d..07dc19104dd 100644 --- a/addons/plugin_thunderbird/i18n/es_CR.po +++ b/addons/plugin_thunderbird/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/et.po b/addons/plugin_thunderbird/i18n/et.po index 6bebdc5d7ad..2255889492a 100644 --- a/addons/plugin_thunderbird/i18n/et.po +++ b/addons/plugin_thunderbird/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/eu.po b/addons/plugin_thunderbird/i18n/eu.po index 9a5f61cf896..361f499caaa 100644 --- a/addons/plugin_thunderbird/i18n/eu.po +++ b/addons/plugin_thunderbird/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/fi.po b/addons/plugin_thunderbird/i18n/fi.po index 36100fa92b0..143d4e05d3e 100644 --- a/addons/plugin_thunderbird/i18n/fi.po +++ b/addons/plugin_thunderbird/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/fr.po b/addons/plugin_thunderbird/i18n/fr.po index 2a510a843dd..406361d8b23 100644 --- a/addons/plugin_thunderbird/i18n/fr.po +++ b/addons/plugin_thunderbird/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/gl.po b/addons/plugin_thunderbird/i18n/gl.po index eee4f16b864..479d5fc7a82 100644 --- a/addons/plugin_thunderbird/i18n/gl.po +++ b/addons/plugin_thunderbird/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/hr.po b/addons/plugin_thunderbird/i18n/hr.po index 03d59f6a162..438da976dda 100644 --- a/addons/plugin_thunderbird/i18n/hr.po +++ b/addons/plugin_thunderbird/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/hu.po b/addons/plugin_thunderbird/i18n/hu.po index 0d957439818..fe0e674551b 100644 --- a/addons/plugin_thunderbird/i18n/hu.po +++ b/addons/plugin_thunderbird/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/is.po b/addons/plugin_thunderbird/i18n/is.po index f41f71517ee..4d02afcc750 100644 --- a/addons/plugin_thunderbird/i18n/is.po +++ b/addons/plugin_thunderbird/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/it.po b/addons/plugin_thunderbird/i18n/it.po index 19208c32b70..0e233607242 100644 --- a/addons/plugin_thunderbird/i18n/it.po +++ b/addons/plugin_thunderbird/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/ja.po b/addons/plugin_thunderbird/i18n/ja.po index 48399f07d20..7501bec7915 100644 --- a/addons/plugin_thunderbird/i18n/ja.po +++ b/addons/plugin_thunderbird/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/mk.po b/addons/plugin_thunderbird/i18n/mk.po index ee907c09c95..4ea946281b7 100644 --- a/addons/plugin_thunderbird/i18n/mk.po +++ b/addons/plugin_thunderbird/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/mn.po b/addons/plugin_thunderbird/i18n/mn.po index ad1984f9e6a..baa4ac261dd 100644 --- a/addons/plugin_thunderbird/i18n/mn.po +++ b/addons/plugin_thunderbird/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/nb.po b/addons/plugin_thunderbird/i18n/nb.po index dead3003da3..e9a570ad61e 100644 --- a/addons/plugin_thunderbird/i18n/nb.po +++ b/addons/plugin_thunderbird/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/nl.po b/addons/plugin_thunderbird/i18n/nl.po index 2e210d8008f..8145cd3071e 100644 --- a/addons/plugin_thunderbird/i18n/nl.po +++ b/addons/plugin_thunderbird/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/pl.po b/addons/plugin_thunderbird/i18n/pl.po index e30c083a044..02cd6c9c4e1 100644 --- a/addons/plugin_thunderbird/i18n/pl.po +++ b/addons/plugin_thunderbird/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/pt.po b/addons/plugin_thunderbird/i18n/pt.po index 9d325aef4a5..cf5f992d787 100644 --- a/addons/plugin_thunderbird/i18n/pt.po +++ b/addons/plugin_thunderbird/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/pt_BR.po b/addons/plugin_thunderbird/i18n/pt_BR.po index 2ae2103dfe3..db7ad4d0bf3 100644 --- a/addons/plugin_thunderbird/i18n/pt_BR.po +++ b/addons/plugin_thunderbird/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/ro.po b/addons/plugin_thunderbird/i18n/ro.po index ad3ac655afd..cf868c85069 100644 --- a/addons/plugin_thunderbird/i18n/ro.po +++ b/addons/plugin_thunderbird/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-10 12:04+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/ru.po b/addons/plugin_thunderbird/i18n/ru.po index 62e70588408..d6b665b7cf1 100644 --- a/addons/plugin_thunderbird/i18n/ru.po +++ b/addons/plugin_thunderbird/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sk.po b/addons/plugin_thunderbird/i18n/sk.po index 55884437f5c..e1c3c961830 100644 --- a/addons/plugin_thunderbird/i18n/sk.po +++ b/addons/plugin_thunderbird/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sl.po b/addons/plugin_thunderbird/i18n/sl.po index 7ba0729e7cd..d8141dda810 100644 --- a/addons/plugin_thunderbird/i18n/sl.po +++ b/addons/plugin_thunderbird/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sr.po b/addons/plugin_thunderbird/i18n/sr.po index 05bb3721c73..40787f5f13e 100644 --- a/addons/plugin_thunderbird/i18n/sr.po +++ b/addons/plugin_thunderbird/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sr@latin.po b/addons/plugin_thunderbird/i18n/sr@latin.po index fc5687ded13..f882b2c574e 100644 --- a/addons/plugin_thunderbird/i18n/sr@latin.po +++ b/addons/plugin_thunderbird/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sv.po b/addons/plugin_thunderbird/i18n/sv.po index 8e2a3106e9d..0ddf1b528ef 100644 --- a/addons/plugin_thunderbird/i18n/sv.po +++ b/addons/plugin_thunderbird/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/tr.po b/addons/plugin_thunderbird/i18n/tr.po index 8b5ed1b8132..51b8d2a45aa 100644 --- a/addons/plugin_thunderbird/i18n/tr.po +++ b/addons/plugin_thunderbird/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/zh_CN.po b/addons/plugin_thunderbird/i18n/zh_CN.po index efb36da1643..6c47c8d0a3b 100644 --- a/addons/plugin_thunderbird/i18n/zh_CN.po +++ b/addons/plugin_thunderbird/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:11+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:22+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/point_of_sale/i18n/ar.po b/addons/point_of_sale/i18n/ar.po index a2bdfc26e6a..4408e5088cf 100644 --- a/addons/point_of_sale/i18n/ar.po +++ b/addons/point_of_sale/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/bg.po b/addons/point_of_sale/i18n/bg.po index 1a485fa95c0..10579a8529e 100644 --- a/addons/point_of_sale/i18n/bg.po +++ b/addons/point_of_sale/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/bs.po b/addons/point_of_sale/i18n/bs.po index 31267eb0cc0..2639bac8835 100644 --- a/addons/point_of_sale/i18n/bs.po +++ b/addons/point_of_sale/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-29 05:14+0000\n" -"X-Generator: Launchpad (build 16818)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ca.po b/addons/point_of_sale/i18n/ca.po index 672778658f1..5deb65b7714 100644 --- a/addons/point_of_sale/i18n/ca.po +++ b/addons/point_of_sale/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/cs.po b/addons/point_of_sale/i18n/cs.po index d138a48eec8..94fee416235 100644 --- a/addons/point_of_sale/i18n/cs.po +++ b/addons/point_of_sale/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-23 05:35+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" "X-Language: cs_CZ\n" "X-Source-Language: en\n" diff --git a/addons/point_of_sale/i18n/da.po b/addons/point_of_sale/i18n/da.po index 5cbc481a184..7e0d06de18c 100644 --- a/addons/point_of_sale/i18n/da.po +++ b/addons/point_of_sale/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-13 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/de.po b/addons/point_of_sale/i18n/de.po index fcf222f54fd..f9794487b46 100644 --- a/addons/point_of_sale/i18n/de.po +++ b/addons/point_of_sale/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-09 05:49+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/el.po b/addons/point_of_sale/i18n/el.po index 76466cf58e3..e267d714cc9 100644 --- a/addons/point_of_sale/i18n/el.po +++ b/addons/point_of_sale/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/es.po b/addons/point_of_sale/i18n/es.po index b731f32cd51..9ee8c583e33 100644 --- a/addons/point_of_sale/i18n/es.po +++ b/addons/point_of_sale/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/es_AR.po b/addons/point_of_sale/i18n/es_AR.po index 4d2d01bb8f1..828724d35d7 100644 --- a/addons/point_of_sale/i18n/es_AR.po +++ b/addons/point_of_sale/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/es_BO.po b/addons/point_of_sale/i18n/es_BO.po index f2b18188875..5b72a6c2c02 100644 --- a/addons/point_of_sale/i18n/es_BO.po +++ b/addons/point_of_sale/i18n/es_BO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 07:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/es_CR.po b/addons/point_of_sale/i18n/es_CR.po index 75d72e3ea7a..a79938d31c0 100644 --- a/addons/point_of_sale/i18n/es_CR.po +++ b/addons/point_of_sale/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/es_EC.po b/addons/point_of_sale/i18n/es_EC.po index a858abdca2f..88fd26a827f 100644 --- a/addons/point_of_sale/i18n/es_EC.po +++ b/addons/point_of_sale/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/et.po b/addons/point_of_sale/i18n/et.po index 6b8251e362d..fa5352a955b 100644 --- a/addons/point_of_sale/i18n/et.po +++ b/addons/point_of_sale/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/fi.po b/addons/point_of_sale/i18n/fi.po index d7c0995dfd4..c597ddef349 100644 --- a/addons/point_of_sale/i18n/fi.po +++ b/addons/point_of_sale/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/fr.po b/addons/point_of_sale/i18n/fr.po index c3fed16b287..1e001f514c5 100644 --- a/addons/point_of_sale/i18n/fr.po +++ b/addons/point_of_sale/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-04 05:45+0000\n" -"X-Generator: Launchpad (build 16791)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/he.po b/addons/point_of_sale/i18n/he.po index d6d1dc2f78a..92eaf7deed3 100644 --- a/addons/point_of_sale/i18n/he.po +++ b/addons/point_of_sale/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/hi.po b/addons/point_of_sale/i18n/hi.po index 2b05fa8f1f6..4db7f01b866 100644 --- a/addons/point_of_sale/i18n/hi.po +++ b/addons/point_of_sale/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/hr.po b/addons/point_of_sale/i18n/hr.po index e7ec21a5dce..84b37a3b4c7 100644 --- a/addons/point_of_sale/i18n/hr.po +++ b/addons/point_of_sale/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/hu.po b/addons/point_of_sale/i18n/hu.po index b662c2e4ddc..0535ae518b7 100644 --- a/addons/point_of_sale/i18n/hu.po +++ b/addons/point_of_sale/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/id.po b/addons/point_of_sale/i18n/id.po index e3d2893755e..d9be24c5650 100644 --- a/addons/point_of_sale/i18n/id.po +++ b/addons/point_of_sale/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/it.po b/addons/point_of_sale/i18n/it.po index 062483c4406..bd5b313ac54 100644 --- a/addons/point_of_sale/i18n/it.po +++ b/addons/point_of_sale/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ja.po b/addons/point_of_sale/i18n/ja.po index f67715b2ae6..33ccb3e7575 100644 --- a/addons/point_of_sale/i18n/ja.po +++ b/addons/point_of_sale/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:51+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ko.po b/addons/point_of_sale/i18n/ko.po index 69cfa69bade..60dd9330794 100644 --- a/addons/point_of_sale/i18n/ko.po +++ b/addons/point_of_sale/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/lt.po b/addons/point_of_sale/i18n/lt.po index 4fb9e3ce7bf..482ab3f466c 100644 --- a/addons/point_of_sale/i18n/lt.po +++ b/addons/point_of_sale/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/lv.po b/addons/point_of_sale/i18n/lv.po index f7afdf54f89..cbe99fe64a7 100644 --- a/addons/point_of_sale/i18n/lv.po +++ b/addons/point_of_sale/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/mk.po b/addons/point_of_sale/i18n/mk.po index 7348ed06496..a405c5309e0 100644 --- a/addons/point_of_sale/i18n/mk.po +++ b/addons/point_of_sale/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/mn.po b/addons/point_of_sale/i18n/mn.po index 96ffec423e6..90c1842e4ef 100644 --- a/addons/point_of_sale/i18n/mn.po +++ b/addons/point_of_sale/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-15 05:18+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/nb.po b/addons/point_of_sale/i18n/nb.po index f2b67309db0..26f7c5ed833 100644 --- a/addons/point_of_sale/i18n/nb.po +++ b/addons/point_of_sale/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/nl.po b/addons/point_of_sale/i18n/nl.po index bcca6ec9c6b..adfdaef3b8c 100644 --- a/addons/point_of_sale/i18n/nl.po +++ b/addons/point_of_sale/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-07 05:51+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/nl_BE.po b/addons/point_of_sale/i18n/nl_BE.po index a1757476307..9a1804effa7 100644 --- a/addons/point_of_sale/i18n/nl_BE.po +++ b/addons/point_of_sale/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/pl.po b/addons/point_of_sale/i18n/pl.po index 4889b504c03..12d6922aad7 100644 --- a/addons/point_of_sale/i18n/pl.po +++ b/addons/point_of_sale/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/pt.po b/addons/point_of_sale/i18n/pt.po index b5e2e964d1a..9cbddebb8e1 100644 --- a/addons/point_of_sale/i18n/pt.po +++ b/addons/point_of_sale/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/pt_BR.po b/addons/point_of_sale/i18n/pt_BR.po index cda46a3b2dd..cb5ab3c720b 100644 --- a/addons/point_of_sale/i18n/pt_BR.po +++ b/addons/point_of_sale/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 21:28+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ro.po b/addons/point_of_sale/i18n/ro.po index b1ddcbb635e..5fca7c7a447 100644 --- a/addons/point_of_sale/i18n/ro.po +++ b/addons/point_of_sale/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 19:33+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ru.po b/addons/point_of_sale/i18n/ru.po index ae58b911eeb..5eef420b210 100644 --- a/addons/point_of_sale/i18n/ru.po +++ b/addons/point_of_sale/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sl.po b/addons/point_of_sale/i18n/sl.po index f7c3cf22ae2..1b2f76eb603 100644 --- a/addons/point_of_sale/i18n/sl.po +++ b/addons/point_of_sale/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-09 11:45+0000\n" +"PO-Revision-Date: 2013-11-20 22:24+0000\n" "Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -905,6 +905,11 @@ msgid "" "Method\" from the \"Point of Sale\" tab. You can also create new payment " "methods directly from menu \"PoS Backend / Configuration / Payment Methods\"." msgstr "" +"Opredeliti je potrebno, kateri načini plačila morajo biti dostopni v POS z " +"uporabo obstoječih bank in gotovine v meniju " +"\"Računovodstvo/Nastavitve/Dnevnik/Dnevniki\". Izberite dnevnik in označite " +"polje \"POS-način plačila\" v zavihku \"POS\". Lahko kreirate nove načine " +"plačila direktno v \"POS/Nastavitve/Načini plačila\"." #. module: point_of_sale #: model:pos.category,name:point_of_sale.rouges_noyau_fruits @@ -975,6 +980,8 @@ msgid "" "Check this if you want to group the Journal Items by Product while closing a " "Session" msgstr "" +"Označite, če želite združevanje postavk dnevnika po izdelkih, ko " +"zaključujete sejo" #. module: point_of_sale #: report:pos.details:0 @@ -1016,7 +1023,7 @@ msgstr "250g Lays Pickels" #. module: point_of_sale #: field:pos.session.opening,pos_session_id:0 msgid "PoS Session" -msgstr "" +msgstr "POS seja" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -1033,7 +1040,7 @@ msgstr "Artikli uporabnika" #: code:addons/point_of_sale/point_of_sale.py:1007 #, python-format msgid "The POS order must have lines when calling this method" -msgstr "" +msgstr "POS naročilo mora vsebovati vrstice, ko je klican ta način" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:1173 @@ -1063,7 +1070,7 @@ msgstr "Spa Reine 33cl" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_discount msgid "Add a Global Discount" -msgstr "" +msgstr "Dodaj splošni popust" #. module: point_of_sale #: view:pos.config:0 @@ -1098,7 +1105,7 @@ msgstr "vrni" #. module: point_of_sale #: view:product.product:0 msgid "Set a Custom EAN" -msgstr "" +msgstr "Določi EAN po meri" #. module: point_of_sale #. openerp-web @@ -1122,7 +1129,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:478 #, python-format msgid "Scan Item Success" -msgstr "" +msgstr "Skeniranje izdelka uspešno" #. module: point_of_sale #: report:account.statement:0 @@ -1139,7 +1146,7 @@ msgstr "Oven Baked Lays Natural 150g" #. module: point_of_sale #: sql_constraint:pos.session:0 msgid "The name of this POS Session must be unique !" -msgstr "" +msgstr "Ime POS seje mora biti enoznačno!" #. module: point_of_sale #: view:pos.session:0 @@ -1218,7 +1225,7 @@ msgstr "2L Evian" #: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" -msgstr "" +msgstr "Zaženi POS" #. module: point_of_sale #: model:pos.category,name:point_of_sale.pils @@ -1228,7 +1235,7 @@ msgstr "Pils" #. module: point_of_sale #: help:pos.session,cash_register_balance_end_real:0 msgid "Computed using the cash control lines" -msgstr "" +msgstr "Izračunano ob uporabi kontrolnih vrstic blagajne" #. module: point_of_sale #: report:all.closed.cashbox.of.the.day:0 @@ -1359,7 +1366,7 @@ msgstr "Skupaj zaračunano" #: model:ir.model,name:point_of_sale.model_pos_category #: field:product.product,pos_categ_id:0 msgid "Point of Sale Category" -msgstr "" +msgstr "Kategorija POS" #. module: point_of_sale #: view:report.pos.order:0 @@ -1373,13 +1380,15 @@ msgid "" "This sequence is automatically created by OpenERP but you can change it to " "customize the reference numbers of your orders." msgstr "" +"To zaporedje je avtomatično kreira OpenERP, vendar ga lahko spremenite z " +"namenom prilagoditve referenčne številke vaših naročil." #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:324 #, python-format msgid "Choose your type of receipt:" -msgstr "" +msgstr "Izberite vaš način prejema:" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_sales_by_margin_pos_month @@ -1416,7 +1425,7 @@ msgstr "Lays Natural XXL 300g" #: code:addons/point_of_sale/static/src/xml/pos.xml:479 #, python-format msgid "Scan Item Unrecognized" -msgstr "" +msgstr "Skeniran izdelek ni prepozan" #. module: point_of_sale #: report:all.closed.cashbox.of.the.day:0 @@ -1427,7 +1436,7 @@ msgstr "Današna zaprta blagajna" #: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" -msgstr "" +msgstr "Izbrana naročila nimajo iste seje!" #. module: point_of_sale #: report:pos.invoice:0 @@ -1460,14 +1469,14 @@ msgstr "Datum odprtja" #: model:ir.actions.act_window,name:point_of_sale.action_pos_session #: model:ir.ui.menu,name:point_of_sale.menu_pos_session_all msgid "All Sessions" -msgstr "" +msgstr "Vse seje" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:663 #, python-format msgid "tab" -msgstr "" +msgstr "Zavihek" #. module: point_of_sale #: report:pos.lines:0 @@ -1479,7 +1488,7 @@ msgstr "Davki:" #: code:addons/point_of_sale/static/src/xml/pos.xml:271 #, python-format msgid "Thank you for shopping with us." -msgstr "" +msgstr "Hvala za nakup pri nas." #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_light_2l_product_template @@ -1500,7 +1509,7 @@ msgstr "Skupine izdelkov" #. module: point_of_sale #: help:pos.config,journal_id:0 msgid "Accounting journal used to post sales entries." -msgstr "" +msgstr "Računovodski dnevnik, ki se uporablja za knjiženje postavk iz POS." #. module: point_of_sale #: field:report.transaction.pos,disc:0 @@ -1512,7 +1521,7 @@ msgstr "Pop." #: code:addons/point_of_sale/static/src/xml/pos.xml:467 #, python-format msgid "Invalid Ean" -msgstr "" +msgstr "Napačna EAN-koda" #. module: point_of_sale #: model:product.template,name:point_of_sale.lindemans_kriek_37,5cl_product_template @@ -1522,7 +1531,7 @@ msgstr "Lindemans Kriek 37.5cl" #. module: point_of_sale #: view:pos.config:0 msgid "Point of Sale Config" -msgstr "" +msgstr "Nastavitve POS" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_zero_33cl_product_template @@ -1534,7 +1543,7 @@ msgstr "Coca-Cola Zero 33cl" #: code:addons/point_of_sale/static/src/xml/pos.xml:405 #, python-format msgid "ä" -msgstr "" +msgstr "ä" #. module: point_of_sale #: view:pos.order.line:0 @@ -1558,7 +1567,7 @@ msgstr "neznano" #. module: point_of_sale #: field:product.product,income_pdt:0 msgid "Point of Sale Cash In" -msgstr "" +msgstr "Prejem gotovine v POS" #. module: point_of_sale #. openerp-web @@ -1570,7 +1579,7 @@ msgstr "Davek:" #. module: point_of_sale #: view:pos.session:0 msgid "+ Transactions" -msgstr "" +msgstr "+ transakcije" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_discount @@ -1600,7 +1609,7 @@ msgstr "Uporabnik" #, python-format msgid "" "The type of the journal for your payment method should be bank or cash " -msgstr "" +msgstr "Tip dnevnika za vaš način plačila mora biti banka ali gotovina " #. module: point_of_sale #. openerp-web @@ -1612,7 +1621,7 @@ msgstr "Kg" #. module: point_of_sale #: field:product.product,available_in_pos:0 msgid "Available in the Point of Sale" -msgstr "" +msgstr "Dostopno v POS" #. module: point_of_sale #: selection:pos.config,state:0 @@ -1629,7 +1638,7 @@ msgstr "Coca-Cola Light 33cl Decaf" #: code:addons/point_of_sale/static/src/xml/pos.xml:338 #, python-format msgid "The scanned product was not recognized" -msgstr "" +msgstr "Skeniran izdelek ni prepoznan" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_transaction_pos @@ -1669,7 +1678,7 @@ msgstr "" #. module: point_of_sale #: field:product.product,expense_pdt:0 msgid "Point of Sale Cash Out" -msgstr "" +msgstr "Odlivi gotovine iz POS" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -1681,7 +1690,7 @@ msgstr "November" #: code:addons/point_of_sale/static/src/xml/pos.xml:267 #, python-format msgid "Please scan an item or your member card" -msgstr "" +msgstr "Prosim skenirajte izdelek ali vašo člansko izkaznico" #. module: point_of_sale #: model:product.template,name:point_of_sale.poivron_verts_product_template @@ -1700,11 +1709,14 @@ msgid "" "Your ending balance is too different from the theorical cash closing (%.2f), " "the maximum allowed is: %.2f. You can contact your manager to force it." msgstr "" +"Vaše zaključno stanje preveč odstopa od teoretičnega zaključka blagajne " +"(%.2f), maksimum, ki je dovoljen, je: %.2f. Kontaktirajte vašega nadrejenega " +"za ureditev." #. module: point_of_sale #: view:pos.session:0 msgid "Validate Closing & Post Entries" -msgstr "" +msgstr "Potrdi zaključek & knjiži postavke" #. module: point_of_sale #: field:report.transaction.pos,no_trans:0 @@ -1718,6 +1730,8 @@ msgid "" "There is no receivable account defined to make payment for the partner: " "\"%s\" (id:%d)." msgstr "" +"Konto terjatev ni določen, da bi lahko prejeli plačilo za partnerja: \"%s\" " +"(id:%d)." #. module: point_of_sale #: view:pos.config:0 @@ -1747,7 +1761,7 @@ msgstr "Prekliči" #: code:addons/point_of_sale/static/src/xml/pos.xml:296 #, python-format msgid "Please put your product on the scale" -msgstr "" +msgstr "Prosimo, položite izdelek na tehtnico" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_details_summary @@ -1774,7 +1788,7 @@ msgstr "Timmermans Kriek 37.5cl" #. module: point_of_sale #: field:pos.config,sequence_id:0 msgid "Order IDs Sequence" -msgstr "" +msgstr "Zaporedje naročil" #. module: point_of_sale #: report:pos.invoice:0 @@ -1789,7 +1803,7 @@ msgstr "Cena enote" #: code:addons/point_of_sale/static/src/xml/pos.xml:190 #, python-format msgid "Product Weighting" -msgstr "" +msgstr "Tehtanje izdelka" #. module: point_of_sale #. openerp-web @@ -1829,14 +1843,14 @@ msgstr "Blagajna" #. module: point_of_sale #: help:pos.session,cash_register_balance_end:0 msgid "Computed with the initial cash control and the sum of all payments." -msgstr "" +msgstr "Izračunano iz začetnega stanja in vsote vseh plačil." #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:474 #, python-format msgid "In Transaction" -msgstr "" +msgstr "V obdelavi" #. module: point_of_sale #: model:pos.category,name:point_of_sale.food @@ -1877,7 +1891,7 @@ msgstr "POS" #: code:addons/point_of_sale/static/src/xml/pos.xml:587 #, python-format msgid "Subtotal:" -msgstr "" +msgstr "Vmesna vsota:" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_regular_33cl_product_template @@ -1900,12 +1914,12 @@ msgstr "Razlika" #: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" -msgstr "" +msgstr "Brisanje ni možno!" #. module: point_of_sale #: model:pos.category,name:point_of_sale.autres_agrumes msgid "Other Citrus" -msgstr "" +msgstr "Ostali citrusi" #. module: point_of_sale #: report:pos.details:0 @@ -1937,7 +1951,7 @@ msgstr "" #. module: point_of_sale #: model:product.template,name:point_of_sale.unreferenced_product_product_template msgid "Unreferenced Products" -msgstr "" +msgstr "Neznani proizvodi" #. module: point_of_sale #: view:pos.ean_wizard:0 @@ -1953,6 +1967,8 @@ msgid "" "complete\n" " your purchase" msgstr "" +"Prosimo, vstavite kartico v čitalec in sledite navodilom za zaključek\n" +" vašega nakupa" #. module: point_of_sale #: help:product.product,income_pdt:0 @@ -1960,6 +1976,8 @@ msgid "" "Check if, this is a product you can use to put cash into a statement for the " "point of sale backend." msgstr "" +"Označite, če je to proizvod, ki ga lahko uporabite za polog gotovine v " +"poročilu ob zaključku blagajne." #. module: point_of_sale #: model:product.template,name:point_of_sale.ijsboerke_moka_2,5l_product_template @@ -1975,7 +1993,7 @@ msgstr "" #: model:ir.actions.act_window,name:point_of_sale.action_report_pos_order_all #: model:ir.ui.menu,name:point_of_sale.menu_report_pos_order_all msgid "Orders Analysis" -msgstr "" +msgstr "Analiza naročil" #. module: point_of_sale #. openerp-web @@ -1991,6 +2009,7 @@ msgid "" "Unable to open the session. You have to assign a sale journal to your point " "of sale." msgstr "" +"Seje ni mogoče pričeti. Vaši POS-blagajni morate prirediti prodajni dnevnik." #. module: point_of_sale #: view:report.pos.order:0 @@ -2022,7 +2041,7 @@ msgstr "Leeks" #: help:pos.category,sequence:0 msgid "" "Gives the sequence order when displaying a list of product categories." -msgstr "" +msgstr "Določi zaporedje pri izpisu seznama kategorij izdelkov." #. module: point_of_sale #: view:account.bank.statement:0 @@ -2114,7 +2133,7 @@ msgstr "Ostalo" #: code:addons/point_of_sale/static/src/js/screens.js:882 #, python-format msgid "Validate" -msgstr "" +msgstr "Potrditev" #. module: point_of_sale #: model:pos.category,name:point_of_sale.autres_legumes_frais @@ -2201,7 +2220,7 @@ msgstr "In Cluster Tomatoes" #. module: point_of_sale #: model:ir.actions.client,name:point_of_sale.action_pos_pos msgid "Start Point of Sale" -msgstr "" +msgstr "Zaženi POS" #. module: point_of_sale #. openerp-web @@ -2226,12 +2245,12 @@ msgstr "Coca-Cola Zero 1L" #: code:addons/point_of_sale/static/src/js/screens.js:718 #, python-format msgid "Help" -msgstr "" +msgstr "Pomoč" #. module: point_of_sale #: view:pos.order:0 msgid "Point of Sale Orders" -msgstr "" +msgstr "Naročila POS" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_et_fruit_50cl_product_template @@ -2277,7 +2296,7 @@ msgstr "Faks:" #. module: point_of_sale #: view:pos.session:0 msgid "Point of Sale Session" -msgstr "" +msgstr "Seja POS" #. module: point_of_sale #: report:account.statement:0 @@ -2290,7 +2309,7 @@ msgstr "Izpisek" #: code:addons/point_of_sale/static/src/xml/pos.xml:351 #, python-format msgid "Sorry, we could not create a session for this user." -msgstr "" +msgstr "Za tega uporabnika ni možno kreiranje seje." #. module: point_of_sale #: report:pos.invoice:0 @@ -2326,7 +2345,7 @@ msgstr "Bančni izpisek" #: selection:pos.session.opening,pos_state:0 #, python-format msgid "Closed & Posted" -msgstr "" +msgstr "Zaključeno & Knjiženo" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_report_pos_sale_user @@ -2386,7 +2405,7 @@ msgstr "Golden Apples Perlim" #: selection:pos.session.opening,pos_state:0 #, python-format msgid "Closing Control" -msgstr "" +msgstr "Zaključna kontrola" #. module: point_of_sale #: field:report.pos.order,delay_validation:0 @@ -2413,7 +2432,7 @@ msgstr "Coca-Cola Light 50cl" #: code:addons/point_of_sale/static/src/xml/pos.xml:466 #, python-format msgid "Unknown Product" -msgstr "" +msgstr "Neznan proizvod" #. module: point_of_sale #. openerp-web @@ -2453,7 +2472,7 @@ msgstr "Lays Ketchup 250g" #. module: point_of_sale #: selection:report.pos.order,state:0 msgid "Synchronized" -msgstr "" +msgstr "Usklajeno" #. module: point_of_sale #: model:product.template,name:point_of_sale.chimay_rouge_33cl_product_template @@ -2479,7 +2498,7 @@ msgstr "Orange Butterfly" #. module: point_of_sale #: view:report.pos.order:0 msgid "Year of order date" -msgstr "" +msgstr "Leto iz datuma naročila" #. module: point_of_sale #: report:pos.sales.user:0 @@ -2494,6 +2513,8 @@ msgid "" "Check if the product should be weighted (mainly used with self check-out " "interface)." msgstr "" +"Označite, če je treba proizvod tehtati (v glavnem uporaba pri vmesnik za " +"samostojni obračun)." #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_new_bank_statement_tree @@ -2507,7 +2528,7 @@ msgstr "Blagajna" #: code:addons/point_of_sale/static/src/xml/pos.xml:447 #, python-format msgid "Accept Payment" -msgstr "" +msgstr "Sprejmi plačilo" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_receipt @@ -2527,7 +2548,7 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.poire msgid "Pears" -msgstr "" +msgstr "Hruške" #. module: point_of_sale #: field:report.transaction.pos,journal_id:0 @@ -2548,12 +2569,12 @@ msgstr "Zaprto" #. module: point_of_sale #: field:pos.config,iface_cashdrawer:0 msgid "Cashdrawer Interface" -msgstr "" +msgstr "Vmesnik za gotovinski predal" #. module: point_of_sale #: report:pos.invoice:0 msgid "TIN :" -msgstr "" +msgstr "TIN :" #. module: point_of_sale #: model:pos.category,name:point_of_sale.tomates @@ -2588,7 +2609,7 @@ msgstr "Beers" #. module: point_of_sale #: help:pos.config,name:0 msgid "An internal identification of the point of sale" -msgstr "" +msgstr "Interna identifikacija POS" #. module: point_of_sale #: view:pos.config:0 @@ -2604,19 +2625,19 @@ msgstr "ID seje" #. module: point_of_sale #: view:pos.make.payment:0 msgid "Pay Order" -msgstr "" +msgstr "Plačilni nalog" #. module: point_of_sale #: view:pos.session:0 msgid "Summary by Payment Methods" -msgstr "" +msgstr "Zbir po načinih plačila" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:470 #, python-format msgid "Hardware Status" -msgstr "" +msgstr "Status strojne opreme" #. module: point_of_sale #. openerp-web @@ -2666,7 +2687,7 @@ msgstr "Ponovno Natisni" #. module: point_of_sale #: field:pos.config,iface_payment_terminal:0 msgid "Payment Terminal Interface" -msgstr "" +msgstr "Vmesnik za plačilni terminal" #. module: point_of_sale #. openerp-web @@ -2697,6 +2718,9 @@ msgid "" "payments. We suggest you to control the opening balance of each register, " "using their CashBox tab." msgstr "" +"Sistem bo odprl vse registratorje gotovine, tako da lahko pričnete zajemati " +"plačila. Predlagamo, da kontrolirate začetno stanje za vsako vrsto posebej, " +"z uporabo zavihka Blagajna." #. module: point_of_sale #: view:pos.order:0 @@ -2760,14 +2784,14 @@ msgstr "" #. module: point_of_sale #: view:pos.session:0 msgid "Continue Selling" -msgstr "" +msgstr "Nadaljuj prodajo" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:444 #, python-format msgid "Payment Terminal" -msgstr "" +msgstr "Plačilni terminal" #. module: point_of_sale #: view:account.bank.statement:0 @@ -2778,14 +2802,14 @@ msgstr "Odgovoren" #. module: point_of_sale #: model:product.template,name:point_of_sale.croky_bolognaise_250g_product_template msgid "Croky Bolognese 250g" -msgstr "" +msgstr "Croky Bolognese 250g" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:460 #, python-format msgid "Custom Ean13" -msgstr "" +msgstr "EAN13 - po meri" #. module: point_of_sale #. openerp-web @@ -2836,7 +2860,7 @@ msgstr "Pepsi Max 33cl" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_pos_order msgid "Point of Sale Orders Statistics" -msgstr "" +msgstr "Statistika naročil POS" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_product_product @@ -2858,7 +2882,7 @@ msgstr "Dr. Oetker Ristorante Pollo" #: constraint:pos.session:0 msgid "" "You cannot create two active sessions related to the same point of sale!" -msgstr "" +msgstr "Ne morete kreirati dveh aktivnih sej za isto POS!" #. module: point_of_sale #: field:pos.category,image_small:0 @@ -2874,14 +2898,14 @@ msgstr "POS postavke" #: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" -msgstr "" +msgstr "Dobiček POS" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:338 #, python-format msgid "Please wait, a cashier is on the way" -msgstr "" +msgstr "Prosimo počakajte blagajnika" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_session_opening.py:67 @@ -2923,7 +2947,7 @@ msgstr "Ime izjave" #. module: point_of_sale #: field:pos.session,cash_register_total_entry_encoding:0 msgid "Total Cash Transaction" -msgstr "" +msgstr "Skupaj gotovinske transakcije" #. module: point_of_sale #: model:pos.category,name:point_of_sale.pommes_de_terre @@ -2947,7 +2971,7 @@ msgstr "Prodajna linija uporabnikov" #: code:addons/point_of_sale/static/src/xml/pos.xml:481 #, python-format msgid "Payment Status" -msgstr "" +msgstr "Status plačila" #. module: point_of_sale #: model:product.template,name:point_of_sale.pepsi_2l_product_template @@ -2973,7 +2997,7 @@ msgstr "Uporabniki" #. module: point_of_sale #: view:pos.details:0 msgid "POS Details" -msgstr "" +msgstr "Podrobnosti POS" #. module: point_of_sale #. openerp-web @@ -3030,14 +3054,14 @@ msgstr "Odpri blagajno" #. module: point_of_sale #: field:account.journal,amount_authorized_diff:0 msgid "Amount Authorized Difference" -msgstr "" +msgstr "Znesek dovoljene razlike" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:311 #, python-format msgid "Please be patient, help is on the way" -msgstr "" +msgstr "Prosimo počakajte, pomoč prihaja" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_session @@ -3062,7 +3086,7 @@ msgstr "" #. module: point_of_sale #: field:account.journal,journal_user:0 msgid "PoS Payment Method" -msgstr "" +msgstr "Način plačila POS" #. module: point_of_sale #: model:product.template,name:point_of_sale.pepsi_33cl_product_template @@ -3096,7 +3120,7 @@ msgstr "Fanta Orange 25cl" #. module: point_of_sale #: view:pos.confirm:0 msgid "Generate Journal Entries" -msgstr "" +msgstr "Ustvari postavke dnevnika" #. module: point_of_sale #: report:account.statement:0 @@ -3132,7 +3156,7 @@ msgstr "Orangina 33cl" #. module: point_of_sale #: view:pos.config:0 msgid "Set to Inactive" -msgstr "" +msgstr "Nastavi na neaktivno" #. module: point_of_sale #: model:product.template,name:point_of_sale.chimay_bleu_33cl_product_template @@ -3174,7 +3198,7 @@ msgstr "V redu" #: code:addons/point_of_sale/static/src/xml/pos.xml:278 #, python-format msgid "Please scan an item" -msgstr "" +msgstr "Prosimo, skenirajte izdelek" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_box_in @@ -3237,6 +3261,8 @@ msgid "" "The Point of Sale Category this products belongs to. Those categories are " "used to group similar products and are specific to the Point of Sale." msgstr "" +"Kategorija POS, ki ji pripada ta izdelek. Te kategorije se uporabljajo za " +"združevanje podobnih proizvodov in so specifične za POS." #. module: point_of_sale #: model:product.template,name:point_of_sale.orangina_1,5l_product_template @@ -3264,7 +3290,7 @@ msgstr "Trgovina" #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 #, python-format msgid "Please check that income account is set to %s." -msgstr "" +msgstr "Preverite, če je konto prihodkov nastavljen na %s." #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_account_bank_statement_line @@ -3279,7 +3305,7 @@ msgstr "Belle-Vue Kriek 25cl" #. module: point_of_sale #: model:product.template,name:point_of_sale.chaudfontaine_petillante_1,5l_product_template msgid "Chaudfontaine Petillante 1.5l" -msgstr "" +msgstr "Chaudfontaine Petillante 1.5l" #. module: point_of_sale #: model:product.template,name:point_of_sale.ijsboerke_stracciatella_2,5l_product_template @@ -3302,13 +3328,13 @@ msgstr "Chaudfontaine 1.5l" #: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" -msgstr "" +msgstr "Terjatve iz prodaje" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." -msgstr "" +msgstr "Da bi izbrisali prodajo, mora biti 'nova' ali 'preklicana'." #. module: point_of_sale #. openerp-web @@ -3318,6 +3344,8 @@ msgid "" "There are pending operations that could not be saved into the database, are " "you sure you want to exit?" msgstr "" +"Obstajajo operacije, ki niso mogle biti shranjene v bazo, ali res želite " +"zaključiti?" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_regular_50cl_product_template @@ -3377,6 +3405,7 @@ msgid "" "You cannot confirm all orders of this session, because they have not the " "'paid' status" msgstr "" +"Ne morete potrditi vseh naročil te seje, ker nimajo statusa 'plačano'." #. module: point_of_sale #: view:pos.order:0 @@ -3408,12 +3437,12 @@ msgstr "Fanta Zero Orange 33cl" #. module: point_of_sale #: help:product.product,available_in_pos:0 msgid "Check if you want this product to appear in the Point of Sale" -msgstr "" +msgstr "Označite, če želite da se proizvod pojavi v POS." #. module: point_of_sale #: view:report.pos.order:0 msgid "Day of order date" -msgstr "" +msgstr "Dan iz datuma naročila" #. module: point_of_sale #: model:product.template,name:point_of_sale.maes_33cl_product_template @@ -3425,7 +3454,7 @@ msgstr "Maes 33cl" #: code:addons/point_of_sale/static/src/xml/pos.xml:448 #, python-format msgid "Reject Payment" -msgstr "" +msgstr "Zavrni plačilo" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_point_config_product @@ -3512,7 +3541,7 @@ msgstr "Izpis računa" #. module: point_of_sale #: field:pos.order,pos_reference:0 msgid "Receipt Ref" -msgstr "" +msgstr "Št. računa" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_details @@ -3572,7 +3601,7 @@ msgstr "Nova seja" #. module: point_of_sale #: field:pos.config,group_by:0 msgid "Group Journal Items" -msgstr "" +msgstr "Združi postavke dnevnika" #. module: point_of_sale #: model:ir.actions.act_window,help:point_of_sale.action_pos_pos_form @@ -3594,7 +3623,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:450 #, python-format msgid "Electronic Scale" -msgstr "" +msgstr "Elektronska tehtnica" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_gazeuse_50cl_product_template @@ -3604,7 +3633,7 @@ msgstr "Spa Barisart 50cl" #. module: point_of_sale #: field:res.users,pos_config:0 msgid "Default Point of Sale" -msgstr "" +msgstr "Privzeta POS" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_box.py:23 @@ -3625,7 +3654,7 @@ msgstr "Popust Obvestilo" #. module: point_of_sale #: view:account.bank.statement:0 msgid "Cash Statement" -msgstr "" +msgstr "Blagajniški dnevnik" #. module: point_of_sale #: report:pos.details_summary:0 @@ -3676,7 +3705,7 @@ msgstr "Soda 33cl" #. module: point_of_sale #: help:pos.session,cash_register_balance_start:0 msgid "Computed using the cash control at the opening." -msgstr "" +msgstr "Izračunano z upoštevanje začetnega stanja gotovine." #. module: point_of_sale #: model:pos.category,name:point_of_sale.raisins @@ -3706,7 +3735,7 @@ msgstr "Natisni Račun" #: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" -msgstr "" +msgstr "Primanjkljaj POS" #. module: point_of_sale #: field:pos.make.payment,payment_date:0 @@ -3721,7 +3750,7 @@ msgstr "Januar" #. module: point_of_sale #: view:pos.order.line:0 msgid "POS Orders lines" -msgstr "" +msgstr "Vrstice POS" #. module: point_of_sale #: model:product.template,name:point_of_sale.chaudfontaine_petillante_33cl_product_template @@ -3736,7 +3765,7 @@ msgstr "Pepsi Max 2L" #. module: point_of_sale #: field:pos.session,details_ids:0 msgid "Cash Control" -msgstr "" +msgstr "Kontrola gotovine" #. module: point_of_sale #: model:product.template,name:point_of_sale.oetker_vegetale_product_template @@ -3763,7 +3792,7 @@ msgstr "Dobropis" #: code:addons/point_of_sale/static/src/xml/pos.xml:417 #, python-format msgid "Your shopping cart is empty" -msgstr "" +msgstr "Vaša nakupovalna lista je prazna" #. module: point_of_sale #: code:addons/point_of_sale/report/pos_invoice.py:46 @@ -3785,7 +3814,7 @@ msgstr "Pop.(%)" #. module: point_of_sale #: view:pos.session.opening:0 msgid "The session" -msgstr "" +msgstr "Seja" #. module: point_of_sale #: view:pos.order:0 @@ -3931,11 +3960,14 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Majhna slika kategorije. Avtomatično je pretvorjena v 64x64px, z " +"upoštevanjem razmerja. Uporabite to polje povsod, kjer je zahtevana majhna " +"slika." #. module: point_of_sale #: field:pos.session.opening,pos_state:0 msgid "Session Status" -msgstr "" +msgstr "Status seje" #. module: point_of_sale #: field:pos.order,picking_id:0 @@ -3979,22 +4011,22 @@ msgstr "Urejanje" #. module: point_of_sale #: view:pos.session.opening:0 msgid "Click to continue the session." -msgstr "" +msgstr "kliknite za nadaljevanje seje" #. module: point_of_sale #: view:pos.config:0 msgid "Set to Active" -msgstr "" +msgstr "Nastavi na aktivno" #. module: point_of_sale #: view:pos.category:0 msgid "Product PoS Categories" -msgstr "" +msgstr "POS-kategorija izdelkov" #. module: point_of_sale #: view:pos.session.opening:0 msgid "Start Selling" -msgstr "" +msgstr "Prični s prodajo" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -4035,6 +4067,8 @@ msgid "" "Check this box if this journal define a payment method that can be used in " "point of sales." msgstr "" +"Označite to poje, če ta dnevnik določa način plačila, ki se lahko uporablja " +"v POS." #. module: point_of_sale #. openerp-web @@ -4075,7 +4109,7 @@ msgstr "Prodaja uporabnika za danes" #: code:addons/point_of_sale/static/src/js/screens.js:818 #, python-format msgid "Next Order" -msgstr "" +msgstr "Naslednje naročilo" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:98 @@ -4083,12 +4117,12 @@ msgstr "" #: selection:pos.session.opening,pos_state:0 #, python-format msgid "Opening Control" -msgstr "" +msgstr "Kontrola začetnega stanja" #. module: point_of_sale #: view:report.pos.order:0 msgid "Month of order date" -msgstr "" +msgstr "Mesec iz datuma naročila" #. module: point_of_sale #: view:report.pos.order:0 diff --git a/addons/point_of_sale/i18n/sq.po b/addons/point_of_sale/i18n/sq.po index d5eec4be0c6..11bfa3f4fa6 100644 --- a/addons/point_of_sale/i18n/sq.po +++ b/addons/point_of_sale/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:12+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:23+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sr.po b/addons/point_of_sale/i18n/sr.po index 5cdc3ba6efe..aad9f10a762 100644 --- a/addons/point_of_sale/i18n/sr.po +++ b/addons/point_of_sale/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sr@latin.po b/addons/point_of_sale/i18n/sr@latin.po index 3cdf9de408f..fab29c8ac56 100644 --- a/addons/point_of_sale/i18n/sr@latin.po +++ b/addons/point_of_sale/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sv.po b/addons/point_of_sale/i18n/sv.po index b48a35bad60..803947e2dc1 100644 --- a/addons/point_of_sale/i18n/sv.po +++ b/addons/point_of_sale/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/tlh.po b/addons/point_of_sale/i18n/tlh.po index b5adb0855c2..f080cd7b7eb 100644 --- a/addons/point_of_sale/i18n/tlh.po +++ b/addons/point_of_sale/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/tr.po b/addons/point_of_sale/i18n/tr.po index 525b6023776..68784d72594 100644 --- a/addons/point_of_sale/i18n/tr.po +++ b/addons/point_of_sale/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/uk.po b/addons/point_of_sale/i18n/uk.po index 1a4f0c08b9b..114db9dbcca 100644 --- a/addons/point_of_sale/i18n/uk.po +++ b/addons/point_of_sale/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/vi.po b/addons/point_of_sale/i18n/vi.po index 577952bfe13..50d7d1c395f 100644 --- a/addons/point_of_sale/i18n/vi.po +++ b/addons/point_of_sale/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/zh_CN.po b/addons/point_of_sale/i18n/zh_CN.po index f43fcb45ce4..25e27c60788 100644 --- a/addons/point_of_sale/i18n/zh_CN.po +++ b/addons/point_of_sale/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -43,6 +43,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 单击定义一个新的产品类别。\n" +"

\n" +" 产品类别用于通过触摸屏浏览产品。\n" +"

\n" +" " +"为产品类别上传图片后,触摸屏布局将会自动调整。因此,针对分辨率小于(1024x768)的显示设备,我们建议不要为产品类别上传图片。\n" +"

\n" +" " #. module: point_of_sale #: view:pos.receipt:0 @@ -52,7 +61,7 @@ msgstr "打印销售订单的收据" #. module: point_of_sale #: field:pos.session,cash_register_balance_end:0 msgid "Computed Balance" -msgstr "" +msgstr "计算余额" #. module: point_of_sale #: view:pos.session:0 @@ -63,7 +72,7 @@ msgstr "今天" #. module: point_of_sale #: field:pos.config,iface_electronic_scale:0 msgid "Electronic Scale Interface" -msgstr "" +msgstr "电子称接口" #. module: point_of_sale #: model:pos.category,name:point_of_sale.plain_water @@ -86,7 +95,7 @@ msgstr "" #: field:pos.config,journal_id:0 #: field:pos.order,sale_journal:0 msgid "Sale Journal" -msgstr "" +msgstr "销售日记账" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_2l_product_template @@ -103,7 +112,7 @@ msgstr "销售详情" #. module: point_of_sale #: constraint:pos.config:0 msgid "You cannot have two cash controls in one Point Of Sale !" -msgstr "" +msgstr "同一个销售点不能使用两个钱箱" #. module: point_of_sale #: field:pos.payment.report.user,user_id:0 @@ -112,7 +121,7 @@ msgstr "" #: view:report.pos.order:0 #: field:report.pos.order,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "销售员" #. module: point_of_sale #: view:report.pos.order:0 @@ -129,13 +138,13 @@ msgstr "产品名称" #. module: point_of_sale #: model:product.template,name:point_of_sale.pamplemousse_rouge_pamplemousse_product_template msgid "Red grapefruit" -msgstr "" +msgstr "红葡萄柚" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" -msgstr "" +msgstr "使用自定义的条码" #. module: point_of_sale #: view:pos.session.opening:0 @@ -165,12 +174,12 @@ msgstr "取钱" #: code:addons/point_of_sale/point_of_sale.py:105 #, python-format msgid "not used" -msgstr "" +msgstr "未被使用" #. module: point_of_sale #: field:pos.config,iface_vkeyboard:0 msgid "Virtual KeyBoard Interface" -msgstr "" +msgstr "虚拟键盘接口" #. module: point_of_sale #. openerp-web @@ -182,7 +191,7 @@ msgstr "+/-" #. module: point_of_sale #: field:pos.ean_wizard,ean13_pattern:0 msgid "Reference" -msgstr "" +msgstr "单号" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:1066 @@ -201,32 +210,32 @@ msgstr "开始日期" #. module: point_of_sale #: constraint:pos.session:0 msgid "You cannot create two active sessions with the same responsible!" -msgstr "" +msgstr "同一个负责人不能创建两个活动销售会话" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:473 #, python-format msgid "Weighting" -msgstr "" +msgstr "称重" #. module: point_of_sale #: model:product.template,name:point_of_sale.fenouil_fenouil_product_template msgid "Fennel" -msgstr "" +msgstr "小茴香" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:472 #, python-format msgid "Help needed" -msgstr "" +msgstr "需要帮助" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "设置错误!" #. module: point_of_sale #: report:account.statement:0 @@ -238,7 +247,7 @@ msgstr "业务伙伴" #. module: point_of_sale #: view:pos.session:0 msgid "Closing Cash Control" -msgstr "" +msgstr "关闭现金箱" #. module: point_of_sale #: report:pos.details:0 @@ -267,7 +276,7 @@ msgstr "" #. module: point_of_sale #: field:pos.session.opening,show_config:0 msgid "Show Config" -msgstr "" +msgstr "显示配置" #. module: point_of_sale #: report:pos.lines:0 @@ -285,7 +294,7 @@ msgstr "折扣合计" #: code:addons/point_of_sale/static/src/xml/pos.xml:441 #, python-format msgid "Debug Window" -msgstr "" +msgstr "调试窗口" #. module: point_of_sale #. openerp-web @@ -293,7 +302,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:613 #, python-format msgid "Change:" -msgstr "零钞" +msgstr "找零:" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_regular_2l_product_template @@ -326,7 +335,7 @@ msgstr "折扣(%)" #: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "请为这个产品定义收益科目:\"%s\" (id:%d)." #. module: point_of_sale #: view:report.pos.order:0 @@ -344,7 +353,7 @@ msgstr "Leffe Brune 33cl" msgid "" "Check this if this point of sale should open by default in a self checkout " "mode. If unchecked, OpenERP uses the normal cashier mode by default." -msgstr "" +msgstr "如果需要把自助收银作为默认模式,请选中这里。 如果未选, OpenERP 将使用普通收银员作为默认模式。" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_sales_user @@ -361,7 +370,7 @@ msgstr "饮料类" #: model:ir.actions.act_window,name:point_of_sale.action_pos_session_opening #: model:ir.ui.menu,name:point_of_sale.menu_pos_session_opening msgid "Your Session" -msgstr "" +msgstr "您的销售会话" #. module: point_of_sale #: model:product.template,name:point_of_sale.stella_50cl_product_template @@ -383,7 +392,7 @@ msgstr "上级类别" #: code:addons/point_of_sale/static/src/xml/pos.xml:482 #, python-format msgid "Open Cashbox" -msgstr "" +msgstr "打开钱箱" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:536 @@ -396,7 +405,7 @@ msgstr "" #. module: point_of_sale #: view:pos.session.opening:0 msgid "Select your Point of Sale" -msgstr "" +msgstr "选择您的销售点" #. module: point_of_sale #: field:report.sales.by.margin.pos,total:0 @@ -420,25 +429,25 @@ msgstr "Dr. Oetker Ristorante Speciale" #: code:addons/point_of_sale/static/src/xml/pos.xml:480 #, python-format msgid "Payment Request" -msgstr "" +msgstr "付款请求" #. module: point_of_sale #: field:product.product,to_weight:0 msgid "To Weight" -msgstr "" +msgstr "需要称重" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:476 #, python-format msgid "Hardware Events" -msgstr "" +msgstr "硬件事件" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:301 #, python-format msgid "You should assign a Point of Sale to your session." -msgstr "" +msgstr "您需要为您的销售会话指定一个销售点" #. module: point_of_sale #: view:pos.order.line:0 @@ -475,7 +484,7 @@ msgstr "" #: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" -msgstr "" +msgstr "错误!" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_report_sales_by_user_pos_month @@ -497,12 +506,12 @@ msgstr "" #. module: point_of_sale #: model:product.template,name:point_of_sale.Onions_product_template msgid "Onions" -msgstr "" +msgstr "洋葱" #. module: point_of_sale #: view:pos.session:0 msgid "Validate & Open Session" -msgstr "" +msgstr "验证并打开销售会话" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:99 @@ -510,18 +519,18 @@ msgstr "" #: selection:pos.session.opening,pos_state:0 #, python-format msgid "In Progress" -msgstr "" +msgstr "进行中" #. module: point_of_sale #: view:pos.session:0 #: field:pos.session,opening_details_ids:0 msgid "Opening Cash Control" -msgstr "" +msgstr "正在打开钱箱" #. module: point_of_sale #: help:res.users,ean13:0 msgid "BarCode" -msgstr "" +msgstr "条码" #. module: point_of_sale #: help:pos.category,image_medium:0 @@ -534,19 +543,19 @@ msgstr "" #. module: point_of_sale #: view:pos.session.opening:0 msgid "Open Session" -msgstr "" +msgstr "打开销售会话" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_point_of_sale msgid "Daily Operations" -msgstr "每天经营" +msgstr "日常经营" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:42 #, python-format msgid "Google Chrome" -msgstr "" +msgstr "Google Chrome" #. module: point_of_sale #: model:pos.category,name:point_of_sale.sparkling_water @@ -569,7 +578,7 @@ msgstr "查询现金对账单" #: field:pos.session.opening,pos_state_str:0 #: field:report.pos.order,state:0 msgid "Status" -msgstr "" +msgstr "状态" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -594,14 +603,14 @@ msgstr "POS单明细" #. module: point_of_sale #: view:pos.config:0 msgid "Point of Sale Configuration" -msgstr "" +msgstr "销售点配置" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:359 #, python-format msgid "Your order has to be validated by a cashier." -msgstr "" +msgstr "您的订单已被收银员确认" #. module: point_of_sale #: model:product.template,name:point_of_sale.fanta_orange_50cl_product_template @@ -645,7 +654,7 @@ msgstr "客户发票" msgid "" "You can continue sales from the touchscreen interface by clicking on \"Start " "Selling\" or close the cash register session." -msgstr "" +msgstr "通过触摸屏幕的“开始销售”或者关闭钱箱之后您就可以继续进行销售。" #. module: point_of_sale #: report:account.statement:0 @@ -657,7 +666,7 @@ msgstr "结束日期" #. module: point_of_sale #: view:pos.session:0 msgid "Opening Cashbox Lines" -msgstr "" +msgstr "正在打开钱箱" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -704,7 +713,7 @@ msgstr "行号" #: code:addons/point_of_sale/static/src/xml/pos.xml:453 #, python-format msgid "Set Weight" -msgstr "" +msgstr "设置重量" #. module: point_of_sale #: view:account.bank.statement:0 @@ -719,7 +728,7 @@ msgstr "净合计:" #. module: point_of_sale #: model:ir.actions.client,name:point_of_sale.action_client_pos_menu msgid "Open POS Menu" -msgstr "" +msgstr "打开销售点菜单" #. module: point_of_sale #: report:pos.details_summary:0 @@ -736,12 +745,12 @@ msgstr "发表POS机日记帐分录" #: code:addons/point_of_sale/static/src/xml/pos.xml:457 #, python-format msgid "Barcode Scanner" -msgstr "" +msgstr "条码扫描器" #. module: point_of_sale #: model:product.template,name:point_of_sale.pomme_granny_smith_product_template msgid "Granny Smith apples" -msgstr "" +msgstr "Granny Smith 苹果" #. module: point_of_sale #: help:product.product,expense_pdt:0 @@ -765,11 +774,13 @@ msgid "" "use\n" " a modern browser like" msgstr "" +"销售点功能不支持 Microsoft Internet Explorer 浏览器,请使用更现代化的浏览器如:Mozilla Firefox 和 " +"Google Chrome 等" #. module: point_of_sale #: view:pos.session.opening:0 msgid "Click to start a session." -msgstr "" +msgstr "单击开始销售会话" #. module: point_of_sale #: view:pos.details:0 @@ -804,7 +815,7 @@ msgstr "新增产品" #. module: point_of_sale #: field:pos.config,name:0 msgid "Point of Sale Name" -msgstr "" +msgstr "销售点名称" #. module: point_of_sale #: field:report.transaction.pos,invoice_am:0 @@ -858,7 +869,7 @@ msgstr "期末结余" #: code:addons/point_of_sale/wizard/pos_box_out.py:89 #, python-format msgid "please check that account is set to %s." -msgstr "" +msgstr "请检查该科目已经设为为:%s" #. module: point_of_sale #: help:pos.category,image:0 @@ -896,7 +907,7 @@ msgstr "" #. module: point_of_sale #: view:pos.ean_wizard:0 msgid "Ean13 Generator" -msgstr "" +msgstr "条码生成器" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_1l_product_template @@ -912,7 +923,7 @@ msgstr "错误:无效的EAN编码" #. module: point_of_sale #: model:pos.category,name:point_of_sale.legumes_racine msgid "Root vegetables" -msgstr "" +msgstr "根类蔬菜" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.act_pos_open_statement @@ -967,12 +978,12 @@ msgstr "付款合计" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_session_opening msgid "pos.session.opening" -msgstr "" +msgstr "pos.session.opening" #. module: point_of_sale #: view:res.users:0 msgid "Edit EAN" -msgstr "" +msgstr "编辑条码" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_open_statement.py:80 @@ -998,7 +1009,7 @@ msgstr "" #. module: point_of_sale #: field:pos.session.opening,pos_session_id:0 msgid "PoS Session" -msgstr "" +msgstr "销售点会话" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -1050,7 +1061,7 @@ msgstr "增加一个全局折扣" #. module: point_of_sale #: view:pos.config:0 msgid "Journals" -msgstr "" +msgstr "日记账" #. module: point_of_sale #: model:product.template,name:point_of_sale.oetker_prosciutto_product_template @@ -1080,7 +1091,7 @@ msgstr "" #. module: point_of_sale #: view:product.product:0 msgid "Set a Custom EAN" -msgstr "" +msgstr "设置自定义条码" #. module: point_of_sale #. openerp-web @@ -1092,7 +1103,7 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.legumes msgid "Fresh vegetables" -msgstr "" +msgstr "新鲜蔬菜" #. module: point_of_sale #: view:pos.session:0 @@ -1104,7 +1115,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:478 #, python-format msgid "Scan Item Success" -msgstr "" +msgstr "扫描条目成功" #. module: point_of_sale #: report:account.statement:0 @@ -1116,22 +1127,22 @@ msgstr "期初余额" #. module: point_of_sale #: model:product.template,name:point_of_sale.lays_naturel_oven_150g_product_template msgid "Oven Baked Lays Natural 150g" -msgstr "" +msgstr "Oven Baked Lays Natural 150g" #. module: point_of_sale #: sql_constraint:pos.session:0 msgid "The name of this POS Session must be unique !" -msgstr "" +msgstr "销售会话名称必须唯一" #. module: point_of_sale #: view:pos.session:0 msgid "Opening Subtotal" -msgstr "" +msgstr "小计" #. module: point_of_sale #: view:pos.session:0 msgid "payment method." -msgstr "" +msgstr "付款方式" #. module: point_of_sale #: view:pos.order:0 @@ -1176,12 +1187,12 @@ msgstr "折扣" #. module: point_of_sale #: view:pos.order:0 msgid "(update)" -msgstr "" +msgstr "(更新)" #. module: point_of_sale #: model:product.template,name:point_of_sale.ijsboerke_vanille_2,5l_product_template msgid "IJsboerke Vanilla 2.5L" -msgstr "" +msgstr "IJsboerke Vanilla 2.5L" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_report_pos_details @@ -1192,7 +1203,7 @@ msgstr "销售详情" #. module: point_of_sale #: model:product.template,name:point_of_sale.evian_2l_product_template msgid "2L Evian" -msgstr "" +msgstr "2L 依云" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 @@ -1200,7 +1211,7 @@ msgstr "" #: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" -msgstr "" +msgstr "启动销售点" #. module: point_of_sale #: model:pos.category,name:point_of_sale.pils @@ -1261,14 +1272,14 @@ msgstr "Chaudfontaine Petillante 50cl" #: code:addons/point_of_sale/static/src/xml/pos.xml:485 #, python-format msgid "Read Weighting Scale" -msgstr "" +msgstr "读取电子秤" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:426 #, python-format msgid "0.00 €" -msgstr "" +msgstr "0.00 €" #. module: point_of_sale #: field:pos.order.line,create_date:0 @@ -1286,7 +1297,7 @@ msgstr "今天的销售情况" #: code:addons/point_of_sale/static/src/xml/pos.xml:324 #, python-format msgid "Welcome" -msgstr "" +msgstr "欢迎" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 @@ -1341,7 +1352,7 @@ msgstr "已开票合计" #: model:ir.model,name:point_of_sale.model_pos_category #: field:product.product,pos_categ_id:0 msgid "Point of Sale Category" -msgstr "" +msgstr "销售点商品分类" #. module: point_of_sale #: view:report.pos.order:0 @@ -1361,7 +1372,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:324 #, python-format msgid "Choose your type of receipt:" -msgstr "" +msgstr "选择小票类型" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_sales_by_margin_pos_month @@ -1398,7 +1409,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:479 #, python-format msgid "Scan Item Unrecognized" -msgstr "" +msgstr "未能识别扫描的条目" #. module: point_of_sale #: report:all.closed.cashbox.of.the.day:0 @@ -1442,7 +1453,7 @@ msgstr "开启日期" #: model:ir.actions.act_window,name:point_of_sale.action_pos_session #: model:ir.ui.menu,name:point_of_sale.menu_pos_session_all msgid "All Sessions" -msgstr "" +msgstr "全部销售会话" #. module: point_of_sale #. openerp-web @@ -1461,7 +1472,7 @@ msgstr "税:" #: code:addons/point_of_sale/static/src/xml/pos.xml:271 #, python-format msgid "Thank you for shopping with us." -msgstr "" +msgstr "感谢您的光临。" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_light_2l_product_template @@ -1477,7 +1488,7 @@ msgstr "Dr. Oetker Ristorante Funghi" #: model:ir.actions.act_window,name:point_of_sale.pos_category_action #: model:ir.ui.menu,name:point_of_sale.menu_pos_category msgid "Product Categories" -msgstr "" +msgstr "商品类别" #. module: point_of_sale #: help:pos.config,journal_id:0 @@ -1494,7 +1505,7 @@ msgstr "折扣" #: code:addons/point_of_sale/static/src/xml/pos.xml:467 #, python-format msgid "Invalid Ean" -msgstr "" +msgstr "无效的条码" #. module: point_of_sale #: model:product.template,name:point_of_sale.lindemans_kriek_37,5cl_product_template @@ -1504,7 +1515,7 @@ msgstr "Lindemans Kriek 37.5cl" #. module: point_of_sale #: view:pos.config:0 msgid "Point of Sale Config" -msgstr "" +msgstr "销售点配置" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_zero_33cl_product_template @@ -1552,7 +1563,7 @@ msgstr "税:" #. module: point_of_sale #: view:pos.session:0 msgid "+ Transactions" -msgstr "" +msgstr "+ 交易" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_discount @@ -1589,12 +1600,12 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:194 #, python-format msgid "Kg" -msgstr "" +msgstr "千克" #. module: point_of_sale #: field:product.product,available_in_pos:0 msgid "Available in the Point of Sale" -msgstr "" +msgstr "可在销售点销售" #. module: point_of_sale #: selection:pos.config,state:0 @@ -1611,7 +1622,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:338 #, python-format msgid "The scanned product was not recognized" -msgstr "" +msgstr "无法识别扫描的商品" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_transaction_pos @@ -1661,7 +1672,7 @@ msgstr "11月" #: code:addons/point_of_sale/static/src/xml/pos.xml:267 #, python-format msgid "Please scan an item or your member card" -msgstr "" +msgstr "请扫描商品或您的会员卡" #. module: point_of_sale #: model:product.template,name:point_of_sale.poivron_verts_product_template @@ -1703,7 +1714,7 @@ msgstr "" #: view:pos.config:0 #: selection:pos.config,state:0 msgid "Inactive" -msgstr "" +msgstr "不活跃的" #. module: point_of_sale #. openerp-web @@ -1727,7 +1738,7 @@ msgstr "取消" #: code:addons/point_of_sale/static/src/xml/pos.xml:296 #, python-format msgid "Please put your product on the scale" -msgstr "" +msgstr "请将商品放到称上" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_details_summary @@ -1754,7 +1765,7 @@ msgstr "Timmermans Kriek 37.5cl" #. module: point_of_sale #: field:pos.config,sequence_id:0 msgid "Order IDs Sequence" -msgstr "" +msgstr "订单号序列" #. module: point_of_sale #: report:pos.invoice:0 @@ -3510,7 +3521,7 @@ msgstr "销售明细" #: view:res.partner:0 #: view:res.users:0 msgid "Point of Sale" -msgstr "POS" +msgstr "销售点" #. module: point_of_sale #: view:pos.order:0 diff --git a/addons/point_of_sale/i18n/zh_HK.po b/addons/point_of_sale/i18n/zh_HK.po index 97bab53698d..0f56e81d933 100644 --- a/addons/point_of_sale/i18n/zh_HK.po +++ b/addons/point_of_sale/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/zh_TW.po b/addons/point_of_sale/i18n/zh_TW.po index 86a1c2a947b..27646aa7be2 100644 --- a/addons/point_of_sale/i18n/zh_TW.po +++ b/addons/point_of_sale/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:24+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/portal/i18n/ar.po b/addons/portal/i18n/ar.po index 6e4d5613de0..f36ef2cb477 100644 --- a/addons/portal/i18n/ar.po +++ b/addons/portal/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/bg.po b/addons/portal/i18n/bg.po index 2e1cddbb704..e77eb031385 100644 --- a/addons/portal/i18n/bg.po +++ b/addons/portal/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/bs.po b/addons/portal/i18n/bs.po index 0b4e439cfdd..33d84054b3e 100644 --- a/addons/portal/i18n/bs.po +++ b/addons/portal/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/ca.po b/addons/portal/i18n/ca.po index 95fd56b39b9..764564b0b8d 100644 --- a/addons/portal/i18n/ca.po +++ b/addons/portal/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/cs.po b/addons/portal/i18n/cs.po index badc3ab676b..9fdc89374ed 100644 --- a/addons/portal/i18n/cs.po +++ b/addons/portal/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/da.po b/addons/portal/i18n/da.po index fd5b79c99f9..9b6781186fd 100644 --- a/addons/portal/i18n/da.po +++ b/addons/portal/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/de.po b/addons/portal/i18n/de.po index 78f40f0ebbb..bcf6836cf45 100644 --- a/addons/portal/i18n/de.po +++ b/addons/portal/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/es.po b/addons/portal/i18n/es.po index 533361c83ca..d2f5fd4c73f 100644 --- a/addons/portal/i18n/es.po +++ b/addons/portal/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/es_CR.po b/addons/portal/i18n/es_CR.po index 9ce41a1ac77..6d117fcce8d 100644 --- a/addons/portal/i18n/es_CR.po +++ b/addons/portal/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/et.po b/addons/portal/i18n/et.po index 64d72bab3dd..5adf9b9c88d 100644 --- a/addons/portal/i18n/et.po +++ b/addons/portal/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/fi.po b/addons/portal/i18n/fi.po index 522a9175c86..3005018b3e0 100644 --- a/addons/portal/i18n/fi.po +++ b/addons/portal/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/fr.po b/addons/portal/i18n/fr.po index 4330d159423..4f08203251c 100644 --- a/addons/portal/i18n/fr.po +++ b/addons/portal/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/hr.po b/addons/portal/i18n/hr.po index c3c25ae72a2..e5eaa6b0588 100644 --- a/addons/portal/i18n/hr.po +++ b/addons/portal/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/hu.po b/addons/portal/i18n/hu.po index f0285f451cf..db715ea0809 100644 --- a/addons/portal/i18n/hu.po +++ b/addons/portal/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/id.po b/addons/portal/i18n/id.po index 3d81d73cf0d..d10ee83459a 100644 --- a/addons/portal/i18n/id.po +++ b/addons/portal/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/it.po b/addons/portal/i18n/it.po index c21f451c638..e32ddf3d48c 100644 --- a/addons/portal/i18n/it.po +++ b/addons/portal/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/ja.po b/addons/portal/i18n/ja.po index 9d05f16f9b1..ee311ade704 100644 --- a/addons/portal/i18n/ja.po +++ b/addons/portal/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 06:30+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/ko.po b/addons/portal/i18n/ko.po index a4b2e12c2dd..8f245fb6ae8 100644 --- a/addons/portal/i18n/ko.po +++ b/addons/portal/i18n/ko.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-05-14 01:13+0000\n" -"Last-Translator: AhnJD \n" +"Last-Translator: AhnJD \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/lo.po b/addons/portal/i18n/lo.po index 33cf7d07d30..eadcb8460ab 100644 --- a/addons/portal/i18n/lo.po +++ b/addons/portal/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/lt.po b/addons/portal/i18n/lt.po index 369c00bb279..3b8f7711c41 100644 --- a/addons/portal/i18n/lt.po +++ b/addons/portal/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/mk.po b/addons/portal/i18n/mk.po index 9ec6274fad2..a9da7af7b5b 100644 --- a/addons/portal/i18n/mk.po +++ b/addons/portal/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: portal diff --git a/addons/portal/i18n/mn.po b/addons/portal/i18n/mn.po index a4410cd9138..69dea04d1c6 100644 --- a/addons/portal/i18n/mn.po +++ b/addons/portal/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/nl.po b/addons/portal/i18n/nl.po index 4610317a406..61bb53d9f4a 100644 --- a/addons/portal/i18n/nl.po +++ b/addons/portal/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-08-08 09:58+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-09 05:35+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/pl.po b/addons/portal/i18n/pl.po index ef250594314..887ec525a70 100644 --- a/addons/portal/i18n/pl.po +++ b/addons/portal/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: portal diff --git a/addons/portal/i18n/pt.po b/addons/portal/i18n/pt.po index c70a890ff6b..6b3eb7db4e3 100644 --- a/addons/portal/i18n/pt.po +++ b/addons/portal/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/pt_BR.po b/addons/portal/i18n/pt_BR.po index bf8dec9ece1..d9833e0b2eb 100644 --- a/addons/portal/i18n/pt_BR.po +++ b/addons/portal/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 21:07+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/ro.po b/addons/portal/i18n/ro.po index 5342c921a4b..fdcf52f47b4 100644 --- a/addons/portal/i18n/ro.po +++ b/addons/portal/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 19:30+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/ru.po b/addons/portal/i18n/ru.po index 6cea116d399..aeb1d38cb18 100644 --- a/addons/portal/i18n/ru.po +++ b/addons/portal/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/sl.po b/addons/portal/i18n/sl.po index d04191c9a98..8c0ccac05e6 100644 --- a/addons/portal/i18n/sl.po +++ b/addons/portal/i18n/sl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: portal diff --git a/addons/portal/i18n/sr.po b/addons/portal/i18n/sr.po index a343ec54cb7..5fae005ba22 100644 --- a/addons/portal/i18n/sr.po +++ b/addons/portal/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/sv.po b/addons/portal/i18n/sv.po index ef9e93e4430..9149f1c75e5 100644 --- a/addons/portal/i18n/sv.po +++ b/addons/portal/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/th.po b/addons/portal/i18n/th.po index 8357fbb9530..1bcba550d96 100644 --- a/addons/portal/i18n/th.po +++ b/addons/portal/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/tr.po b/addons/portal/i18n/tr.po index 16b61725fe6..35b7c881536 100644 --- a/addons/portal/i18n/tr.po +++ b/addons/portal/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-12 06:34+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/uk.po b/addons/portal/i18n/uk.po index ceac3ab3e4c..79de1a1f555 100644 --- a/addons/portal/i18n/uk.po +++ b/addons/portal/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/zh_CN.po b/addons/portal/i18n/zh_CN.po index 24a49bd599e..96a1f67d920 100644 --- a/addons/portal/i18n/zh_CN.po +++ b/addons/portal/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/zh_TW.po b/addons/portal/i18n/zh_TW.po index 19c3db04178..26479e0e2ff 100644 --- a/addons/portal/i18n/zh_TW.po +++ b/addons/portal/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal_anonymous/i18n/cs.po b/addons/portal_anonymous/i18n/cs.po index f9e0982c3ca..35682147088 100644 --- a/addons/portal_anonymous/i18n/cs.po +++ b/addons/portal_anonymous/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/da.po b/addons/portal_anonymous/i18n/da.po index 0845406b2bd..dfd78a204d8 100644 --- a/addons/portal_anonymous/i18n/da.po +++ b/addons/portal_anonymous/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/de.po b/addons/portal_anonymous/i18n/de.po index 8fe3ee1443e..e5e61aca089 100644 --- a/addons/portal_anonymous/i18n/de.po +++ b/addons/portal_anonymous/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-03 06:08+0000\n" -"X-Generator: Launchpad (build 16753)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/en_AU.po b/addons/portal_anonymous/i18n/en_AU.po index a5c9e90b687..939441be3ed 100644 --- a/addons/portal_anonymous/i18n/en_AU.po +++ b/addons/portal_anonymous/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/en_GB.po b/addons/portal_anonymous/i18n/en_GB.po index 89cf2ad0fca..ef00ba402cd 100644 --- a/addons/portal_anonymous/i18n/en_GB.po +++ b/addons/portal_anonymous/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/es.po b/addons/portal_anonymous/i18n/es.po index 58df3a46665..edcac0d46c4 100644 --- a/addons/portal_anonymous/i18n/es.po +++ b/addons/portal_anonymous/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/fr.po b/addons/portal_anonymous/i18n/fr.po index fb68a4c0dbd..560f5fa429d 100644 --- a/addons/portal_anonymous/i18n/fr.po +++ b/addons/portal_anonymous/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/hr.po b/addons/portal_anonymous/i18n/hr.po index 4040d63c01e..f143020572c 100644 --- a/addons/portal_anonymous/i18n/hr.po +++ b/addons/portal_anonymous/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/hu.po b/addons/portal_anonymous/i18n/hu.po index 14253b6f480..12fa15041bb 100644 --- a/addons/portal_anonymous/i18n/hu.po +++ b/addons/portal_anonymous/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/lt.po b/addons/portal_anonymous/i18n/lt.po index 580ba374e31..aaaf8cd001b 100644 --- a/addons/portal_anonymous/i18n/lt.po +++ b/addons/portal_anonymous/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/mk.po b/addons/portal_anonymous/i18n/mk.po index 12bb04b2222..d8aa642ef6e 100644 --- a/addons/portal_anonymous/i18n/mk.po +++ b/addons/portal_anonymous/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/mn.po b/addons/portal_anonymous/i18n/mn.po index e898f172888..a9fe2b6bdee 100644 --- a/addons/portal_anonymous/i18n/mn.po +++ b/addons/portal_anonymous/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/nl.po b/addons/portal_anonymous/i18n/nl.po index efbaea42de7..474b7803626 100644 --- a/addons/portal_anonymous/i18n/nl.po +++ b/addons/portal_anonymous/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-22 21:36+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/pl.po b/addons/portal_anonymous/i18n/pl.po index e8d52343b38..8b04c1d9a07 100644 --- a/addons/portal_anonymous/i18n/pl.po +++ b/addons/portal_anonymous/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous diff --git a/addons/portal_anonymous/i18n/pt.po b/addons/portal_anonymous/i18n/pt.po index d319f3bc67b..e786eaa3741 100644 --- a/addons/portal_anonymous/i18n/pt.po +++ b/addons/portal_anonymous/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/pt_BR.po b/addons/portal_anonymous/i18n/pt_BR.po index d71f4a0e6ef..54dd55c936f 100644 --- a/addons/portal_anonymous/i18n/pt_BR.po +++ b/addons/portal_anonymous/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/ro.po b/addons/portal_anonymous/i18n/ro.po index d26dcb0f6a5..972b9ccb641 100644 --- a/addons/portal_anonymous/i18n/ro.po +++ b/addons/portal_anonymous/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-09 14:58+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/ru.po b/addons/portal_anonymous/i18n/ru.po index 3e595cfc66f..7f536cdc2c6 100644 --- a/addons/portal_anonymous/i18n/ru.po +++ b/addons/portal_anonymous/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/sl.po b/addons/portal_anonymous/i18n/sl.po index 8f55d2d60da..aa9c661e4c1 100644 --- a/addons/portal_anonymous/i18n/sl.po +++ b/addons/portal_anonymous/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/sv.po b/addons/portal_anonymous/i18n/sv.po index db924fcce3a..b58aadff1c8 100644 --- a/addons/portal_anonymous/i18n/sv.po +++ b/addons/portal_anonymous/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/th.po b/addons/portal_anonymous/i18n/th.po index 695455dfbb7..bb4b41df043 100644 --- a/addons/portal_anonymous/i18n/th.po +++ b/addons/portal_anonymous/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/tr.po b/addons/portal_anonymous/i18n/tr.po index ae9b41602fd..df19708332c 100644 --- a/addons/portal_anonymous/i18n/tr.po +++ b/addons/portal_anonymous/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/zh_CN.po b/addons/portal_anonymous/i18n/zh_CN.po index 1a6119b2499..e8d7ca42158 100644 --- a/addons/portal_anonymous/i18n/zh_CN.po +++ b/addons/portal_anonymous/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-03 15:17+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_claim/i18n/cs.po b/addons/portal_claim/i18n/cs.po index e97804aebcc..cd86875b5ed 100644 --- a/addons/portal_claim/i18n/cs.po +++ b/addons/portal_claim/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/de.po b/addons/portal_claim/i18n/de.po index 892bdfd834d..3b879bcdc47 100644 --- a/addons/portal_claim/i18n/de.po +++ b/addons/portal_claim/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/en_GB.po b/addons/portal_claim/i18n/en_GB.po index 7b8eb952a2c..8daeb72dbb1 100644 --- a/addons/portal_claim/i18n/en_GB.po +++ b/addons/portal_claim/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/es.po b/addons/portal_claim/i18n/es.po index 65fe32738ee..b85aa163ae5 100644 --- a/addons/portal_claim/i18n/es.po +++ b/addons/portal_claim/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/fr.po b/addons/portal_claim/i18n/fr.po index 61afaf547fa..a615c0f39ce 100644 --- a/addons/portal_claim/i18n/fr.po +++ b/addons/portal_claim/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/hr.po b/addons/portal_claim/i18n/hr.po index 271694727ea..284bc4326f4 100644 --- a/addons/portal_claim/i18n/hr.po +++ b/addons/portal_claim/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/hu.po b/addons/portal_claim/i18n/hu.po index 0d73359061f..dff67a9f158 100644 --- a/addons/portal_claim/i18n/hu.po +++ b/addons/portal_claim/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/it.po b/addons/portal_claim/i18n/it.po index 8d49a2440bc..ee5907ae71b 100644 --- a/addons/portal_claim/i18n/it.po +++ b/addons/portal_claim/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/mk.po b/addons/portal_claim/i18n/mk.po index 1101c396b62..c90ca7b7403 100644 --- a/addons/portal_claim/i18n/mk.po +++ b/addons/portal_claim/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/nl.po b/addons/portal_claim/i18n/nl.po index a35c89f1a95..8403457b0d9 100644 --- a/addons/portal_claim/i18n/nl.po +++ b/addons/portal_claim/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-24 13:13+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/pl.po b/addons/portal_claim/i18n/pl.po index 194f2eb7b61..337ffa37363 100644 --- a/addons/portal_claim/i18n/pl.po +++ b/addons/portal_claim/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/pt.po b/addons/portal_claim/i18n/pt.po index 2ec4516054c..6f7fafec198 100644 --- a/addons/portal_claim/i18n/pt.po +++ b/addons/portal_claim/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/pt_BR.po b/addons/portal_claim/i18n/pt_BR.po index ecca314397b..ce2b26aeee8 100644 --- a/addons/portal_claim/i18n/pt_BR.po +++ b/addons/portal_claim/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-22 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/ro.po b/addons/portal_claim/i18n/ro.po index f658ad8f576..53cdfb6e6b5 100644 --- a/addons/portal_claim/i18n/ro.po +++ b/addons/portal_claim/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-09 15:01+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/sl.po b/addons/portal_claim/i18n/sl.po index a4995150d12..75360d008ec 100644 --- a/addons/portal_claim/i18n/sl.po +++ b/addons/portal_claim/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/tr.po b/addons/portal_claim/i18n/tr.po index b74f04defc5..b9560832858 100644 --- a/addons/portal_claim/i18n/tr.po +++ b/addons/portal_claim/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/zh_CN.po b/addons/portal_claim/i18n/zh_CN.po index 294bc4ec411..8f5f3676fa9 100644 --- a/addons/portal_claim/i18n/zh_CN.po +++ b/addons/portal_claim/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_crm/i18n/bs.po b/addons/portal_crm/i18n/bs.po index 01cb3faa41e..6dbf6756af9 100644 --- a/addons/portal_crm/i18n/bs.po +++ b/addons/portal_crm/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-07 05:03+0000\n" -"X-Generator: Launchpad (build 16721)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/cs.po b/addons/portal_crm/i18n/cs.po index 3e62ef3db8e..0a41f222b70 100644 --- a/addons/portal_crm/i18n/cs.po +++ b/addons/portal_crm/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/de.po b/addons/portal_crm/i18n/de.po index 9a25b181750..411c830995c 100644 --- a/addons/portal_crm/i18n/de.po +++ b/addons/portal_crm/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-09 05:49+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/es.po b/addons/portal_crm/i18n/es.po index 6fa4991a699..51dc9f77f2f 100644 --- a/addons/portal_crm/i18n/es.po +++ b/addons/portal_crm/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/fr.po b/addons/portal_crm/i18n/fr.po index d0d71799a87..fd1cf77dff1 100644 --- a/addons/portal_crm/i18n/fr.po +++ b/addons/portal_crm/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-15 05:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/hr.po b/addons/portal_crm/i18n/hr.po index f3e7068db78..1045d5d62db 100644 --- a/addons/portal_crm/i18n/hr.po +++ b/addons/portal_crm/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-27 06:16+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/hu.po b/addons/portal_crm/i18n/hu.po index a198288cbfd..2bcda6c708e 100644 --- a/addons/portal_crm/i18n/hu.po +++ b/addons/portal_crm/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/lt.po b/addons/portal_crm/i18n/lt.po index cf6e5200c8d..9cc021cbcd3 100644 --- a/addons/portal_crm/i18n/lt.po +++ b/addons/portal_crm/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/mk.po b/addons/portal_crm/i18n/mk.po index ced6c1078aa..d0e32a21c0e 100644 --- a/addons/portal_crm/i18n/mk.po +++ b/addons/portal_crm/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/nl.po b/addons/portal_crm/i18n/nl.po index b62ac0e13b1..a262dae5da6 100644 --- a/addons/portal_crm/i18n/nl.po +++ b/addons/portal_crm/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-19 05:27+0000\n" -"X-Generator: Launchpad (build 16807)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/pl.po b/addons/portal_crm/i18n/pl.po index 9736e8a8420..94bd8f05250 100644 --- a/addons/portal_crm/i18n/pl.po +++ b/addons/portal_crm/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/pt.po b/addons/portal_crm/i18n/pt.po index 3129bebccf3..92b65aec5b7 100644 --- a/addons/portal_crm/i18n/pt.po +++ b/addons/portal_crm/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/pt_BR.po b/addons/portal_crm/i18n/pt_BR.po index 72210e36e81..d990dfe7d75 100644 --- a/addons/portal_crm/i18n/pt_BR.po +++ b/addons/portal_crm/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 21:07+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/ro.po b/addons/portal_crm/i18n/ro.po index 3d90f965f98..b249178b42a 100644 --- a/addons/portal_crm/i18n/ro.po +++ b/addons/portal_crm/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 19:28+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/sl.po b/addons/portal_crm/i18n/sl.po index 67ea1f06a34..ca04aec799c 100644 --- a/addons/portal_crm/i18n/sl.po +++ b/addons/portal_crm/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/sv.po b/addons/portal_crm/i18n/sv.po index 7996c0f980d..770077753b7 100644 --- a/addons/portal_crm/i18n/sv.po +++ b/addons/portal_crm/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/th.po b/addons/portal_crm/i18n/th.po index e567a00dd31..5cf7148abef 100644 --- a/addons/portal_crm/i18n/th.po +++ b/addons/portal_crm/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/tr.po b/addons/portal_crm/i18n/tr.po index 67d3a7ab9cb..bcc8073ec9d 100644 --- a/addons/portal_crm/i18n/tr.po +++ b/addons/portal_crm/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/zh_CN.po b/addons/portal_crm/i18n/zh_CN.po index ebe191e7455..f91ae856e85 100644 --- a/addons/portal_crm/i18n/zh_CN.po +++ b/addons/portal_crm/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_event/i18n/cs.po b/addons/portal_event/i18n/cs.po index 61658b5a3bd..b15729082c9 100644 --- a/addons/portal_event/i18n/cs.po +++ b/addons/portal_event/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/de.po b/addons/portal_event/i18n/de.po index f93e395ec50..4bc5f295316 100644 --- a/addons/portal_event/i18n/de.po +++ b/addons/portal_event/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/es.po b/addons/portal_event/i18n/es.po index 9b82002fded..a94f8cbb865 100644 --- a/addons/portal_event/i18n/es.po +++ b/addons/portal_event/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/fr.po b/addons/portal_event/i18n/fr.po index 5f059b13e12..33ff7befcd9 100644 --- a/addons/portal_event/i18n/fr.po +++ b/addons/portal_event/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-15 05:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/hr.po b/addons/portal_event/i18n/hr.po index 97f93bff324..97280fe326e 100644 --- a/addons/portal_event/i18n/hr.po +++ b/addons/portal_event/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-19 04:56+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/hu.po b/addons/portal_event/i18n/hu.po index 0d6c4eee6e0..e6acbbf4866 100644 --- a/addons/portal_event/i18n/hu.po +++ b/addons/portal_event/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/mk.po b/addons/portal_event/i18n/mk.po index 2616ccb84dc..ca4cb38865a 100644 --- a/addons/portal_event/i18n/mk.po +++ b/addons/portal_event/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: portal_event diff --git a/addons/portal_event/i18n/nl.po b/addons/portal_event/i18n/nl.po index 7544d1ab338..c862363f797 100644 --- a/addons/portal_event/i18n/nl.po +++ b/addons/portal_event/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-24 13:14+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/pt.po b/addons/portal_event/i18n/pt.po index 93f397007a5..3eab6b8e037 100644 --- a/addons/portal_event/i18n/pt.po +++ b/addons/portal_event/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/pt_BR.po b/addons/portal_event/i18n/pt_BR.po index 9dc0620c56a..988c0262ff4 100644 --- a/addons/portal_event/i18n/pt_BR.po +++ b/addons/portal_event/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/ro.po b/addons/portal_event/i18n/ro.po index e7b38ad494a..02a8f1edb29 100644 --- a/addons/portal_event/i18n/ro.po +++ b/addons/portal_event/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-09 17:50+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/sl.po b/addons/portal_event/i18n/sl.po index 682f5115fed..497cd95cff0 100644 --- a/addons/portal_event/i18n/sl.po +++ b/addons/portal_event/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/sv.po b/addons/portal_event/i18n/sv.po index f3a3bc909bc..f2de800fc41 100644 --- a/addons/portal_event/i18n/sv.po +++ b/addons/portal_event/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/tr.po b/addons/portal_event/i18n/tr.po index 57a56e68b1e..d283dfa6c5c 100644 --- a/addons/portal_event/i18n/tr.po +++ b/addons/portal_event/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/zh_CN.po b/addons/portal_event/i18n/zh_CN.po index a5d9e3d5a0c..f9a1518c210 100644 --- a/addons/portal_event/i18n/zh_CN.po +++ b/addons/portal_event/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_hr_employees/i18n/cs.po b/addons/portal_hr_employees/i18n/cs.po index cff2b9f016f..ea5821d8018 100644 --- a/addons/portal_hr_employees/i18n/cs.po +++ b/addons/portal_hr_employees/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/de.po b/addons/portal_hr_employees/i18n/de.po index f82a50ee345..0d5454f0a03 100644 --- a/addons/portal_hr_employees/i18n/de.po +++ b/addons/portal_hr_employees/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/es.po b/addons/portal_hr_employees/i18n/es.po index 492ebcef2d3..c96bfb4b278 100644 --- a/addons/portal_hr_employees/i18n/es.po +++ b/addons/portal_hr_employees/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/fr.po b/addons/portal_hr_employees/i18n/fr.po index f115c602c59..9f6226c772e 100644 --- a/addons/portal_hr_employees/i18n/fr.po +++ b/addons/portal_hr_employees/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-14 00:18+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-15 05:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/hr.po b/addons/portal_hr_employees/i18n/hr.po index 38c9ebeff3e..df4cc6a3a9a 100644 --- a/addons/portal_hr_employees/i18n/hr.po +++ b/addons/portal_hr_employees/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/hu.po b/addons/portal_hr_employees/i18n/hu.po index 044fa201e6f..657f38f5a67 100644 --- a/addons/portal_hr_employees/i18n/hu.po +++ b/addons/portal_hr_employees/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/lt.po b/addons/portal_hr_employees/i18n/lt.po index c230ab69c7e..07094404a5f 100644 --- a/addons/portal_hr_employees/i18n/lt.po +++ b/addons/portal_hr_employees/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/mk.po b/addons/portal_hr_employees/i18n/mk.po index aa1b6325fd8..ba2fde0a617 100644 --- a/addons/portal_hr_employees/i18n/mk.po +++ b/addons/portal_hr_employees/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/nl.po b/addons/portal_hr_employees/i18n/nl.po index 28922748aa9..1ae2f41b5c8 100644 --- a/addons/portal_hr_employees/i18n/nl.po +++ b/addons/portal_hr_employees/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-08 10:03+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/pl.po b/addons/portal_hr_employees/i18n/pl.po index 0eacbd196ac..20b6b626e8a 100644 --- a/addons/portal_hr_employees/i18n/pl.po +++ b/addons/portal_hr_employees/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/pt.po b/addons/portal_hr_employees/i18n/pt.po index 7557ac05157..fbc516f2d96 100644 --- a/addons/portal_hr_employees/i18n/pt.po +++ b/addons/portal_hr_employees/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/pt_BR.po b/addons/portal_hr_employees/i18n/pt_BR.po index 2cbea46d64c..ca2a5ba8d52 100644 --- a/addons/portal_hr_employees/i18n/pt_BR.po +++ b/addons/portal_hr_employees/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 21:06+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/ro.po b/addons/portal_hr_employees/i18n/ro.po index 90ca0b2bc74..1f79c76ead4 100644 --- a/addons/portal_hr_employees/i18n/ro.po +++ b/addons/portal_hr_employees/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 19:27+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/sl.po b/addons/portal_hr_employees/i18n/sl.po index 07ecf569663..a9bdfdd6db4 100644 --- a/addons/portal_hr_employees/i18n/sl.po +++ b/addons/portal_hr_employees/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/th.po b/addons/portal_hr_employees/i18n/th.po index 92cfd40a295..c250b118e56 100644 --- a/addons/portal_hr_employees/i18n/th.po +++ b/addons/portal_hr_employees/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/tr.po b/addons/portal_hr_employees/i18n/tr.po index fd6b57d6ad0..b1bf5708e66 100644 --- a/addons/portal_hr_employees/i18n/tr.po +++ b/addons/portal_hr_employees/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/zh_CN.po b/addons/portal_hr_employees/i18n/zh_CN.po index c8b2258498c..167cca4e295 100644 --- a/addons/portal_hr_employees/i18n/zh_CN.po +++ b/addons/portal_hr_employees/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-29 01:54+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-30 04:58+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_project/i18n/cs.po b/addons/portal_project/i18n/cs.po index 9907de06743..a9b168bc814 100644 --- a/addons/portal_project/i18n/cs.po +++ b/addons/portal_project/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/de.po b/addons/portal_project/i18n/de.po index 8ca5e9da0dc..a2c69e168cb 100644 --- a/addons/portal_project/i18n/de.po +++ b/addons/portal_project/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/es.po b/addons/portal_project/i18n/es.po index 264615d48de..bcf25f54a22 100644 --- a/addons/portal_project/i18n/es.po +++ b/addons/portal_project/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/fr.po b/addons/portal_project/i18n/fr.po index ddbd2ee4aad..7d7fdae9e6b 100644 --- a/addons/portal_project/i18n/fr.po +++ b/addons/portal_project/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-29 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/hr.po b/addons/portal_project/i18n/hr.po index 6688429040d..fe407b850e6 100644 --- a/addons/portal_project/i18n/hr.po +++ b/addons/portal_project/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/hu.po b/addons/portal_project/i18n/hu.po index f031992acf2..f0e8126662d 100644 --- a/addons/portal_project/i18n/hu.po +++ b/addons/portal_project/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/it.po b/addons/portal_project/i18n/it.po index 12a1fcb570e..5a40727058c 100644 --- a/addons/portal_project/i18n/it.po +++ b/addons/portal_project/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/mk.po b/addons/portal_project/i18n/mk.po index 744edb5dbf3..9c427eee6fc 100644 --- a/addons/portal_project/i18n/mk.po +++ b/addons/portal_project/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: portal_project diff --git a/addons/portal_project/i18n/nl.po b/addons/portal_project/i18n/nl.po index 63763df61f0..a7029943959 100644 --- a/addons/portal_project/i18n/nl.po +++ b/addons/portal_project/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-08 13:59+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/pl.po b/addons/portal_project/i18n/pl.po index ed7becaa108..bd5e1a5c019 100644 --- a/addons/portal_project/i18n/pl.po +++ b/addons/portal_project/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/pt.po b/addons/portal_project/i18n/pt.po index 53873ab289c..8e4d8796eb1 100644 --- a/addons/portal_project/i18n/pt.po +++ b/addons/portal_project/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/pt_BR.po b/addons/portal_project/i18n/pt_BR.po index 881c09779ea..3a46bd0712c 100644 --- a/addons/portal_project/i18n/pt_BR.po +++ b/addons/portal_project/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 21:04+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/ro.po b/addons/portal_project/i18n/ro.po index cf98264a984..c3e2e5e6af3 100644 --- a/addons/portal_project/i18n/ro.po +++ b/addons/portal_project/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-09 18:13+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/sl.po b/addons/portal_project/i18n/sl.po index 86c92e5ff91..f0c489484ed 100644 --- a/addons/portal_project/i18n/sl.po +++ b/addons/portal_project/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/sv.po b/addons/portal_project/i18n/sv.po index 15b5cc7e9c1..acd68b34d28 100644 --- a/addons/portal_project/i18n/sv.po +++ b/addons/portal_project/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/tr.po b/addons/portal_project/i18n/tr.po index 44b485a6ceb..4337b2e9da8 100644 --- a/addons/portal_project/i18n/tr.po +++ b/addons/portal_project/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-29 05:45+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project diff --git a/addons/portal_project/i18n/zh_CN.po b/addons/portal_project/i18n/zh_CN.po index 6d58e11dc86..c764f1e0c7d 100644 --- a/addons/portal_project/i18n/zh_CN.po +++ b/addons/portal_project/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project #: model:ir.model,name:portal_project.model_project_project @@ -30,6 +30,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击开始一个新项目。\n" +"

\n" +" " #. module: portal_project #: model:ir.actions.act_window,name:portal_project.open_view_project diff --git a/addons/portal_project_issue/i18n/cs.po b/addons/portal_project_issue/i18n/cs.po index 187413609f4..0de1fe9bbf8 100644 --- a/addons/portal_project_issue/i18n/cs.po +++ b/addons/portal_project_issue/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/de.po b/addons/portal_project_issue/i18n/de.po index f153a27d9ca..f051d324672 100644 --- a/addons/portal_project_issue/i18n/de.po +++ b/addons/portal_project_issue/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/en_GB.po b/addons/portal_project_issue/i18n/en_GB.po index 10e094ad2fd..9ca53559a7d 100644 --- a/addons/portal_project_issue/i18n/en_GB.po +++ b/addons/portal_project_issue/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/es.po b/addons/portal_project_issue/i18n/es.po index 4971954f2d9..37ef3c5c57e 100644 --- a/addons/portal_project_issue/i18n/es.po +++ b/addons/portal_project_issue/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/fr.po b/addons/portal_project_issue/i18n/fr.po index 639258c9116..03dda1ba35b 100644 --- a/addons/portal_project_issue/i18n/fr.po +++ b/addons/portal_project_issue/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-14 00:05+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-15 05:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/hr.po b/addons/portal_project_issue/i18n/hr.po index 544b2f64b86..a8c1eb17113 100644 --- a/addons/portal_project_issue/i18n/hr.po +++ b/addons/portal_project_issue/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/hu.po b/addons/portal_project_issue/i18n/hu.po index 8abb494fc0e..0a8abdd06f5 100644 --- a/addons/portal_project_issue/i18n/hu.po +++ b/addons/portal_project_issue/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/it.po b/addons/portal_project_issue/i18n/it.po index d66dbeedc64..3d31983cb5b 100644 --- a/addons/portal_project_issue/i18n/it.po +++ b/addons/portal_project_issue/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/mk.po b/addons/portal_project_issue/i18n/mk.po index 9db8e6fa24d..4c288dd4182 100644 --- a/addons/portal_project_issue/i18n/mk.po +++ b/addons/portal_project_issue/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/nl.po b/addons/portal_project_issue/i18n/nl.po index 55a66f249a5..732c810e06d 100644 --- a/addons/portal_project_issue/i18n/nl.po +++ b/addons/portal_project_issue/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/pl.po b/addons/portal_project_issue/i18n/pl.po index 5910e54ad40..951f589671b 100644 --- a/addons/portal_project_issue/i18n/pl.po +++ b/addons/portal_project_issue/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/pt.po b/addons/portal_project_issue/i18n/pt.po index b2a31177ce8..6e7def7c873 100644 --- a/addons/portal_project_issue/i18n/pt.po +++ b/addons/portal_project_issue/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/pt_BR.po b/addons/portal_project_issue/i18n/pt_BR.po index 94d1bfa1ce4..45345a7c796 100644 --- a/addons/portal_project_issue/i18n/pt_BR.po +++ b/addons/portal_project_issue/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/ro.po b/addons/portal_project_issue/i18n/ro.po index 55832b0783a..befa250a0d0 100644 --- a/addons/portal_project_issue/i18n/ro.po +++ b/addons/portal_project_issue/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-09 18:17+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/sl.po b/addons/portal_project_issue/i18n/sl.po index c2b6584e33e..804c70253a5 100644 --- a/addons/portal_project_issue/i18n/sl.po +++ b/addons/portal_project_issue/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/sv.po b/addons/portal_project_issue/i18n/sv.po index a8545bd9b01..d27d935978b 100644 --- a/addons/portal_project_issue/i18n/sv.po +++ b/addons/portal_project_issue/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/tr.po b/addons/portal_project_issue/i18n/tr.po index f2f297bde96..516adeff338 100644 --- a/addons/portal_project_issue/i18n/tr.po +++ b/addons/portal_project_issue/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/zh_CN.po b/addons/portal_project_issue/i18n/zh_CN.po index ead8ae5a483..b2f8c0ca06d 100644 --- a/addons/portal_project_issue/i18n/zh_CN.po +++ b/addons/portal_project_issue/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_project_issue #: view:project.issue:0 @@ -33,6 +33,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击创建一个事件。\n" +"

\n" +" 您可以在此菜单追踪您的事件以及需要采取的行动。\n" +"

\n" +" " #. module: portal_project_issue #: model:ir.actions.act_window,name:portal_project_issue.project_issue_categ_act0 diff --git a/addons/portal_sale/i18n/cs.po b/addons/portal_sale/i18n/cs.po index fa2af7fb35d..4cb48c2b280 100644 --- a/addons/portal_sale/i18n/cs.po +++ b/addons/portal_sale/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/de.po b/addons/portal_sale/i18n/de.po index 345f5fbdb7d..7272bd36fe1 100644 --- a/addons/portal_sale/i18n/de.po +++ b/addons/portal_sale/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/es.po b/addons/portal_sale/i18n/es.po index bf3cacb1c64..97c908163cf 100644 --- a/addons/portal_sale/i18n/es.po +++ b/addons/portal_sale/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/es_MX.po b/addons/portal_sale/i18n/es_MX.po index 57ab1736258..a29a1c835f1 100644 --- a/addons/portal_sale/i18n/es_MX.po +++ b/addons/portal_sale/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/fi.po b/addons/portal_sale/i18n/fi.po index 335ffdd274a..95d83caa6f3 100644 --- a/addons/portal_sale/i18n/fi.po +++ b/addons/portal_sale/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/fr.po b/addons/portal_sale/i18n/fr.po index ccb9adef030..38ca52e22ea 100644 --- a/addons/portal_sale/i18n/fr.po +++ b/addons/portal_sale/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-14 00:06+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-15 05:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/hr.po b/addons/portal_sale/i18n/hr.po index 9a95abb2b46..6b1722515cc 100644 --- a/addons/portal_sale/i18n/hr.po +++ b/addons/portal_sale/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/hu.po b/addons/portal_sale/i18n/hu.po index 8f032a739d3..a4ea3306fde 100644 --- a/addons/portal_sale/i18n/hu.po +++ b/addons/portal_sale/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/lt.po b/addons/portal_sale/i18n/lt.po index 4aef9f7c28f..837a09f2206 100644 --- a/addons/portal_sale/i18n/lt.po +++ b/addons/portal_sale/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/mk.po b/addons/portal_sale/i18n/mk.po index 743cf23146c..821e19b5c66 100644 --- a/addons/portal_sale/i18n/mk.po +++ b/addons/portal_sale/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/mn.po b/addons/portal_sale/i18n/mn.po index 65fe5175140..3ebc7d0bf29 100644 --- a/addons/portal_sale/i18n/mn.po +++ b/addons/portal_sale/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/nl.po b/addons/portal_sale/i18n/nl.po index 371474423b3..f27e594ab28 100644 --- a/addons/portal_sale/i18n/nl.po +++ b/addons/portal_sale/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-09-02 10:41+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-03 06:08+0000\n" -"X-Generator: Launchpad (build 16753)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/pl.po b/addons/portal_sale/i18n/pl.po index 7942ceed097..613fe62b94c 100644 --- a/addons/portal_sale/i18n/pl.po +++ b/addons/portal_sale/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/pt.po b/addons/portal_sale/i18n/pt.po index ee725da2343..0e1999df4a6 100644 --- a/addons/portal_sale/i18n/pt.po +++ b/addons/portal_sale/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/pt_BR.po b/addons/portal_sale/i18n/pt_BR.po index af56c55ca23..bcfe537b781 100644 --- a/addons/portal_sale/i18n/pt_BR.po +++ b/addons/portal_sale/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/ro.po b/addons/portal_sale/i18n/ro.po index 38862662fdc..4f6a72d3205 100644 --- a/addons/portal_sale/i18n/ro.po +++ b/addons/portal_sale/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 19:20+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/ru.po b/addons/portal_sale/i18n/ru.po index 9e5a38d7ee1..7f75f8c6df3 100644 --- a/addons/portal_sale/i18n/ru.po +++ b/addons/portal_sale/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-17 05:18+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/sl.po b/addons/portal_sale/i18n/sl.po index 53a6f5517c2..17d38273a6d 100644 --- a/addons/portal_sale/i18n/sl.po +++ b/addons/portal_sale/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/sv.po b/addons/portal_sale/i18n/sv.po index f25a5c2a7bf..2d00dbc5356 100644 --- a/addons/portal_sale/i18n/sv.po +++ b/addons/portal_sale/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/tr.po b/addons/portal_sale/i18n/tr.po index 49faa1ea8c0..4f1ec201b7c 100644 --- a/addons/portal_sale/i18n/tr.po +++ b/addons/portal_sale/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/zh_CN.po b/addons/portal_sale/i18n/zh_CN.po index 5ea777c1c2a..1bc4b8ea754 100644 --- a/addons/portal_sale/i18n/zh_CN.po +++ b/addons/portal_sale/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/process/i18n/ar.po b/addons/process/i18n/ar.po index 48aa1680b20..013558a7e5a 100644 --- a/addons/process/i18n/ar.po +++ b/addons/process/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/bg.po b/addons/process/i18n/bg.po index 539b83e62a0..2734d67cb46 100644 --- a/addons/process/i18n/bg.po +++ b/addons/process/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/bs.po b/addons/process/i18n/bs.po index a4a8ff2c60e..05826251430 100644 --- a/addons/process/i18n/bs.po +++ b/addons/process/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ca.po b/addons/process/i18n/ca.po index 6ce117afac1..91f0c7c0c79 100644 --- a/addons/process/i18n/ca.po +++ b/addons/process/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/cs.po b/addons/process/i18n/cs.po index 364b356eafc..e9161a92eaa 100644 --- a/addons/process/i18n/cs.po +++ b/addons/process/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/da.po b/addons/process/i18n/da.po index 528408699f5..83bb1907fe5 100644 --- a/addons/process/i18n/da.po +++ b/addons/process/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/de.po b/addons/process/i18n/de.po index 4b08302d5c4..6409639d8c4 100644 --- a/addons/process/i18n/de.po +++ b/addons/process/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/el.po b/addons/process/i18n/el.po index 3349bbd0916..833beea8434 100644 --- a/addons/process/i18n/el.po +++ b/addons/process/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/es.po b/addons/process/i18n/es.po index ab918ab31a4..74b3533e782 100644 --- a/addons/process/i18n/es.po +++ b/addons/process/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/es_AR.po b/addons/process/i18n/es_AR.po index b75519eb09f..9c1eda568d6 100644 --- a/addons/process/i18n/es_AR.po +++ b/addons/process/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/es_CL.po b/addons/process/i18n/es_CL.po index cf5659084c0..57ce5c6709c 100644 --- a/addons/process/i18n/es_CL.po +++ b/addons/process/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/es_CR.po b/addons/process/i18n/es_CR.po index d7ee3329271..462e27684e0 100644 --- a/addons/process/i18n/es_CR.po +++ b/addons/process/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/et.po b/addons/process/i18n/et.po index a36cdb609f4..3e079a88cd3 100644 --- a/addons/process/i18n/et.po +++ b/addons/process/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/fi.po b/addons/process/i18n/fi.po index c0be0b712ba..39a7de6afdc 100644 --- a/addons/process/i18n/fi.po +++ b/addons/process/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: process diff --git a/addons/process/i18n/fr.po b/addons/process/i18n/fr.po index dfddb98452b..8b83451dd18 100644 --- a/addons/process/i18n/fr.po +++ b/addons/process/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-15 05:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/gl.po b/addons/process/i18n/gl.po index 0a7f6421439..776a20ea146 100644 --- a/addons/process/i18n/gl.po +++ b/addons/process/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/hi.po b/addons/process/i18n/hi.po index cbe70f3f916..7c9533d450e 100644 --- a/addons/process/i18n/hi.po +++ b/addons/process/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/hr.po b/addons/process/i18n/hr.po index d75df4c2792..32fbd1cc068 100644 --- a/addons/process/i18n/hr.po +++ b/addons/process/i18n/hr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: process diff --git a/addons/process/i18n/hu.po b/addons/process/i18n/hu.po index c74daa76e49..7aeadd14b8e 100644 --- a/addons/process/i18n/hu.po +++ b/addons/process/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/id.po b/addons/process/i18n/id.po index 03631988bbe..7c4874ab35d 100644 --- a/addons/process/i18n/id.po +++ b/addons/process/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/it.po b/addons/process/i18n/it.po index 14163e6b0db..00986d9fab8 100644 --- a/addons/process/i18n/it.po +++ b/addons/process/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ja.po b/addons/process/i18n/ja.po index 4ed2e69264e..70179b9866c 100644 --- a/addons/process/i18n/ja.po +++ b/addons/process/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ko.po b/addons/process/i18n/ko.po index 53595e49b95..ef360a47982 100644 --- a/addons/process/i18n/ko.po +++ b/addons/process/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/lt.po b/addons/process/i18n/lt.po index 65b678f705a..f4db8dac892 100644 --- a/addons/process/i18n/lt.po +++ b/addons/process/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/mk.po b/addons/process/i18n/mk.po index fd4b5c5aaa0..67e283fbcce 100644 --- a/addons/process/i18n/mk.po +++ b/addons/process/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: process diff --git a/addons/process/i18n/mn.po b/addons/process/i18n/mn.po index 24af1eb53f6..d69deb062a6 100644 --- a/addons/process/i18n/mn.po +++ b/addons/process/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/nl.po b/addons/process/i18n/nl.po index 420c2486260..8ab11bdbb78 100644 --- a/addons/process/i18n/nl.po +++ b/addons/process/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/nl_BE.po b/addons/process/i18n/nl_BE.po index 7ae6b676a60..157d4424b4a 100644 --- a/addons/process/i18n/nl_BE.po +++ b/addons/process/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/pl.po b/addons/process/i18n/pl.po index 82a8e39bd8c..82828d799c9 100644 --- a/addons/process/i18n/pl.po +++ b/addons/process/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/pt.po b/addons/process/i18n/pt.po index 98f656fd880..f67dc928373 100644 --- a/addons/process/i18n/pt.po +++ b/addons/process/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/pt_BR.po b/addons/process/i18n/pt_BR.po index c65a2c424d8..f8d5e3c3766 100644 --- a/addons/process/i18n/pt_BR.po +++ b/addons/process/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ro.po b/addons/process/i18n/ro.po index 002bfe6bb8f..3416617a0a0 100644 --- a/addons/process/i18n/ro.po +++ b/addons/process/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-07 18:24+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ru.po b/addons/process/i18n/ru.po index 372e95213b8..08d3b1f1599 100644 --- a/addons/process/i18n/ru.po +++ b/addons/process/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sk.po b/addons/process/i18n/sk.po index 1c11dea7959..8a5816790db 100644 --- a/addons/process/i18n/sk.po +++ b/addons/process/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sl.po b/addons/process/i18n/sl.po index 4b87738eb86..7f63f5f925d 100644 --- a/addons/process/i18n/sl.po +++ b/addons/process/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sq.po b/addons/process/i18n/sq.po index 6d94b83a212..c1f22965e6c 100644 --- a/addons/process/i18n/sq.po +++ b/addons/process/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sr.po b/addons/process/i18n/sr.po index 683759acb90..b1984693927 100644 --- a/addons/process/i18n/sr.po +++ b/addons/process/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sr@latin.po b/addons/process/i18n/sr@latin.po index 48923e96bfc..17a117a5c51 100644 --- a/addons/process/i18n/sr@latin.po +++ b/addons/process/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sv.po b/addons/process/i18n/sv.po index ea4b3f1b4d9..493d36e7524 100644 --- a/addons/process/i18n/sv.po +++ b/addons/process/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/tlh.po b/addons/process/i18n/tlh.po index dae7e5d2934..de991ab7be2 100644 --- a/addons/process/i18n/tlh.po +++ b/addons/process/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/tr.po b/addons/process/i18n/tr.po index 149dc16426b..3ada8912b47 100644 --- a/addons/process/i18n/tr.po +++ b/addons/process/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/uk.po b/addons/process/i18n/uk.po index ca75906f5b6..ffbfd4e8460 100644 --- a/addons/process/i18n/uk.po +++ b/addons/process/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/vi.po b/addons/process/i18n/vi.po index 9d2d6b14960..f5731ec25de 100644 --- a/addons/process/i18n/vi.po +++ b/addons/process/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/zh_CN.po b/addons/process/i18n/zh_CN.po index ff788733cdd..992d3854f92 100644 --- a/addons/process/i18n/zh_CN.po +++ b/addons/process/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/zh_TW.po b/addons/process/i18n/zh_TW.po index 65f457cb3d3..6fea1271007 100644 --- a/addons/process/i18n/zh_TW.po +++ b/addons/process/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/procurement/i18n/ar.po b/addons/procurement/i18n/ar.po index a47ef7c7f36..7d86b27f038 100644 --- a/addons/procurement/i18n/ar.po +++ b/addons/procurement/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/bg.po b/addons/procurement/i18n/bg.po index 427d096a417..a2e30bdea51 100644 --- a/addons/procurement/i18n/bg.po +++ b/addons/procurement/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/bs.po b/addons/procurement/i18n/bs.po index 60a7e857fbe..7594266eadd 100644 --- a/addons/procurement/i18n/bs.po +++ b/addons/procurement/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:13+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/ca.po b/addons/procurement/i18n/ca.po index c4ecc00c7b2..1024e05ad5b 100644 --- a/addons/procurement/i18n/ca.po +++ b/addons/procurement/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/cs.po b/addons/procurement/i18n/cs.po index 5e5ae0017a8..b590b98fe0a 100644 --- a/addons/procurement/i18n/cs.po +++ b/addons/procurement/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/da.po b/addons/procurement/i18n/da.po index 2ae448005d7..27eb8a501c8 100644 --- a/addons/procurement/i18n/da.po +++ b/addons/procurement/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:51+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/de.po b/addons/procurement/i18n/de.po index 555ad2d2721..9e5fb7e9373 100644 --- a/addons/procurement/i18n/de.po +++ b/addons/procurement/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/es.po b/addons/procurement/i18n/es.po index 0b6016475a7..7473a3a662f 100644 --- a/addons/procurement/i18n/es.po +++ b/addons/procurement/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-24 06:37+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/es_CL.po b/addons/procurement/i18n/es_CL.po index 46d933eae02..32c927da60e 100644 --- a/addons/procurement/i18n/es_CL.po +++ b/addons/procurement/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/es_CR.po b/addons/procurement/i18n/es_CR.po index e5cf4d3cb70..0f434a65f5e 100644 --- a/addons/procurement/i18n/es_CR.po +++ b/addons/procurement/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/es_EC.po b/addons/procurement/i18n/es_EC.po index d34f7dc421d..84b937960b0 100644 --- a/addons/procurement/i18n/es_EC.po +++ b/addons/procurement/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/et.po b/addons/procurement/i18n/et.po index 64e99b1ed22..365fb84233f 100644 --- a/addons/procurement/i18n/et.po +++ b/addons/procurement/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/fi.po b/addons/procurement/i18n/fi.po index 99a975884ea..26262db8f96 100644 --- a/addons/procurement/i18n/fi.po +++ b/addons/procurement/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:23+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/fr.po b/addons/procurement/i18n/fr.po index c41bddbf8c3..5f5ae97b7bc 100644 --- a/addons/procurement/i18n/fr.po +++ b/addons/procurement/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/gl.po b/addons/procurement/i18n/gl.po index 3db6f564627..81783985c05 100644 --- a/addons/procurement/i18n/gl.po +++ b/addons/procurement/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/hr.po b/addons/procurement/i18n/hr.po index 7231b155abe..d95519ad59b 100644 --- a/addons/procurement/i18n/hr.po +++ b/addons/procurement/i18n/hr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: procurement diff --git a/addons/procurement/i18n/hu.po b/addons/procurement/i18n/hu.po index 24d5aa2f7c1..14d4f0b987f 100644 --- a/addons/procurement/i18n/hu.po +++ b/addons/procurement/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/id.po b/addons/procurement/i18n/id.po index cf3cc63f399..54c76c7e258 100644 --- a/addons/procurement/i18n/id.po +++ b/addons/procurement/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/it.po b/addons/procurement/i18n/it.po index 0fe661937b0..3a9bcaa65e1 100644 --- a/addons/procurement/i18n/it.po +++ b/addons/procurement/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/ja.po b/addons/procurement/i18n/ja.po index 7d642fc9d24..cc5ac6abcde 100644 --- a/addons/procurement/i18n/ja.po +++ b/addons/procurement/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/lt.po b/addons/procurement/i18n/lt.po index 6ae52adbd56..60fbcf26106 100644 --- a/addons/procurement/i18n/lt.po +++ b/addons/procurement/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/mk.po b/addons/procurement/i18n/mk.po index f22088bcf70..e49acaf5647 100644 --- a/addons/procurement/i18n/mk.po +++ b/addons/procurement/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: procurement diff --git a/addons/procurement/i18n/mn.po b/addons/procurement/i18n/mn.po index ae89aa3621b..637fa04396f 100644 --- a/addons/procurement/i18n/mn.po +++ b/addons/procurement/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/nb.po b/addons/procurement/i18n/nb.po index 09e11e30ebc..be3b7f3451b 100644 --- a/addons/procurement/i18n/nb.po +++ b/addons/procurement/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/nl.po b/addons/procurement/i18n/nl.po index bbd44365dca..4c884928fbc 100644 --- a/addons/procurement/i18n/nl.po +++ b/addons/procurement/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-08-19 10:58+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-20 05:15+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/pl.po b/addons/procurement/i18n/pl.po index 267035f73bc..d437ea54759 100644 --- a/addons/procurement/i18n/pl.po +++ b/addons/procurement/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/pt.po b/addons/procurement/i18n/pt.po index 3a4a639f772..77cb4518cd0 100644 --- a/addons/procurement/i18n/pt.po +++ b/addons/procurement/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/pt_BR.po b/addons/procurement/i18n/pt_BR.po index 63ed636edf4..351acb9dddd 100644 --- a/addons/procurement/i18n/pt_BR.po +++ b/addons/procurement/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 21:02+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/ro.po b/addons/procurement/i18n/ro.po index 74674adfc78..069162ff3b7 100644 --- a/addons/procurement/i18n/ro.po +++ b/addons/procurement/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-10 18:47+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/ru.po b/addons/procurement/i18n/ru.po index 38a84aabefe..f6c8f30adea 100644 --- a/addons/procurement/i18n/ru.po +++ b/addons/procurement/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/sl.po b/addons/procurement/i18n/sl.po index 539362d7d2a..424939ba7bc 100644 --- a/addons/procurement/i18n/sl.po +++ b/addons/procurement/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/sr.po b/addons/procurement/i18n/sr.po index 91bb474a4db..04632b63699 100644 --- a/addons/procurement/i18n/sr.po +++ b/addons/procurement/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/sr@latin.po b/addons/procurement/i18n/sr@latin.po index aeb88ad5476..36976d87186 100644 --- a/addons/procurement/i18n/sr@latin.po +++ b/addons/procurement/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/sv.po b/addons/procurement/i18n/sv.po index e477186e336..789460ca67a 100644 --- a/addons/procurement/i18n/sv.po +++ b/addons/procurement/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/tr.po b/addons/procurement/i18n/tr.po index cbb3ecab209..48d9d1302eb 100644 --- a/addons/procurement/i18n/tr.po +++ b/addons/procurement/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-29 05:45+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/vi.po b/addons/procurement/i18n/vi.po index c9a2ef12877..a33cb35dfdc 100644 --- a/addons/procurement/i18n/vi.po +++ b/addons/procurement/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:14+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/zh_CN.po b/addons/procurement/i18n/zh_CN.po index c9ed51a3df7..84c344019cc 100644 --- a/addons/procurement/i18n/zh_CN.po +++ b/addons/procurement/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-20 05:05+0000\n" -"X-Generator: Launchpad (build 16807)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/product/i18n/ar.po b/addons/product/i18n/ar.po index 6ad45bd6d96..ee659260916 100644 --- a/addons/product/i18n/ar.po +++ b/addons/product/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/bg.po b/addons/product/i18n/bg.po index 4adb0490c7e..c5b31486644 100644 --- a/addons/product/i18n/bg.po +++ b/addons/product/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/bs.po b/addons/product/i18n/bs.po index 0d4d28a0d31..0d3f869311b 100644 --- a/addons/product/i18n/bs.po +++ b/addons/product/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-31 05:47+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ca.po b/addons/product/i18n/ca.po index afb65643f03..863e2ad713b 100644 --- a/addons/product/i18n/ca.po +++ b/addons/product/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/cs.po b/addons/product/i18n/cs.po index 8fa73fda677..b94161badde 100644 --- a/addons/product/i18n/cs.po +++ b/addons/product/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-04 05:45+0000\n" -"X-Generator: Launchpad (build 16791)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/da.po b/addons/product/i18n/da.po index d15f14e898b..005fb93f005 100644 --- a/addons/product/i18n/da.po +++ b/addons/product/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-26 05:54+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/de.po b/addons/product/i18n/de.po index 095a12f1235..0879446c64b 100644 --- a/addons/product/i18n/de.po +++ b/addons/product/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-27 05:03+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/el.po b/addons/product/i18n/el.po index fa3ac80e696..811e96482b0 100644 --- a/addons/product/i18n/el.po +++ b/addons/product/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es.po b/addons/product/i18n/es.po index 4ef88faa024..c4f1a4e8fa9 100644 --- a/addons/product/i18n/es.po +++ b/addons/product/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_AR.po b/addons/product/i18n/es_AR.po index cd26223695f..8346aed64dc 100644 --- a/addons/product/i18n/es_AR.po +++ b/addons/product/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_CL.po b/addons/product/i18n/es_CL.po index fe7b8c3e996..cb385fd59ec 100644 --- a/addons/product/i18n/es_CL.po +++ b/addons/product/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_CR.po b/addons/product/i18n/es_CR.po index d22ebe5ea41..b5ebfdf8c21 100644 --- a/addons/product/i18n/es_CR.po +++ b/addons/product/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_EC.po b/addons/product/i18n/es_EC.po index 9487acb960b..969e4afbeb7 100644 --- a/addons/product/i18n/es_EC.po +++ b/addons/product/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_PY.po b/addons/product/i18n/es_PY.po index 741a645d85e..f57ec27ba5f 100644 --- a/addons/product/i18n/es_PY.po +++ b/addons/product/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/et.po b/addons/product/i18n/et.po index 55519fe7f79..5ff59e459bb 100644 --- a/addons/product/i18n/et.po +++ b/addons/product/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/eu.po b/addons/product/i18n/eu.po index f4dd64e355b..94a2523af5c 100644 --- a/addons/product/i18n/eu.po +++ b/addons/product/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/fi.po b/addons/product/i18n/fi.po index 0c5af30c4fc..63728c0f9e3 100644 --- a/addons/product/i18n/fi.po +++ b/addons/product/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: product diff --git a/addons/product/i18n/fr.po b/addons/product/i18n/fr.po index 6c729785d89..a385dfe601f 100644 --- a/addons/product/i18n/fr.po +++ b/addons/product/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/gl.po b/addons/product/i18n/gl.po index 8294d0ebd83..caeb4d55fa6 100644 --- a/addons/product/i18n/gl.po +++ b/addons/product/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/hr.po b/addons/product/i18n/hr.po index 5f7eb367418..5f9447dc60a 100644 --- a/addons/product/i18n/hr.po +++ b/addons/product/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-27 06:16+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/hu.po b/addons/product/i18n/hu.po index 9da768fa1cf..cb444a6d7ed 100644 --- a/addons/product/i18n/hu.po +++ b/addons/product/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/id.po b/addons/product/i18n/id.po index ac2d44bae3d..693e134d76d 100644 --- a/addons/product/i18n/id.po +++ b/addons/product/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/it.po b/addons/product/i18n/it.po index 33d08616c16..fbcbc122148 100644 --- a/addons/product/i18n/it.po +++ b/addons/product/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ja.po b/addons/product/i18n/ja.po index f53dce3e2ae..126aa4eb39a 100644 --- a/addons/product/i18n/ja.po +++ b/addons/product/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ko.po b/addons/product/i18n/ko.po index 70c823ffbf6..eb694b80d35 100644 --- a/addons/product/i18n/ko.po +++ b/addons/product/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/lo.po b/addons/product/i18n/lo.po index df16ad57dc4..b5e30675c2e 100644 --- a/addons/product/i18n/lo.po +++ b/addons/product/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/lt.po b/addons/product/i18n/lt.po index 9c6fe0a0946..32b7d6d494c 100644 --- a/addons/product/i18n/lt.po +++ b/addons/product/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/lv.po b/addons/product/i18n/lv.po index fc260b2b657..b9c4eea6096 100644 --- a/addons/product/i18n/lv.po +++ b/addons/product/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/mk.po b/addons/product/i18n/mk.po index 147d9363e90..4ddd4addb97 100644 --- a/addons/product/i18n/mk.po +++ b/addons/product/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: product diff --git a/addons/product/i18n/mn.po b/addons/product/i18n/mn.po index 4f0b1a7bba7..cb22916eac9 100644 --- a/addons/product/i18n/mn.po +++ b/addons/product/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/nb.po b/addons/product/i18n/nb.po index 82ded3d6ac3..b50a69c046e 100644 --- a/addons/product/i18n/nb.po +++ b/addons/product/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/nl.po b/addons/product/i18n/nl.po index 86c56d13bdc..f2b85ec9a59 100644 --- a/addons/product/i18n/nl.po +++ b/addons/product/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/nl_BE.po b/addons/product/i18n/nl_BE.po index 104a5f51cf9..8df9b895561 100644 --- a/addons/product/i18n/nl_BE.po +++ b/addons/product/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/pl.po b/addons/product/i18n/pl.po index cd29e27c2f7..a4f00056046 100644 --- a/addons/product/i18n/pl.po +++ b/addons/product/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-26 05:54+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/pt.po b/addons/product/i18n/pt.po index d79826aade7..7b3da4745c1 100644 --- a/addons/product/i18n/pt.po +++ b/addons/product/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/pt_BR.po b/addons/product/i18n/pt_BR.po index a420894e00c..4fe7275f307 100644 --- a/addons/product/i18n/pt_BR.po +++ b/addons/product/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-04 05:03+0000\n" -"X-Generator: Launchpad (build 16753)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ro.po b/addons/product/i18n/ro.po index d51d681acbf..aca76bb1405 100644 --- a/addons/product/i18n/ro.po +++ b/addons/product/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ru.po b/addons/product/i18n/ru.po index 55dba0a6b25..64d8afea790 100644 --- a/addons/product/i18n/ru.po +++ b/addons/product/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sk.po b/addons/product/i18n/sk.po index b985d98c3e9..196f777cff8 100644 --- a/addons/product/i18n/sk.po +++ b/addons/product/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sl.po b/addons/product/i18n/sl.po index ee777d51d92..6f9bb5a98f6 100644 --- a/addons/product/i18n/sl.po +++ b/addons/product/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sq.po b/addons/product/i18n/sq.po index 7819f851810..9a3b7d49c63 100644 --- a/addons/product/i18n/sq.po +++ b/addons/product/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:26+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sr.po b/addons/product/i18n/sr.po index 358f719744f..505832fa809 100644 --- a/addons/product/i18n/sr.po +++ b/addons/product/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:15+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sr@latin.po b/addons/product/i18n/sr@latin.po index 7c4bf5fab4f..df131d885ee 100644 --- a/addons/product/i18n/sr@latin.po +++ b/addons/product/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sv.po b/addons/product/i18n/sv.po index e8d0dd902cd..d50c3e514d0 100644 --- a/addons/product/i18n/sv.po +++ b/addons/product/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/th.po b/addons/product/i18n/th.po index 7c30e3d855a..81ff805f682 100644 --- a/addons/product/i18n/th.po +++ b/addons/product/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/tlh.po b/addons/product/i18n/tlh.po index a9e85f13897..e9e74f52db5 100644 --- a/addons/product/i18n/tlh.po +++ b/addons/product/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/tr.po b/addons/product/i18n/tr.po index e3b4b6b4736..f8d2476a3aa 100644 --- a/addons/product/i18n/tr.po +++ b/addons/product/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/uk.po b/addons/product/i18n/uk.po index 51d552070d9..fd94c81955d 100644 --- a/addons/product/i18n/uk.po +++ b/addons/product/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/vi.po b/addons/product/i18n/vi.po index 4d06eea6472..87ae7bfce3f 100644 --- a/addons/product/i18n/vi.po +++ b/addons/product/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/zh_CN.po b/addons/product/i18n/zh_CN.po index 2b8971e36a0..2717d478e0e 100644 --- a/addons/product/i18n/zh_CN.po +++ b/addons/product/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-08-11 15:46+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-12 05:06+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 @@ -2532,6 +2532,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击创建一个价格列表。\n" +"

\n" +" 价格列表包括待评审的规则来计算产品价格。\n" +"

\n" +" 价格列表可能有不同版本(2010, 2011, 2010年2月促销等等) ,每个版本可能有几个不同的规则。\n" +" (例如:给顾客的产品价格按照供应商价格的1.8倍提交。\n" +"

\n" +" " #. module: product #: model:ir.model,name:product.model_product_template diff --git a/addons/product/i18n/zh_TW.po b/addons/product/i18n/zh_TW.po index 4b710022032..ad2aaf24e42 100644 --- a/addons/product/i18n/zh_TW.po +++ b/addons/product/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product_expiry/i18n/ar.po b/addons/product_expiry/i18n/ar.po index 3fa7f9c9612..97706e9f19f 100644 --- a/addons/product_expiry/i18n/ar.po +++ b/addons/product_expiry/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/bs.po b/addons/product_expiry/i18n/bs.po index a7c17618a94..e8f3c3666b5 100644 --- a/addons/product_expiry/i18n/bs.po +++ b/addons/product_expiry/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-30 05:54+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/ca.po b/addons/product_expiry/i18n/ca.po index a98cbf8cb36..b1fd49e7bae 100644 --- a/addons/product_expiry/i18n/ca.po +++ b/addons/product_expiry/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/cs.po b/addons/product_expiry/i18n/cs.po index f4f115ce2c8..e16bf637d2a 100644 --- a/addons/product_expiry/i18n/cs.po +++ b/addons/product_expiry/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/da.po b/addons/product_expiry/i18n/da.po index 57d5d0ce164..48085637e28 100644 --- a/addons/product_expiry/i18n/da.po +++ b/addons/product_expiry/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-26 05:54+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/de.po b/addons/product_expiry/i18n/de.po index 9d05f19ddca..5dff472943a 100644 --- a/addons/product_expiry/i18n/de.po +++ b/addons/product_expiry/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/el.po b/addons/product_expiry/i18n/el.po index bbfc11cfa47..38a696898d3 100644 --- a/addons/product_expiry/i18n/el.po +++ b/addons/product_expiry/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/es.po b/addons/product_expiry/i18n/es.po index ebe239dbe0e..c70e3b79331 100644 --- a/addons/product_expiry/i18n/es.po +++ b/addons/product_expiry/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/es_CR.po b/addons/product_expiry/i18n/es_CR.po index 93298b9171b..90ea58e7f31 100644 --- a/addons/product_expiry/i18n/es_CR.po +++ b/addons/product_expiry/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/es_EC.po b/addons/product_expiry/i18n/es_EC.po index 94035cf4e4f..d435459a818 100644 --- a/addons/product_expiry/i18n/es_EC.po +++ b/addons/product_expiry/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/et.po b/addons/product_expiry/i18n/et.po index 4ddeec09219..46dbcd49302 100644 --- a/addons/product_expiry/i18n/et.po +++ b/addons/product_expiry/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/fi.po b/addons/product_expiry/i18n/fi.po index 0b186f51c31..b2a537ee611 100644 --- a/addons/product_expiry/i18n/fi.po +++ b/addons/product_expiry/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/fr.po b/addons/product_expiry/i18n/fr.po index c870edc987b..5268857fb80 100644 --- a/addons/product_expiry/i18n/fr.po +++ b/addons/product_expiry/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-14 00:28+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-15 05:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/gl.po b/addons/product_expiry/i18n/gl.po index 37cf4816655..bb8111ff02a 100644 --- a/addons/product_expiry/i18n/gl.po +++ b/addons/product_expiry/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/hr.po b/addons/product_expiry/i18n/hr.po index 1f947eb171c..3832bade2f8 100644 --- a/addons/product_expiry/i18n/hr.po +++ b/addons/product_expiry/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/hu.po b/addons/product_expiry/i18n/hu.po index 4bbcd3841c9..408e5151d4d 100644 --- a/addons/product_expiry/i18n/hu.po +++ b/addons/product_expiry/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/it.po b/addons/product_expiry/i18n/it.po index cbea3833560..62cc6c2bd06 100644 --- a/addons/product_expiry/i18n/it.po +++ b/addons/product_expiry/i18n/it.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/ja.po b/addons/product_expiry/i18n/ja.po index 1149597748f..3a441bf54a5 100644 --- a/addons/product_expiry/i18n/ja.po +++ b/addons/product_expiry/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/mk.po b/addons/product_expiry/i18n/mk.po index 346e5b56b1b..f08fe5fcd2e 100644 --- a/addons/product_expiry/i18n/mk.po +++ b/addons/product_expiry/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/mn.po b/addons/product_expiry/i18n/mn.po index 44d199cab62..6b96f421936 100644 --- a/addons/product_expiry/i18n/mn.po +++ b/addons/product_expiry/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/nl.po b/addons/product_expiry/i18n/nl.po index 0234232315e..caeba59e437 100644 --- a/addons/product_expiry/i18n/nl.po +++ b/addons/product_expiry/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-16 05:13+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/pl.po b/addons/product_expiry/i18n/pl.po index c3bdea5cdd9..a6e8cb31c8b 100644 --- a/addons/product_expiry/i18n/pl.po +++ b/addons/product_expiry/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/pt.po b/addons/product_expiry/i18n/pt.po index f317a4c627e..93e2a709aa4 100644 --- a/addons/product_expiry/i18n/pt.po +++ b/addons/product_expiry/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/pt_BR.po b/addons/product_expiry/i18n/pt_BR.po index a786f78cf25..f90a548d541 100644 --- a/addons/product_expiry/i18n/pt_BR.po +++ b/addons/product_expiry/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/ro.po b/addons/product_expiry/i18n/ro.po index 2d8a8e1d14a..ae9f79e37be 100644 --- a/addons/product_expiry/i18n/ro.po +++ b/addons/product_expiry/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-07 18:46+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/ru.po b/addons/product_expiry/i18n/ru.po index e041c9628aa..69794b51e9e 100644 --- a/addons/product_expiry/i18n/ru.po +++ b/addons/product_expiry/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/sl.po b/addons/product_expiry/i18n/sl.po index 31914626fad..84d98805c7a 100644 --- a/addons/product_expiry/i18n/sl.po +++ b/addons/product_expiry/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/sr.po b/addons/product_expiry/i18n/sr.po index 3a5586c5346..fc6252b051c 100644 --- a/addons/product_expiry/i18n/sr.po +++ b/addons/product_expiry/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/sr@latin.po b/addons/product_expiry/i18n/sr@latin.po index c95c8c12c7d..c3bcf179882 100644 --- a/addons/product_expiry/i18n/sr@latin.po +++ b/addons/product_expiry/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/sv.po b/addons/product_expiry/i18n/sv.po index 44d79fdfd09..2c4ff0e3f1b 100644 --- a/addons/product_expiry/i18n/sv.po +++ b/addons/product_expiry/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/tr.po b/addons/product_expiry/i18n/tr.po index 5003c122203..a453b3e5bfd 100644 --- a/addons/product_expiry/i18n/tr.po +++ b/addons/product_expiry/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/vi.po b/addons/product_expiry/i18n/vi.po index 57595507f18..037c5dd7b77 100644 --- a/addons/product_expiry/i18n/vi.po +++ b/addons/product_expiry/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/zh_CN.po b/addons/product_expiry/i18n/zh_CN.po index 9cd70c8d4ef..7b57c1f21f1 100644 --- a/addons/product_expiry/i18n/zh_CN.po +++ b/addons/product_expiry/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template @@ -37,14 +37,14 @@ msgstr "产品生命周期" msgid "" "This is the date on which the goods with this Serial Number should be " "removed from the stock." -msgstr "" +msgstr "此序列号所含商品将在该日从库存移除。" #. module: product_expiry #: help:product.product,removal_time:0 msgid "" "When a new a Serial Number is issued, this is the number of days before the " "goods should be removed from the stock." -msgstr "" +msgstr "此处表明当新序列号生成时,商品需要提前多少天从库存移除。" #. module: product_expiry #: field:product.product,use_time:0 @@ -61,7 +61,7 @@ msgstr "产品" msgid "" "When a new a Serial Number is issued, this is the number of days before the " "goods starts deteriorating, without being dangerous yet." -msgstr "" +msgstr "此处表明当新序列号生成时,商品变质前(未变危险)的天数。" #. module: product_expiry #: field:product.product,removal_time:0 @@ -73,7 +73,7 @@ msgstr "产品移除时间" msgid "" "This is the date on which an alert should be notified about the goods with " "this Serial Number." -msgstr "" +msgstr "此处表明该序列号所指商品需要提醒管理员的日期。" #. module: product_expiry #: model:ir.model,name:product_expiry.model_stock_production_lot @@ -85,7 +85,7 @@ msgstr "序列号" msgid "" "When a new a Serial Number is issued, this is the number of days before an " "alert should be notified." -msgstr "" +msgstr "此处表明当新序列号生成时,商品生成提醒前的天数。" #. module: product_expiry #: field:stock.production.lot,removal_date:0 @@ -123,6 +123,9 @@ msgid "" "When a new a Serial Number is issued, this is the number of days before the " "goods may become dangerous and must not be consumed." msgstr "" +"此处表明当新序列号生成时,商品变危险以至于不能使用前的天数。When a new a Serial Number is issued, this is " +"the number of days before the goods may become dangerous and must not be " +"consumed." #. module: product_expiry #: field:stock.production.lot,alert_date:0 @@ -134,14 +137,14 @@ msgstr "警告日期" msgid "" "This is the date on which the goods with this Serial Number start " "deteriorating, without being dangerous yet." -msgstr "" +msgstr "此处表明该序列号的商品开始变质的日期(未变危险)。" #. module: product_expiry #: help:stock.production.lot,life_date:0 msgid "" "This is the date on which the goods with this Serial Number may become " "dangerous and must not be consumed." -msgstr "" +msgstr "此处表明该序列号的商品变得危险的日期,此时该商品不能使用。" #. module: product_expiry #: field:product.product,alert_time:0 diff --git a/addons/product_expiry/i18n/zh_TW.po b/addons/product_expiry/i18n/zh_TW.po index 8b2401e3c3b..e3c970453d2 100644 --- a/addons/product_expiry/i18n/zh_TW.po +++ b/addons/product_expiry/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_manufacturer/i18n/ar.po b/addons/product_manufacturer/i18n/ar.po index 1a4c1e4d5f2..d1fad769e6d 100644 --- a/addons/product_manufacturer/i18n/ar.po +++ b/addons/product_manufacturer/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/bg.po b/addons/product_manufacturer/i18n/bg.po index 6856ed7850b..37e3b27c8fe 100644 --- a/addons/product_manufacturer/i18n/bg.po +++ b/addons/product_manufacturer/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/bs.po b/addons/product_manufacturer/i18n/bs.po index 0dee1cafd40..22367f202de 100644 --- a/addons/product_manufacturer/i18n/bs.po +++ b/addons/product_manufacturer/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-31 05:47+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/ca.po b/addons/product_manufacturer/i18n/ca.po index 0074d61415e..bb3a989d230 100644 --- a/addons/product_manufacturer/i18n/ca.po +++ b/addons/product_manufacturer/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/cs.po b/addons/product_manufacturer/i18n/cs.po index f1ec59169c8..35f4932dea3 100644 --- a/addons/product_manufacturer/i18n/cs.po +++ b/addons/product_manufacturer/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/da.po b/addons/product_manufacturer/i18n/da.po index b983f32f207..21685e8d1fd 100644 --- a/addons/product_manufacturer/i18n/da.po +++ b/addons/product_manufacturer/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-15 05:18+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/de.po b/addons/product_manufacturer/i18n/de.po index 2dd17f40cae..26998eabbc2 100644 --- a/addons/product_manufacturer/i18n/de.po +++ b/addons/product_manufacturer/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-27 05:03+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/el.po b/addons/product_manufacturer/i18n/el.po index f15c33878eb..82992cb5c0d 100644 --- a/addons/product_manufacturer/i18n/el.po +++ b/addons/product_manufacturer/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/es.po b/addons/product_manufacturer/i18n/es.po index 356e403dbda..e38cf4fa997 100644 --- a/addons/product_manufacturer/i18n/es.po +++ b/addons/product_manufacturer/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/es_CR.po b/addons/product_manufacturer/i18n/es_CR.po index 555cdc7d005..186f851246c 100644 --- a/addons/product_manufacturer/i18n/es_CR.po +++ b/addons/product_manufacturer/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/es_EC.po b/addons/product_manufacturer/i18n/es_EC.po index ef27bbf9412..64c14ff8ee4 100644 --- a/addons/product_manufacturer/i18n/es_EC.po +++ b/addons/product_manufacturer/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/et.po b/addons/product_manufacturer/i18n/et.po index 170593f79a3..55abb17addc 100644 --- a/addons/product_manufacturer/i18n/et.po +++ b/addons/product_manufacturer/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 05:25+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/fi.po b/addons/product_manufacturer/i18n/fi.po index f2720a2d412..22cbcecf75f 100644 --- a/addons/product_manufacturer/i18n/fi.po +++ b/addons/product_manufacturer/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/fr.po b/addons/product_manufacturer/i18n/fr.po index c9ff7244d44..2779b11da8b 100644 --- a/addons/product_manufacturer/i18n/fr.po +++ b/addons/product_manufacturer/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/gl.po b/addons/product_manufacturer/i18n/gl.po index 83cae5e89cc..8625f7085fe 100644 --- a/addons/product_manufacturer/i18n/gl.po +++ b/addons/product_manufacturer/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/hr.po b/addons/product_manufacturer/i18n/hr.po index d6d80acfae6..9820815702c 100644 --- a/addons/product_manufacturer/i18n/hr.po +++ b/addons/product_manufacturer/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/hu.po b/addons/product_manufacturer/i18n/hu.po index c33ac065165..6fb1ed68770 100644 --- a/addons/product_manufacturer/i18n/hu.po +++ b/addons/product_manufacturer/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/it.po b/addons/product_manufacturer/i18n/it.po index b709722c4c4..bc2803eac20 100644 --- a/addons/product_manufacturer/i18n/it.po +++ b/addons/product_manufacturer/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/ja.po b/addons/product_manufacturer/i18n/ja.po index 4005947ea88..fa84aeb39cf 100644 --- a/addons/product_manufacturer/i18n/ja.po +++ b/addons/product_manufacturer/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/lt.po b/addons/product_manufacturer/i18n/lt.po index e07c0cd5f80..d61811bb473 100644 --- a/addons/product_manufacturer/i18n/lt.po +++ b/addons/product_manufacturer/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/mk.po b/addons/product_manufacturer/i18n/mk.po index c243dcf0ae3..88f92d40128 100644 --- a/addons/product_manufacturer/i18n/mk.po +++ b/addons/product_manufacturer/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/mn.po b/addons/product_manufacturer/i18n/mn.po index 3d7307c2af7..07d8b6cf666 100644 --- a/addons/product_manufacturer/i18n/mn.po +++ b/addons/product_manufacturer/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/nb.po b/addons/product_manufacturer/i18n/nb.po index 6bd8a25ee6b..350bf3779a9 100644 --- a/addons/product_manufacturer/i18n/nb.po +++ b/addons/product_manufacturer/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/nl.po b/addons/product_manufacturer/i18n/nl.po index 874a8332521..fd6b7097a1b 100644 --- a/addons/product_manufacturer/i18n/nl.po +++ b/addons/product_manufacturer/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-07 05:51+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/pl.po b/addons/product_manufacturer/i18n/pl.po index b6f3384df79..85a333f9b0b 100644 --- a/addons/product_manufacturer/i18n/pl.po +++ b/addons/product_manufacturer/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/pt.po b/addons/product_manufacturer/i18n/pt.po index fac4299d553..bf90d2ade10 100644 --- a/addons/product_manufacturer/i18n/pt.po +++ b/addons/product_manufacturer/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/pt_BR.po b/addons/product_manufacturer/i18n/pt_BR.po index 33030acec00..c5c6ff64578 100644 --- a/addons/product_manufacturer/i18n/pt_BR.po +++ b/addons/product_manufacturer/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/ro.po b/addons/product_manufacturer/i18n/ro.po index cb1d75e50ba..cb1f94b9f2a 100644 --- a/addons/product_manufacturer/i18n/ro.po +++ b/addons/product_manufacturer/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-17 16:26+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/ru.po b/addons/product_manufacturer/i18n/ru.po index 8b92e107421..a7221d710ac 100644 --- a/addons/product_manufacturer/i18n/ru.po +++ b/addons/product_manufacturer/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/sl.po b/addons/product_manufacturer/i18n/sl.po index 27d60181476..e200f331700 100644 --- a/addons/product_manufacturer/i18n/sl.po +++ b/addons/product_manufacturer/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/sr.po b/addons/product_manufacturer/i18n/sr.po index 0cec3fa149c..c63148d67c1 100644 --- a/addons/product_manufacturer/i18n/sr.po +++ b/addons/product_manufacturer/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/sr@latin.po b/addons/product_manufacturer/i18n/sr@latin.po index 3a61d66e430..e8e62d1bd1a 100644 --- a/addons/product_manufacturer/i18n/sr@latin.po +++ b/addons/product_manufacturer/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/sv.po b/addons/product_manufacturer/i18n/sv.po index 3574f3184d3..659c54a2b99 100644 --- a/addons/product_manufacturer/i18n/sv.po +++ b/addons/product_manufacturer/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/tr.po b/addons/product_manufacturer/i18n/tr.po index a90b4e95745..f699da1434c 100644 --- a/addons/product_manufacturer/i18n/tr.po +++ b/addons/product_manufacturer/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/zh_CN.po b/addons/product_manufacturer/i18n/zh_CN.po index d0ab8b90a13..fa1b61c1fb0 100644 --- a/addons/product_manufacturer/i18n/zh_CN.po +++ b/addons/product_manufacturer/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/zh_TW.po b/addons/product_manufacturer/i18n/zh_TW.po index e0aa0e59cc4..0c4f739d5a5 100644 --- a/addons/product_manufacturer/i18n/zh_TW.po +++ b/addons/product_manufacturer/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_margin/i18n/ar.po b/addons/product_margin/i18n/ar.po index 1e43d4ac146..942538c1fe6 100644 --- a/addons/product_margin/i18n/ar.po +++ b/addons/product_margin/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/bg.po b/addons/product_margin/i18n/bg.po index e231ab0922b..addae70b503 100644 --- a/addons/product_margin/i18n/bg.po +++ b/addons/product_margin/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/bs.po b/addons/product_margin/i18n/bs.po index ac180f63aaa..e3d408252e5 100644 --- a/addons/product_margin/i18n/bs.po +++ b/addons/product_margin/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-31 05:47+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ca.po b/addons/product_margin/i18n/ca.po index f0324b70b34..573340ca03d 100644 --- a/addons/product_margin/i18n/ca.po +++ b/addons/product_margin/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/cs.po b/addons/product_margin/i18n/cs.po index 536952f26d4..f7bce2c5e9b 100644 --- a/addons/product_margin/i18n/cs.po +++ b/addons/product_margin/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/da.po b/addons/product_margin/i18n/da.po index 162753c5135..f7eacaec842 100644 --- a/addons/product_margin/i18n/da.po +++ b/addons/product_margin/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:51+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/de.po b/addons/product_margin/i18n/de.po index f1b857be5a4..8173a81226f 100644 --- a/addons/product_margin/i18n/de.po +++ b/addons/product_margin/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/el.po b/addons/product_margin/i18n/el.po index 773140f3d42..dcd320ae598 100644 --- a/addons/product_margin/i18n/el.po +++ b/addons/product_margin/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/es.po b/addons/product_margin/i18n/es.po index d3a49950e39..dc945181d36 100644 --- a/addons/product_margin/i18n/es.po +++ b/addons/product_margin/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/es_AR.po b/addons/product_margin/i18n/es_AR.po index 96cbb6f432e..1c506cbf727 100644 --- a/addons/product_margin/i18n/es_AR.po +++ b/addons/product_margin/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/es_CR.po b/addons/product_margin/i18n/es_CR.po index f4b77771a86..2c990d9a442 100644 --- a/addons/product_margin/i18n/es_CR.po +++ b/addons/product_margin/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/es_EC.po b/addons/product_margin/i18n/es_EC.po index 369701dadb0..fd05466ffa3 100644 --- a/addons/product_margin/i18n/es_EC.po +++ b/addons/product_margin/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/et.po b/addons/product_margin/i18n/et.po index 9ff5ac45efe..875b6f317fe 100644 --- a/addons/product_margin/i18n/et.po +++ b/addons/product_margin/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/fi.po b/addons/product_margin/i18n/fi.po index baf7a8168d0..2e8eb3cd9f1 100644 --- a/addons/product_margin/i18n/fi.po +++ b/addons/product_margin/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/fr.po b/addons/product_margin/i18n/fr.po index 0cfbbe2c6d7..8ec686468eb 100644 --- a/addons/product_margin/i18n/fr.po +++ b/addons/product_margin/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-15 05:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/gl.po b/addons/product_margin/i18n/gl.po index b222afdf3c3..aa464c7460d 100644 --- a/addons/product_margin/i18n/gl.po +++ b/addons/product_margin/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/gu.po b/addons/product_margin/i18n/gu.po index f5d8098ded4..a91b063f3ca 100644 --- a/addons/product_margin/i18n/gu.po +++ b/addons/product_margin/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/hr.po b/addons/product_margin/i18n/hr.po index c52e45e2d21..3c23a1f8811 100644 --- a/addons/product_margin/i18n/hr.po +++ b/addons/product_margin/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-24 06:37+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/hu.po b/addons/product_margin/i18n/hu.po index 8061f2125ab..188593dbf4e 100644 --- a/addons/product_margin/i18n/hu.po +++ b/addons/product_margin/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/id.po b/addons/product_margin/i18n/id.po index 2c7f1bac49f..19aef88dac6 100644 --- a/addons/product_margin/i18n/id.po +++ b/addons/product_margin/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/it.po b/addons/product_margin/i18n/it.po index 089f0966afa..36ef33abea0 100644 --- a/addons/product_margin/i18n/it.po +++ b/addons/product_margin/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ja.po b/addons/product_margin/i18n/ja.po index 039fbcc4237..7038db606ee 100644 --- a/addons/product_margin/i18n/ja.po +++ b/addons/product_margin/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ko.po b/addons/product_margin/i18n/ko.po index 7c76a51f5fc..227602d9a19 100644 --- a/addons/product_margin/i18n/ko.po +++ b/addons/product_margin/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/lt.po b/addons/product_margin/i18n/lt.po index 6d8cf8dfbb3..f362f2afff2 100644 --- a/addons/product_margin/i18n/lt.po +++ b/addons/product_margin/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/mk.po b/addons/product_margin/i18n/mk.po index 32a6b2d994c..5067c48d968 100644 --- a/addons/product_margin/i18n/mk.po +++ b/addons/product_margin/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: product_margin diff --git a/addons/product_margin/i18n/nl.po b/addons/product_margin/i18n/nl.po index 8b0c08e5e15..8d7abb1b6eb 100644 --- a/addons/product_margin/i18n/nl.po +++ b/addons/product_margin/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-15 18:40+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/nl_BE.po b/addons/product_margin/i18n/nl_BE.po index 74200f6666b..5eb846eb5fd 100644 --- a/addons/product_margin/i18n/nl_BE.po +++ b/addons/product_margin/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/pl.po b/addons/product_margin/i18n/pl.po index 3ffcc03a6e1..1acb0315065 100644 --- a/addons/product_margin/i18n/pl.po +++ b/addons/product_margin/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/pt.po b/addons/product_margin/i18n/pt.po index a89f10a609e..dc47b0a10b6 100644 --- a/addons/product_margin/i18n/pt.po +++ b/addons/product_margin/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/pt_BR.po b/addons/product_margin/i18n/pt_BR.po index ca1568f2aae..75a67c48a10 100644 --- a/addons/product_margin/i18n/pt_BR.po +++ b/addons/product_margin/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ro.po b/addons/product_margin/i18n/ro.po index 82a3070fe34..f26ce83a2e5 100644 --- a/addons/product_margin/i18n/ro.po +++ b/addons/product_margin/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-10 12:08+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ru.po b/addons/product_margin/i18n/ru.po index 6e16fe19846..d45df1a247f 100644 --- a/addons/product_margin/i18n/ru.po +++ b/addons/product_margin/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sl.po b/addons/product_margin/i18n/sl.po index eae496e6c66..84ee702bfa3 100644 --- a/addons/product_margin/i18n/sl.po +++ b/addons/product_margin/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sq.po b/addons/product_margin/i18n/sq.po index b684fd9939f..9132987724b 100644 --- a/addons/product_margin/i18n/sq.po +++ b/addons/product_margin/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:27+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sr.po b/addons/product_margin/i18n/sr.po index f1df63f8780..b3377cf2b21 100644 --- a/addons/product_margin/i18n/sr.po +++ b/addons/product_margin/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sr@latin.po b/addons/product_margin/i18n/sr@latin.po index 29990ebbd9e..4f6e1abf7f6 100644 --- a/addons/product_margin/i18n/sr@latin.po +++ b/addons/product_margin/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sv.po b/addons/product_margin/i18n/sv.po index 98b316dfaf4..18d31a4e48f 100644 --- a/addons/product_margin/i18n/sv.po +++ b/addons/product_margin/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/tlh.po b/addons/product_margin/i18n/tlh.po index b0219937687..2c8e7a56093 100644 --- a/addons/product_margin/i18n/tlh.po +++ b/addons/product_margin/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/tr.po b/addons/product_margin/i18n/tr.po index 346361ac64c..d531c57c2a9 100644 --- a/addons/product_margin/i18n/tr.po +++ b/addons/product_margin/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/uk.po b/addons/product_margin/i18n/uk.po index 9b9b0c08a39..1963a022757 100644 --- a/addons/product_margin/i18n/uk.po +++ b/addons/product_margin/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/vi.po b/addons/product_margin/i18n/vi.po index 767e34e880a..35296e0ff84 100644 --- a/addons/product_margin/i18n/vi.po +++ b/addons/product_margin/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/zh_CN.po b/addons/product_margin/i18n/zh_CN.po index b663cabf712..364f1a70e43 100644 --- a/addons/product_margin/i18n/zh_CN.po +++ b/addons/product_margin/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 @@ -52,7 +52,7 @@ msgstr "营业额-标准价格" #. module: product_margin #: field:product.product,total_margin_rate:0 msgid "Total Margin Rate(%)" -msgstr "" +msgstr "总盈利率(%)" #. module: product_margin #: selection:product.margin,invoice_state:0 @@ -78,7 +78,7 @@ msgstr "平均单价" #. module: product_margin #: field:product.product,sale_num_invoiced:0 msgid "# Invoiced in Sale" -msgstr "" +msgstr "# 销售开票" #. module: product_margin #: view:product.product:0 @@ -120,7 +120,7 @@ msgstr "供应商发票数量合计" #. module: product_margin #: field:product.product,date_to:0 msgid "Margin Date To" -msgstr "" +msgstr "盈利结束日" #. module: product_margin #: view:product.product:0 @@ -188,7 +188,7 @@ msgstr "总利润" #. module: product_margin #: field:product.product,date_from:0 msgid "Margin Date From" -msgstr "" +msgstr "盈利开始日" #. module: product_margin #: help:product.product,turnover:0 @@ -209,7 +209,7 @@ msgstr "采购" #. module: product_margin #: field:product.product,purchase_num_invoiced:0 msgid "# Invoiced in Purchase" -msgstr "" +msgstr "# 采购开票" #. module: product_margin #: help:product.product,expected_margin:0 diff --git a/addons/product_margin/i18n/zh_TW.po b/addons/product_margin/i18n/zh_TW.po index 9fd0e8a678d..912cb77cde4 100644 --- a/addons/product_margin/i18n/zh_TW.po +++ b/addons/product_margin/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_visible_discount/i18n/ar.po b/addons/product_visible_discount/i18n/ar.po index fe95164d80a..951f8b18688 100644 --- a/addons/product_visible_discount/i18n/ar.po +++ b/addons/product_visible_discount/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/bg.po b/addons/product_visible_discount/i18n/bg.po index bf488690ea8..697fbf0329b 100644 --- a/addons/product_visible_discount/i18n/bg.po +++ b/addons/product_visible_discount/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/bs.po b/addons/product_visible_discount/i18n/bs.po index a5fdb6b9890..e6312d35222 100644 --- a/addons/product_visible_discount/i18n/bs.po +++ b/addons/product_visible_discount/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-31 05:47+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/ca.po b/addons/product_visible_discount/i18n/ca.po index 9c653002025..84237d56d2c 100644 --- a/addons/product_visible_discount/i18n/ca.po +++ b/addons/product_visible_discount/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/cs.po b/addons/product_visible_discount/i18n/cs.po index 93ff1f3f57f..66f7445d4a8 100644 --- a/addons/product_visible_discount/i18n/cs.po +++ b/addons/product_visible_discount/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/da.po b/addons/product_visible_discount/i18n/da.po index 49c030ac029..343f1e54f4b 100644 --- a/addons/product_visible_discount/i18n/da.po +++ b/addons/product_visible_discount/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-15 05:18+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/de.po b/addons/product_visible_discount/i18n/de.po index b47b005d005..4dde74fec45 100644 --- a/addons/product_visible_discount/i18n/de.po +++ b/addons/product_visible_discount/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/el.po b/addons/product_visible_discount/i18n/el.po index 0ada8062db3..5e3249ea32a 100644 --- a/addons/product_visible_discount/i18n/el.po +++ b/addons/product_visible_discount/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/es.po b/addons/product_visible_discount/i18n/es.po index eabd04a70eb..ef1a7324169 100644 --- a/addons/product_visible_discount/i18n/es.po +++ b/addons/product_visible_discount/i18n/es.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/es_CR.po b/addons/product_visible_discount/i18n/es_CR.po index 3cef0676ca3..648bde96734 100644 --- a/addons/product_visible_discount/i18n/es_CR.po +++ b/addons/product_visible_discount/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/es_EC.po b/addons/product_visible_discount/i18n/es_EC.po index 4cbdb762045..28db3e165e4 100644 --- a/addons/product_visible_discount/i18n/es_EC.po +++ b/addons/product_visible_discount/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/et.po b/addons/product_visible_discount/i18n/et.po index 0c44d45161f..deacb52327f 100644 --- a/addons/product_visible_discount/i18n/et.po +++ b/addons/product_visible_discount/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/fi.po b/addons/product_visible_discount/i18n/fi.po index 2207bda6e08..727a3f714f7 100644 --- a/addons/product_visible_discount/i18n/fi.po +++ b/addons/product_visible_discount/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/fr.po b/addons/product_visible_discount/i18n/fr.po index 828115dfed7..60e5a540877 100644 --- a/addons/product_visible_discount/i18n/fr.po +++ b/addons/product_visible_discount/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/gl.po b/addons/product_visible_discount/i18n/gl.po index e8addca8243..7c8b1b9d396 100644 --- a/addons/product_visible_discount/i18n/gl.po +++ b/addons/product_visible_discount/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/hr.po b/addons/product_visible_discount/i18n/hr.po index d26af374299..7959341b11e 100644 --- a/addons/product_visible_discount/i18n/hr.po +++ b/addons/product_visible_discount/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/hu.po b/addons/product_visible_discount/i18n/hu.po index ea65eab4c07..48967eec104 100644 --- a/addons/product_visible_discount/i18n/hu.po +++ b/addons/product_visible_discount/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/it.po b/addons/product_visible_discount/i18n/it.po index efc8c31f1d2..0514cc5f5df 100644 --- a/addons/product_visible_discount/i18n/it.po +++ b/addons/product_visible_discount/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/ja.po b/addons/product_visible_discount/i18n/ja.po index c5ba880fe1f..84f2b003926 100644 --- a/addons/product_visible_discount/i18n/ja.po +++ b/addons/product_visible_discount/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/lt.po b/addons/product_visible_discount/i18n/lt.po index f69a069d2c1..6376b76b1b1 100644 --- a/addons/product_visible_discount/i18n/lt.po +++ b/addons/product_visible_discount/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/mk.po b/addons/product_visible_discount/i18n/mk.po index b71b00f0ad1..7ac38948924 100644 --- a/addons/product_visible_discount/i18n/mk.po +++ b/addons/product_visible_discount/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/mn.po b/addons/product_visible_discount/i18n/mn.po index 63766a434ff..1b6b9a16356 100644 --- a/addons/product_visible_discount/i18n/mn.po +++ b/addons/product_visible_discount/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/nl.po b/addons/product_visible_discount/i18n/nl.po index 0af4d866b30..44b6787f91c 100644 --- a/addons/product_visible_discount/i18n/nl.po +++ b/addons/product_visible_discount/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/pl.po b/addons/product_visible_discount/i18n/pl.po index afe66c5b535..b2271404254 100644 --- a/addons/product_visible_discount/i18n/pl.po +++ b/addons/product_visible_discount/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/pt.po b/addons/product_visible_discount/i18n/pt.po index 4bbe7a70dcc..eae739fb3e9 100644 --- a/addons/product_visible_discount/i18n/pt.po +++ b/addons/product_visible_discount/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/pt_BR.po b/addons/product_visible_discount/i18n/pt_BR.po index ad138dd9be7..13f8380dcf7 100644 --- a/addons/product_visible_discount/i18n/pt_BR.po +++ b/addons/product_visible_discount/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/ro.po b/addons/product_visible_discount/i18n/ro.po index f23b9b0834c..9e3f6d29f6f 100644 --- a/addons/product_visible_discount/i18n/ro.po +++ b/addons/product_visible_discount/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-17 16:24+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/ru.po b/addons/product_visible_discount/i18n/ru.po index d8a228c1cff..3105353ce6b 100644 --- a/addons/product_visible_discount/i18n/ru.po +++ b/addons/product_visible_discount/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/sl.po b/addons/product_visible_discount/i18n/sl.po index f95ac2e16ee..56b668e1e1b 100644 --- a/addons/product_visible_discount/i18n/sl.po +++ b/addons/product_visible_discount/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/sr.po b/addons/product_visible_discount/i18n/sr.po index d55da711772..f2014b778d3 100644 --- a/addons/product_visible_discount/i18n/sr.po +++ b/addons/product_visible_discount/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/sr@latin.po b/addons/product_visible_discount/i18n/sr@latin.po index 634bc6c7152..b94a9bd1ca3 100644 --- a/addons/product_visible_discount/i18n/sr@latin.po +++ b/addons/product_visible_discount/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/sv.po b/addons/product_visible_discount/i18n/sv.po index 041e848f371..e981ff99b07 100644 --- a/addons/product_visible_discount/i18n/sv.po +++ b/addons/product_visible_discount/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/tr.po b/addons/product_visible_discount/i18n/tr.po index 7a3288c7186..09788a78215 100644 --- a/addons/product_visible_discount/i18n/tr.po +++ b/addons/product_visible_discount/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/vi.po b/addons/product_visible_discount/i18n/vi.po index 7acc2227ae2..18d05b73979 100644 --- a/addons/product_visible_discount/i18n/vi.po +++ b/addons/product_visible_discount/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/zh_CN.po b/addons/product_visible_discount/i18n/zh_CN.po index cc03fdc4a28..fba7cba1bee 100644 --- a/addons/product_visible_discount/i18n/zh_CN.po +++ b/addons/product_visible_discount/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/project/i18n/ar.po b/addons/project/i18n/ar.po index c771e116c5b..c29c927cb73 100644 --- a/addons/project/i18n/ar.po +++ b/addons/project/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/bg.po b/addons/project/i18n/bg.po index edca41b06d8..199cceecc6d 100644 --- a/addons/project/i18n/bg.po +++ b/addons/project/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/bs.po b/addons/project/i18n/bs.po index ece983cbbe3..f8995d191e2 100644 --- a/addons/project/i18n/bs.po +++ b/addons/project/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ca.po b/addons/project/i18n/ca.po index 26b6f8dbf6d..3435a7720a7 100644 --- a/addons/project/i18n/ca.po +++ b/addons/project/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/cs.po b/addons/project/i18n/cs.po index 641bee2d4d3..9eba2cf3faa 100644 --- a/addons/project/i18n/cs.po +++ b/addons/project/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/da.po b/addons/project/i18n/da.po index a2625905da6..ef2f4f245b4 100644 --- a/addons/project/i18n/da.po +++ b/addons/project/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/de.po b/addons/project/i18n/de.po index 5fdd19f0db3..a5fd12c6404 100644 --- a/addons/project/i18n/de.po +++ b/addons/project/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/el.po b/addons/project/i18n/el.po index e4632dcd6e7..8f20a92257c 100644 --- a/addons/project/i18n/el.po +++ b/addons/project/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/project/i18n/es.po b/addons/project/i18n/es.po index b61bdb1dd79..585ec1d7199 100644 --- a/addons/project/i18n/es.po +++ b/addons/project/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_AR.po b/addons/project/i18n/es_AR.po index ae876b48ff8..23c1b447b41 100644 --- a/addons/project/i18n/es_AR.po +++ b/addons/project/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_CO.po b/addons/project/i18n/es_CO.po index 9d504b945c5..0eee144cd7b 100644 --- a/addons/project/i18n/es_CO.po +++ b/addons/project/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_CR.po b/addons/project/i18n/es_CR.po index cc93ef47511..265b85dfd5c 100644 --- a/addons/project/i18n/es_CR.po +++ b/addons/project/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_EC.po b/addons/project/i18n/es_EC.po index 6fb82f101a7..991f281ec45 100644 --- a/addons/project/i18n/es_EC.po +++ b/addons/project/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_MX.po b/addons/project/i18n/es_MX.po index 03b77a06475..b7841146768 100644 --- a/addons/project/i18n/es_MX.po +++ b/addons/project/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_PY.po b/addons/project/i18n/es_PY.po index 30a1321fccd..79d574931c2 100644 --- a/addons/project/i18n/es_PY.po +++ b/addons/project/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/et.po b/addons/project/i18n/et.po index fe0f970974f..0e588fe4694 100644 --- a/addons/project/i18n/et.po +++ b/addons/project/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/eu.po b/addons/project/i18n/eu.po index 62ac8170c0c..9198018189c 100644 --- a/addons/project/i18n/eu.po +++ b/addons/project/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/fi.po b/addons/project/i18n/fi.po index ea10c225012..e3a126f2ea2 100644 --- a/addons/project/i18n/fi.po +++ b/addons/project/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: project diff --git a/addons/project/i18n/fr.po b/addons/project/i18n/fr.po index 31f27251b9b..1396c8c92f8 100644 --- a/addons/project/i18n/fr.po +++ b/addons/project/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-29 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/gl.po b/addons/project/i18n/gl.po index a3e341d5698..c5c5e544f2d 100644 --- a/addons/project/i18n/gl.po +++ b/addons/project/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/gu.po b/addons/project/i18n/gu.po index 6001d26ec2f..a596af3b1da 100644 --- a/addons/project/i18n/gu.po +++ b/addons/project/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/hr.po b/addons/project/i18n/hr.po index 36945afd812..aeee5fc3d72 100644 --- a/addons/project/i18n/hr.po +++ b/addons/project/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/hu.po b/addons/project/i18n/hu.po index 2443eb2ee88..c0c0e7ccb35 100644 --- a/addons/project/i18n/hu.po +++ b/addons/project/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: selection:project.project,state:0 diff --git a/addons/project/i18n/id.po b/addons/project/i18n/id.po index 7c8f96945ed..09893766980 100644 --- a/addons/project/i18n/id.po +++ b/addons/project/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/it.po b/addons/project/i18n/it.po index 94dde60238b..05f278b650e 100644 --- a/addons/project/i18n/it.po +++ b/addons/project/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ja.po b/addons/project/i18n/ja.po index 93df2096d7f..697efbba0b0 100644 --- a/addons/project/i18n/ja.po +++ b/addons/project/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:51+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ko.po b/addons/project/i18n/ko.po index eb2b110d84c..937e1b22384 100644 --- a/addons/project/i18n/ko.po +++ b/addons/project/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/lt.po b/addons/project/i18n/lt.po index b667eb23b88..c4c6e039bd7 100644 --- a/addons/project/i18n/lt.po +++ b/addons/project/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/lv.po b/addons/project/i18n/lv.po index e02a3ef94fe..84088ab5c19 100644 --- a/addons/project/i18n/lv.po +++ b/addons/project/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/mk.po b/addons/project/i18n/mk.po index 554caae531b..7d3fbb8d871 100644 --- a/addons/project/i18n/mk.po +++ b/addons/project/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: project diff --git a/addons/project/i18n/mn.po b/addons/project/i18n/mn.po index 905102c3ce2..47aa64201a9 100644 --- a/addons/project/i18n/mn.po +++ b/addons/project/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/nb.po b/addons/project/i18n/nb.po index 459e54ee2fa..e434b1b5549 100644 --- a/addons/project/i18n/nb.po +++ b/addons/project/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/nl.po b/addons/project/i18n/nl.po index 484b818e733..cdb5f066cf2 100644 --- a/addons/project/i18n/nl.po +++ b/addons/project/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-09-04 06:51+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-05 05:18+0000\n" -"X-Generator: Launchpad (build 16758)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/nl_BE.po b/addons/project/i18n/nl_BE.po index a4813d1bad6..8e6d36b684a 100644 --- a/addons/project/i18n/nl_BE.po +++ b/addons/project/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/pl.po b/addons/project/i18n/pl.po index 0ccf58d2b29..698fd292083 100644 --- a/addons/project/i18n/pl.po +++ b/addons/project/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: project diff --git a/addons/project/i18n/pt.po b/addons/project/i18n/pt.po index a72590b3225..4415ece90e2 100644 --- a/addons/project/i18n/pt.po +++ b/addons/project/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/pt_BR.po b/addons/project/i18n/pt_BR.po index d9c57b4131d..69c80b6acdb 100644 --- a/addons/project/i18n/pt_BR.po +++ b/addons/project/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ro.po b/addons/project/i18n/ro.po index b0c880caa14..9ebb827b169 100644 --- a/addons/project/i18n/ro.po +++ b/addons/project/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ru.po b/addons/project/i18n/ru.po index 49c405293a3..7a4a4824ec1 100644 --- a/addons/project/i18n/ru.po +++ b/addons/project/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/sk.po b/addons/project/i18n/sk.po index fafe590a7ad..5626bfc5239 100644 --- a/addons/project/i18n/sk.po +++ b/addons/project/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/sl.po b/addons/project/i18n/sl.po index cf5f3877629..028e82284dc 100644 --- a/addons/project/i18n/sl.po +++ b/addons/project/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-10-02 06:32+0000\n" -"Last-Translator: Matmoz \n" +"Last-Translator: Matjaž Mozetič (Matmoz) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-03 05:55+0000\n" -"X-Generator: Launchpad (build 16791)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/sq.po b/addons/project/i18n/sq.po index 55eaec5870a..e986b57d5fe 100644 --- a/addons/project/i18n/sq.po +++ b/addons/project/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:16+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/sv.po b/addons/project/i18n/sv.po index 57f06a3bda4..b1070bf5149 100644 --- a/addons/project/i18n/sv.po +++ b/addons/project/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/th.po b/addons/project/i18n/th.po index 9b7a4f4ea79..3146d305bdf 100644 --- a/addons/project/i18n/th.po +++ b/addons/project/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/tlh.po b/addons/project/i18n/tlh.po index aed6cfdc506..d7785814612 100644 --- a/addons/project/i18n/tlh.po +++ b/addons/project/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/tr.po b/addons/project/i18n/tr.po index a49329fff3b..fc9ae40cd49 100644 --- a/addons/project/i18n/tr.po +++ b/addons/project/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-10 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/uk.po b/addons/project/i18n/uk.po index acfa9cee0e3..02b640cb2f5 100644 --- a/addons/project/i18n/uk.po +++ b/addons/project/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/vi.po b/addons/project/i18n/vi.po index f81922c412c..6bd1bd1f43d 100644 --- a/addons/project/i18n/vi.po +++ b/addons/project/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/zh_CN.po b/addons/project/i18n/zh_CN.po index 7e012be2c94..963e70c376d 100644 --- a/addons/project/i18n/zh_CN.po +++ b/addons/project/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-08 06:26+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/zh_TW.po b/addons/project/i18n/zh_TW.po index f7a697b6536..5158f6f91fd 100644 --- a/addons/project/i18n/zh_TW.po +++ b/addons/project/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project #: view:project.project:0 diff --git a/addons/project_gtd/i18n/ar.po b/addons/project_gtd/i18n/ar.po index 74ac7478094..dba5fd1a3da 100644 --- a/addons/project_gtd/i18n/ar.po +++ b/addons/project_gtd/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/bg.po b/addons/project_gtd/i18n/bg.po index d48a82e595d..19267af8a51 100644 --- a/addons/project_gtd/i18n/bg.po +++ b/addons/project_gtd/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/bs.po b/addons/project_gtd/i18n/bs.po index 1a1aa01dafe..32f0284983d 100644 --- a/addons/project_gtd/i18n/bs.po +++ b/addons/project_gtd/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ca.po b/addons/project_gtd/i18n/ca.po index 17b3daa269d..c8546b4c409 100644 --- a/addons/project_gtd/i18n/ca.po +++ b/addons/project_gtd/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/cs.po b/addons/project_gtd/i18n/cs.po index 0e462688a5e..98115b44fc8 100644 --- a/addons/project_gtd/i18n/cs.po +++ b/addons/project_gtd/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/da.po b/addons/project_gtd/i18n/da.po index c980a610782..3bde9397a25 100644 --- a/addons/project_gtd/i18n/da.po +++ b/addons/project_gtd/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:51+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/de.po b/addons/project_gtd/i18n/de.po index c67ccc7ecaa..3bd4753c964 100644 --- a/addons/project_gtd/i18n/de.po +++ b/addons/project_gtd/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/el.po b/addons/project_gtd/i18n/el.po index 5a2a00f9298..1aeb8a3af7a 100644 --- a/addons/project_gtd/i18n/el.po +++ b/addons/project_gtd/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/es.po b/addons/project_gtd/i18n/es.po index e329e433a26..6155880ba52 100644 --- a/addons/project_gtd/i18n/es.po +++ b/addons/project_gtd/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/es_AR.po b/addons/project_gtd/i18n/es_AR.po index 7b5ef660c86..76d20ef4005 100644 --- a/addons/project_gtd/i18n/es_AR.po +++ b/addons/project_gtd/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/es_CR.po b/addons/project_gtd/i18n/es_CR.po index 5355808d816..4ba95bb8031 100644 --- a/addons/project_gtd/i18n/es_CR.po +++ b/addons/project_gtd/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/es_EC.po b/addons/project_gtd/i18n/es_EC.po index 6dd7aacbfee..33b0f28128a 100644 --- a/addons/project_gtd/i18n/es_EC.po +++ b/addons/project_gtd/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/et.po b/addons/project_gtd/i18n/et.po index 664f28f15ed..2e710bf78cb 100644 --- a/addons/project_gtd/i18n/et.po +++ b/addons/project_gtd/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/fi.po b/addons/project_gtd/i18n/fi.po index 50f40899edf..a72a038db3a 100644 --- a/addons/project_gtd/i18n/fi.po +++ b/addons/project_gtd/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/fr.po b/addons/project_gtd/i18n/fr.po index bd1d7d90231..23cee70e37f 100644 --- a/addons/project_gtd/i18n/fr.po +++ b/addons/project_gtd/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-29 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/gl.po b/addons/project_gtd/i18n/gl.po index 1db8e41ca5b..773d15f5ad3 100644 --- a/addons/project_gtd/i18n/gl.po +++ b/addons/project_gtd/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/hr.po b/addons/project_gtd/i18n/hr.po index e55f51502f1..afb7c8504f5 100644 --- a/addons/project_gtd/i18n/hr.po +++ b/addons/project_gtd/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/hu.po b/addons/project_gtd/i18n/hu.po index 0b6f6613ed1..318168a98c8 100644 --- a/addons/project_gtd/i18n/hu.po +++ b/addons/project_gtd/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/id.po b/addons/project_gtd/i18n/id.po index 20e0a4641c2..fa33ed8d4c7 100644 --- a/addons/project_gtd/i18n/id.po +++ b/addons/project_gtd/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/it.po b/addons/project_gtd/i18n/it.po index 26b296fbd9f..2fb5b91e9af 100644 --- a/addons/project_gtd/i18n/it.po +++ b/addons/project_gtd/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ja.po b/addons/project_gtd/i18n/ja.po index 64e2a5613a0..1a7f7d6337d 100644 --- a/addons/project_gtd/i18n/ja.po +++ b/addons/project_gtd/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ko.po b/addons/project_gtd/i18n/ko.po index d792aab36b7..e41b56f477a 100644 --- a/addons/project_gtd/i18n/ko.po +++ b/addons/project_gtd/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/lt.po b/addons/project_gtd/i18n/lt.po index 405a08cd405..d99bf94b3aa 100644 --- a/addons/project_gtd/i18n/lt.po +++ b/addons/project_gtd/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/lv.po b/addons/project_gtd/i18n/lv.po index 12651283f83..fc13117bbf5 100644 --- a/addons/project_gtd/i18n/lv.po +++ b/addons/project_gtd/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/mk.po b/addons/project_gtd/i18n/mk.po index f2bee87fe4c..69581b1d3ce 100644 --- a/addons/project_gtd/i18n/mk.po +++ b/addons/project_gtd/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/mn.po b/addons/project_gtd/i18n/mn.po index 9419236b7b9..6c58535549b 100644 --- a/addons/project_gtd/i18n/mn.po +++ b/addons/project_gtd/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/nl.po b/addons/project_gtd/i18n/nl.po index 3e080f8d669..a0d69e54071 100644 --- a/addons/project_gtd/i18n/nl.po +++ b/addons/project_gtd/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-08 10:03+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/nl_BE.po b/addons/project_gtd/i18n/nl_BE.po index cfc40b0a51c..289184b8514 100644 --- a/addons/project_gtd/i18n/nl_BE.po +++ b/addons/project_gtd/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/pl.po b/addons/project_gtd/i18n/pl.po index 4e3d3b44e5d..ea88169d54b 100644 --- a/addons/project_gtd/i18n/pl.po +++ b/addons/project_gtd/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/pt.po b/addons/project_gtd/i18n/pt.po index e33ccd6707c..cc033584d70 100644 --- a/addons/project_gtd/i18n/pt.po +++ b/addons/project_gtd/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/pt_BR.po b/addons/project_gtd/i18n/pt_BR.po index f8c8887c698..2a475ca29e0 100644 --- a/addons/project_gtd/i18n/pt_BR.po +++ b/addons/project_gtd/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 21:00+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ro.po b/addons/project_gtd/i18n/ro.po index 0a7865da27f..0743404c020 100644 --- a/addons/project_gtd/i18n/ro.po +++ b/addons/project_gtd/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-10 12:13+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ru.po b/addons/project_gtd/i18n/ru.po index 04bb8bbbb8c..a8b0e0d699d 100644 --- a/addons/project_gtd/i18n/ru.po +++ b/addons/project_gtd/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/sl.po b/addons/project_gtd/i18n/sl.po index ac0bd28c4e9..633f9633fec 100644 --- a/addons/project_gtd/i18n/sl.po +++ b/addons/project_gtd/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/sq.po b/addons/project_gtd/i18n/sq.po index a6e41df5b0b..01f791fab82 100644 --- a/addons/project_gtd/i18n/sq.po +++ b/addons/project_gtd/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/sv.po b/addons/project_gtd/i18n/sv.po index 9c296319a90..c759a185ba3 100644 --- a/addons/project_gtd/i18n/sv.po +++ b/addons/project_gtd/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/tlh.po b/addons/project_gtd/i18n/tlh.po index eec54f66e11..e2bf75455f9 100644 --- a/addons/project_gtd/i18n/tlh.po +++ b/addons/project_gtd/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/tr.po b/addons/project_gtd/i18n/tr.po index 033dff9c53e..413b508a7a8 100644 --- a/addons/project_gtd/i18n/tr.po +++ b/addons/project_gtd/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/uk.po b/addons/project_gtd/i18n/uk.po index 249656fc41f..d7aee06ee27 100644 --- a/addons/project_gtd/i18n/uk.po +++ b/addons/project_gtd/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/vi.po b/addons/project_gtd/i18n/vi.po index 29aab6efe75..884c0e62a68 100644 --- a/addons/project_gtd/i18n/vi.po +++ b/addons/project_gtd/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/zh_CN.po b/addons/project_gtd/i18n/zh_CN.po index f64934c1dde..f98c2e3f98b 100644 --- a/addons/project_gtd/i18n/zh_CN.po +++ b/addons/project_gtd/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/zh_TW.po b/addons/project_gtd/i18n/zh_TW.po index df1d2102149..dd186cd9a90 100644 --- a/addons/project_gtd/i18n/zh_TW.po +++ b/addons/project_gtd/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_issue/i18n/ar.po b/addons/project_issue/i18n/ar.po index 3b333f7780c..816a24f215e 100644 --- a/addons/project_issue/i18n/ar.po +++ b/addons/project_issue/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/bs.po b/addons/project_issue/i18n/bs.po index fff5f959481..e5dc302f045 100644 --- a/addons/project_issue/i18n/bs.po +++ b/addons/project_issue/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-07 05:03+0000\n" -"X-Generator: Launchpad (build 16721)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/ca.po b/addons/project_issue/i18n/ca.po index a36a72781d8..0268ec77ec4 100644 --- a/addons/project_issue/i18n/ca.po +++ b/addons/project_issue/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/cs.po b/addons/project_issue/i18n/cs.po index 7e5dfb225b1..554a19199fc 100644 --- a/addons/project_issue/i18n/cs.po +++ b/addons/project_issue/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/da.po b/addons/project_issue/i18n/da.po index 550e638d578..84f012a2ad7 100644 --- a/addons/project_issue/i18n/da.po +++ b/addons/project_issue/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:51+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/de.po b/addons/project_issue/i18n/de.po index a44d58a1451..5e02cf131b8 100644 --- a/addons/project_issue/i18n/de.po +++ b/addons/project_issue/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/es.po b/addons/project_issue/i18n/es.po index 31a7f6414ce..45bd3ad4da6 100644 --- a/addons/project_issue/i18n/es.po +++ b/addons/project_issue/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/es_CR.po b/addons/project_issue/i18n/es_CR.po index 57f67339c4a..7dc0bfdc008 100644 --- a/addons/project_issue/i18n/es_CR.po +++ b/addons/project_issue/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/fi.po b/addons/project_issue/i18n/fi.po index 4a3dea865e2..998cd077c32 100644 --- a/addons/project_issue/i18n/fi.po +++ b/addons/project_issue/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/fr.po b/addons/project_issue/i18n/fr.po index ce0422a0344..f40713d6070 100644 --- a/addons/project_issue/i18n/fr.po +++ b/addons/project_issue/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-29 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/hr.po b/addons/project_issue/i18n/hr.po index 6af4cc5355a..7c3d7da6c5d 100644 --- a/addons/project_issue/i18n/hr.po +++ b/addons/project_issue/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/hu.po b/addons/project_issue/i18n/hu.po index 915f6816c57..ecba64fb638 100644 --- a/addons/project_issue/i18n/hu.po +++ b/addons/project_issue/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/it.po b/addons/project_issue/i18n/it.po index 52f30fefc0e..e8282456ba4 100644 --- a/addons/project_issue/i18n/it.po +++ b/addons/project_issue/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/ja.po b/addons/project_issue/i18n/ja.po index 60c932e3797..94e47326bf5 100644 --- a/addons/project_issue/i18n/ja.po +++ b/addons/project_issue/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/lt.po b/addons/project_issue/i18n/lt.po index 79b1add828a..84c9bac099c 100644 --- a/addons/project_issue/i18n/lt.po +++ b/addons/project_issue/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/lv.po b/addons/project_issue/i18n/lv.po index 4225f1b42ab..3391a68dcf4 100644 --- a/addons/project_issue/i18n/lv.po +++ b/addons/project_issue/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/mk.po b/addons/project_issue/i18n/mk.po index c1c94579269..7000371ffff 100644 --- a/addons/project_issue/i18n/mk.po +++ b/addons/project_issue/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: project_issue diff --git a/addons/project_issue/i18n/mn.po b/addons/project_issue/i18n/mn.po index 0de839ff792..4a6498fa32a 100644 --- a/addons/project_issue/i18n/mn.po +++ b/addons/project_issue/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/nb.po b/addons/project_issue/i18n/nb.po index fce3ec34412..8a3f1f46f34 100644 --- a/addons/project_issue/i18n/nb.po +++ b/addons/project_issue/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/nl.po b/addons/project_issue/i18n/nl.po index 0ec9d1ac8b7..fc7758cf3a1 100644 --- a/addons/project_issue/i18n/nl.po +++ b/addons/project_issue/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-20 12:14+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/nl_BE.po b/addons/project_issue/i18n/nl_BE.po index c8612f65b32..a0ca3164465 100644 --- a/addons/project_issue/i18n/nl_BE.po +++ b/addons/project_issue/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/pl.po b/addons/project_issue/i18n/pl.po index 428e4db6625..7c6655abf27 100644 --- a/addons/project_issue/i18n/pl.po +++ b/addons/project_issue/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/pt.po b/addons/project_issue/i18n/pt.po index 544fe6b3582..50bcc665bff 100644 --- a/addons/project_issue/i18n/pt.po +++ b/addons/project_issue/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/pt_BR.po b/addons/project_issue/i18n/pt_BR.po index c503ddae5cf..2630d985e64 100644 --- a/addons/project_issue/i18n/pt_BR.po +++ b/addons/project_issue/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/ro.po b/addons/project_issue/i18n/ro.po index f96084726d7..5de942a7fe8 100644 --- a/addons/project_issue/i18n/ro.po +++ b/addons/project_issue/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-03-07 19:10+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/ru.po b/addons/project_issue/i18n/ru.po index 4178a8ac23d..f655565965f 100644 --- a/addons/project_issue/i18n/ru.po +++ b/addons/project_issue/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/sk.po b/addons/project_issue/i18n/sk.po index bfea1df768b..f43b5741b98 100644 --- a/addons/project_issue/i18n/sk.po +++ b/addons/project_issue/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/sl.po b/addons/project_issue/i18n/sl.po index 6ed33573826..aa0a4e39cf0 100644 --- a/addons/project_issue/i18n/sl.po +++ b/addons/project_issue/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-10-21 06:49+0000\n" -"Last-Translator: Matmoz \n" +"Last-Translator: Matjaž Mozetič (Matmoz) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-22 05:15+0000\n" -"X-Generator: Launchpad (build 16807)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/sv.po b/addons/project_issue/i18n/sv.po index dc02e46472a..52c897a92ec 100644 --- a/addons/project_issue/i18n/sv.po +++ b/addons/project_issue/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/tr.po b/addons/project_issue/i18n/tr.po index e9816f8809c..2d0c18f3811 100644 --- a/addons/project_issue/i18n/tr.po +++ b/addons/project_issue/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/zh_CN.po b/addons/project_issue/i18n/zh_CN.po index cb508bcd27c..955035074c3 100644 --- a/addons/project_issue/i18n/zh_CN.po +++ b/addons/project_issue/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/zh_TW.po b/addons/project_issue/i18n/zh_TW.po index 2c6ccb65faa..f79e754c5b3 100644 --- a/addons/project_issue/i18n/zh_TW.po +++ b/addons/project_issue/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue_sheet/i18n/ar.po b/addons/project_issue_sheet/i18n/ar.po index 3e53cf78316..693a79b8570 100644 --- a/addons/project_issue_sheet/i18n/ar.po +++ b/addons/project_issue_sheet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/ca.po b/addons/project_issue_sheet/i18n/ca.po index 7865adaf27b..299e18eb010 100644 --- a/addons/project_issue_sheet/i18n/ca.po +++ b/addons/project_issue_sheet/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/cs.po b/addons/project_issue_sheet/i18n/cs.po index 928f2d654b3..297bb39cfe1 100644 --- a/addons/project_issue_sheet/i18n/cs.po +++ b/addons/project_issue_sheet/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/da.po b/addons/project_issue_sheet/i18n/da.po index e1d8e126882..4b06b428b54 100644 --- a/addons/project_issue_sheet/i18n/da.po +++ b/addons/project_issue_sheet/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/de.po b/addons/project_issue_sheet/i18n/de.po index 76b78380069..048c71a82fd 100644 --- a/addons/project_issue_sheet/i18n/de.po +++ b/addons/project_issue_sheet/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/es.po b/addons/project_issue_sheet/i18n/es.po index 13477f6c5f6..31fd0118392 100644 --- a/addons/project_issue_sheet/i18n/es.po +++ b/addons/project_issue_sheet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/es_CR.po b/addons/project_issue_sheet/i18n/es_CR.po index 49e36335ea1..70f0dcb4166 100644 --- a/addons/project_issue_sheet/i18n/es_CR.po +++ b/addons/project_issue_sheet/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/fi.po b/addons/project_issue_sheet/i18n/fi.po index f7d2a477911..1a907c115c3 100644 --- a/addons/project_issue_sheet/i18n/fi.po +++ b/addons/project_issue_sheet/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/fr.po b/addons/project_issue_sheet/i18n/fr.po index 824054bc713..83a8bbf9f1b 100644 --- a/addons/project_issue_sheet/i18n/fr.po +++ b/addons/project_issue_sheet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/gl.po b/addons/project_issue_sheet/i18n/gl.po index 95f9a2c842f..c2226f0bfaf 100644 --- a/addons/project_issue_sheet/i18n/gl.po +++ b/addons/project_issue_sheet/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/hr.po b/addons/project_issue_sheet/i18n/hr.po index 648db3620d4..96c17acc556 100644 --- a/addons/project_issue_sheet/i18n/hr.po +++ b/addons/project_issue_sheet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/hu.po b/addons/project_issue_sheet/i18n/hu.po index 371038f6292..7fe91f36291 100644 --- a/addons/project_issue_sheet/i18n/hu.po +++ b/addons/project_issue_sheet/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/it.po b/addons/project_issue_sheet/i18n/it.po index 188fef13623..c343c24fe06 100644 --- a/addons/project_issue_sheet/i18n/it.po +++ b/addons/project_issue_sheet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/ja.po b/addons/project_issue_sheet/i18n/ja.po index 8d505499ea4..9ba3c26af91 100644 --- a/addons/project_issue_sheet/i18n/ja.po +++ b/addons/project_issue_sheet/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/lv.po b/addons/project_issue_sheet/i18n/lv.po index df9e84d8823..1cdd25f864b 100644 --- a/addons/project_issue_sheet/i18n/lv.po +++ b/addons/project_issue_sheet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/mk.po b/addons/project_issue_sheet/i18n/mk.po index 69188782416..0a84ff7d50d 100644 --- a/addons/project_issue_sheet/i18n/mk.po +++ b/addons/project_issue_sheet/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/mn.po b/addons/project_issue_sheet/i18n/mn.po index f8697358ff3..4f2f294b250 100644 --- a/addons/project_issue_sheet/i18n/mn.po +++ b/addons/project_issue_sheet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/nl.po b/addons/project_issue_sheet/i18n/nl.po index 91240bf22da..6b54497b793 100644 --- a/addons/project_issue_sheet/i18n/nl.po +++ b/addons/project_issue_sheet/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-20 12:15+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/pl.po b/addons/project_issue_sheet/i18n/pl.po index 2e892c5f8fe..8ed65cd4a3e 100644 --- a/addons/project_issue_sheet/i18n/pl.po +++ b/addons/project_issue_sheet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/pt.po b/addons/project_issue_sheet/i18n/pt.po index ccf1517f0aa..a5cd438f3f4 100644 --- a/addons/project_issue_sheet/i18n/pt.po +++ b/addons/project_issue_sheet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/pt_BR.po b/addons/project_issue_sheet/i18n/pt_BR.po index 7f3290c40e9..cd3094ecbb7 100644 --- a/addons/project_issue_sheet/i18n/pt_BR.po +++ b/addons/project_issue_sheet/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/ro.po b/addons/project_issue_sheet/i18n/ro.po index 48375e5e847..e9ba2971d14 100644 --- a/addons/project_issue_sheet/i18n/ro.po +++ b/addons/project_issue_sheet/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-10 12:20+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/ru.po b/addons/project_issue_sheet/i18n/ru.po index ee5ca8ec4ef..08133bd76d3 100644 --- a/addons/project_issue_sheet/i18n/ru.po +++ b/addons/project_issue_sheet/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/sl.po b/addons/project_issue_sheet/i18n/sl.po index 610a32ddcdf..9c01bf8ab0b 100644 --- a/addons/project_issue_sheet/i18n/sl.po +++ b/addons/project_issue_sheet/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-21 04:57+0000\n" -"X-Generator: Launchpad (build 16807)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/sv.po b/addons/project_issue_sheet/i18n/sv.po index 4783fe7daa0..ab9f0d4d56e 100644 --- a/addons/project_issue_sheet/i18n/sv.po +++ b/addons/project_issue_sheet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/tr.po b/addons/project_issue_sheet/i18n/tr.po index 7ded58ea7e6..a72c1f9c617 100644 --- a/addons/project_issue_sheet/i18n/tr.po +++ b/addons/project_issue_sheet/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/zh_CN.po b/addons/project_issue_sheet/i18n/zh_CN.po index ceb701da318..c7b194b8b92 100644 --- a/addons/project_issue_sheet/i18n/zh_CN.po +++ b/addons/project_issue_sheet/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_long_term/i18n/ar.po b/addons/project_long_term/i18n/ar.po index 9e8f11039cc..6aa1c1e34d3 100644 --- a/addons/project_long_term/i18n/ar.po +++ b/addons/project_long_term/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/ca.po b/addons/project_long_term/i18n/ca.po index 14b05df3afe..4d08d9167f8 100644 --- a/addons/project_long_term/i18n/ca.po +++ b/addons/project_long_term/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/cs.po b/addons/project_long_term/i18n/cs.po index d7ec12abe15..2ea48c8d2c5 100644 --- a/addons/project_long_term/i18n/cs.po +++ b/addons/project_long_term/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/da.po b/addons/project_long_term/i18n/da.po index 82eba06be4f..3a1ee76bd34 100644 --- a/addons/project_long_term/i18n/da.po +++ b/addons/project_long_term/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/de.po b/addons/project_long_term/i18n/de.po index 0a836a538c4..b612b9ab4ce 100644 --- a/addons/project_long_term/i18n/de.po +++ b/addons/project_long_term/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/es.po b/addons/project_long_term/i18n/es.po index 9878709a3ec..db1f913826a 100644 --- a/addons/project_long_term/i18n/es.po +++ b/addons/project_long_term/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/es_CR.po b/addons/project_long_term/i18n/es_CR.po index 3ed1c8bd879..d5edef78c16 100644 --- a/addons/project_long_term/i18n/es_CR.po +++ b/addons/project_long_term/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/es_EC.po b/addons/project_long_term/i18n/es_EC.po index 2a75007e88e..8969ebfa874 100644 --- a/addons/project_long_term/i18n/es_EC.po +++ b/addons/project_long_term/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/es_MX.po b/addons/project_long_term/i18n/es_MX.po index 709b9d474dd..ee52b037b54 100644 --- a/addons/project_long_term/i18n/es_MX.po +++ b/addons/project_long_term/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-22 05:15+0000\n" -"X-Generator: Launchpad (build 16807)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/fi.po b/addons/project_long_term/i18n/fi.po index 82b583cc442..a29b595ebdc 100644 --- a/addons/project_long_term/i18n/fi.po +++ b/addons/project_long_term/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:44+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/fr.po b/addons/project_long_term/i18n/fr.po index d82734fec1a..c8f89d69a56 100644 --- a/addons/project_long_term/i18n/fr.po +++ b/addons/project_long_term/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/hr.po b/addons/project_long_term/i18n/hr.po index 1bd9095f6b7..6c3dfd24d22 100644 --- a/addons/project_long_term/i18n/hr.po +++ b/addons/project_long_term/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:51+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/hu.po b/addons/project_long_term/i18n/hu.po index 8c1ea6fbf73..bb0b856f019 100644 --- a/addons/project_long_term/i18n/hu.po +++ b/addons/project_long_term/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/it.po b/addons/project_long_term/i18n/it.po index 9fbb11c55ab..305dc790d19 100644 --- a/addons/project_long_term/i18n/it.po +++ b/addons/project_long_term/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/ja.po b/addons/project_long_term/i18n/ja.po index a9519ae9641..e0272649c7f 100644 --- a/addons/project_long_term/i18n/ja.po +++ b/addons/project_long_term/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/lv.po b/addons/project_long_term/i18n/lv.po index a6918dab6d9..c7fc602ad8c 100644 --- a/addons/project_long_term/i18n/lv.po +++ b/addons/project_long_term/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/mk.po b/addons/project_long_term/i18n/mk.po index f6a03c34c56..15fe85a5627 100644 --- a/addons/project_long_term/i18n/mk.po +++ b/addons/project_long_term/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/mn.po b/addons/project_long_term/i18n/mn.po index 59a2a80e31a..40f57d8b3e2 100644 --- a/addons/project_long_term/i18n/mn.po +++ b/addons/project_long_term/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/nl.po b/addons/project_long_term/i18n/nl.po index 551c71e2da2..ac7c04e373e 100644 --- a/addons/project_long_term/i18n/nl.po +++ b/addons/project_long_term/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-08 20:11+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/pl.po b/addons/project_long_term/i18n/pl.po index ce1ec4c2fef..01f80cbffca 100644 --- a/addons/project_long_term/i18n/pl.po +++ b/addons/project_long_term/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/pt.po b/addons/project_long_term/i18n/pt.po index ba93d44f70d..80116c694f2 100644 --- a/addons/project_long_term/i18n/pt.po +++ b/addons/project_long_term/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/pt_BR.po b/addons/project_long_term/i18n/pt_BR.po index a8e8efd80cd..12d07b6912c 100644 --- a/addons/project_long_term/i18n/pt_BR.po +++ b/addons/project_long_term/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/ro.po b/addons/project_long_term/i18n/ro.po index 79cca0b6a37..44f2eccfba7 100644 --- a/addons/project_long_term/i18n/ro.po +++ b/addons/project_long_term/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 19:09+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/ru.po b/addons/project_long_term/i18n/ru.po index 9c36d0054dd..dcadec1ab99 100644 --- a/addons/project_long_term/i18n/ru.po +++ b/addons/project_long_term/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/sl.po b/addons/project_long_term/i18n/sl.po index 29f7ae7686b..061f180220a 100644 --- a/addons/project_long_term/i18n/sl.po +++ b/addons/project_long_term/i18n/sl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-09-29 11:12+0000\n" -"Last-Translator: Matmoz \n" +"Last-Translator: Matjaž Mozetič (Matmoz) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-30 05:43+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/sv.po b/addons/project_long_term/i18n/sv.po index 15cc455fde0..8313e75ae38 100644 --- a/addons/project_long_term/i18n/sv.po +++ b/addons/project_long_term/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/tr.po b/addons/project_long_term/i18n/tr.po index 211168b3177..de274817c3a 100644 --- a/addons/project_long_term/i18n/tr.po +++ b/addons/project_long_term/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/zh_CN.po b/addons/project_long_term/i18n/zh_CN.po index a620c27232e..918ebeadbdf 100644 --- a/addons/project_long_term/i18n/zh_CN.po +++ b/addons/project_long_term/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 @@ -41,7 +41,7 @@ msgstr "阶段" #: view:project.phase:0 #: view:project.user.allocation:0 msgid "Team Planning" -msgstr "" +msgstr "项目团队计划" #. module: project_long_term #: field:project.phase,user_ids:0 diff --git a/addons/project_mrp/i18n/ar.po b/addons/project_mrp/i18n/ar.po index 2ce95020932..46736506bea 100644 --- a/addons/project_mrp/i18n/ar.po +++ b/addons/project_mrp/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/bg.po b/addons/project_mrp/i18n/bg.po index 583d205c9ee..62c31c80274 100644 --- a/addons/project_mrp/i18n/bg.po +++ b/addons/project_mrp/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/bs.po b/addons/project_mrp/i18n/bs.po index 136d858bfb1..7a5131cd564 100644 --- a/addons/project_mrp/i18n/bs.po +++ b/addons/project_mrp/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ca.po b/addons/project_mrp/i18n/ca.po index 4bfe9e6f3a0..ef028fb6d92 100644 --- a/addons/project_mrp/i18n/ca.po +++ b/addons/project_mrp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/cs.po b/addons/project_mrp/i18n/cs.po index fd1208e2e09..cb2442eb75b 100644 --- a/addons/project_mrp/i18n/cs.po +++ b/addons/project_mrp/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" "X-Poedit-Language: Czech\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/da.po b/addons/project_mrp/i18n/da.po index 75bb35ecfd1..9ef8e23e077 100644 --- a/addons/project_mrp/i18n/da.po +++ b/addons/project_mrp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-15 05:18+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/de.po b/addons/project_mrp/i18n/de.po index 90b86932180..a2f3de773f9 100644 --- a/addons/project_mrp/i18n/de.po +++ b/addons/project_mrp/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/el.po b/addons/project_mrp/i18n/el.po index 0f03c681968..941881a8d6b 100644 --- a/addons/project_mrp/i18n/el.po +++ b/addons/project_mrp/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/es.po b/addons/project_mrp/i18n/es.po index 883597cbf3a..8a9bc219071 100644 --- a/addons/project_mrp/i18n/es.po +++ b/addons/project_mrp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/es_AR.po b/addons/project_mrp/i18n/es_AR.po index 5093618d33c..704c9adab1f 100644 --- a/addons/project_mrp/i18n/es_AR.po +++ b/addons/project_mrp/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/es_CR.po b/addons/project_mrp/i18n/es_CR.po index 0c65a68e607..c03f9dc112c 100644 --- a/addons/project_mrp/i18n/es_CR.po +++ b/addons/project_mrp/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/es_EC.po b/addons/project_mrp/i18n/es_EC.po index 005565a837d..02e3675187a 100644 --- a/addons/project_mrp/i18n/es_EC.po +++ b/addons/project_mrp/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/et.po b/addons/project_mrp/i18n/et.po index cdf7118eab9..d93b1a41312 100644 --- a/addons/project_mrp/i18n/et.po +++ b/addons/project_mrp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/fi.po b/addons/project_mrp/i18n/fi.po index fa277163653..bbc8765cd39 100644 --- a/addons/project_mrp/i18n/fi.po +++ b/addons/project_mrp/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/fr.po b/addons/project_mrp/i18n/fr.po index 2ab7b9da093..0a417dea719 100644 --- a/addons/project_mrp/i18n/fr.po +++ b/addons/project_mrp/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-14 01:18+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-15 05:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/gl.po b/addons/project_mrp/i18n/gl.po index 0a0335ecab2..898921d03d4 100644 --- a/addons/project_mrp/i18n/gl.po +++ b/addons/project_mrp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/gu.po b/addons/project_mrp/i18n/gu.po index d2d6f4edc41..2bb4aab4deb 100644 --- a/addons/project_mrp/i18n/gu.po +++ b/addons/project_mrp/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/hr.po b/addons/project_mrp/i18n/hr.po index 66ea6fd5c35..c54aed6596a 100644 --- a/addons/project_mrp/i18n/hr.po +++ b/addons/project_mrp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/hu.po b/addons/project_mrp/i18n/hu.po index 2d62b279fdc..9733eb485bc 100644 --- a/addons/project_mrp/i18n/hu.po +++ b/addons/project_mrp/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/id.po b/addons/project_mrp/i18n/id.po index 406c808f240..0264c08e047 100644 --- a/addons/project_mrp/i18n/id.po +++ b/addons/project_mrp/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/it.po b/addons/project_mrp/i18n/it.po index 9fcb89d7ccd..efbd177203e 100644 --- a/addons/project_mrp/i18n/it.po +++ b/addons/project_mrp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ja.po b/addons/project_mrp/i18n/ja.po index 0548939266a..6286b058b92 100644 --- a/addons/project_mrp/i18n/ja.po +++ b/addons/project_mrp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ko.po b/addons/project_mrp/i18n/ko.po index be52c1d21b1..00b462cfaba 100644 --- a/addons/project_mrp/i18n/ko.po +++ b/addons/project_mrp/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/lt.po b/addons/project_mrp/i18n/lt.po index a4daef7a343..9ea7f12e29c 100644 --- a/addons/project_mrp/i18n/lt.po +++ b/addons/project_mrp/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/lv.po b/addons/project_mrp/i18n/lv.po index 4b726ffa349..6e27e160475 100644 --- a/addons/project_mrp/i18n/lv.po +++ b/addons/project_mrp/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/mk.po b/addons/project_mrp/i18n/mk.po index f8318161368..1de3d35f83b 100644 --- a/addons/project_mrp/i18n/mk.po +++ b/addons/project_mrp/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/mn.po b/addons/project_mrp/i18n/mn.po index 1648a8cc788..7a7f26d9ba8 100644 --- a/addons/project_mrp/i18n/mn.po +++ b/addons/project_mrp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/nb.po b/addons/project_mrp/i18n/nb.po index feb0974e9e4..9e1e3217352 100644 --- a/addons/project_mrp/i18n/nb.po +++ b/addons/project_mrp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/nl.po b/addons/project_mrp/i18n/nl.po index 72d3cdd55b1..5bdf1c63ead 100644 --- a/addons/project_mrp/i18n/nl.po +++ b/addons/project_mrp/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-23 12:47+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/nl_BE.po b/addons/project_mrp/i18n/nl_BE.po index 569c67637b3..e8e4fd82afb 100644 --- a/addons/project_mrp/i18n/nl_BE.po +++ b/addons/project_mrp/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/pl.po b/addons/project_mrp/i18n/pl.po index 3fae2bb6d94..8b216f700e4 100644 --- a/addons/project_mrp/i18n/pl.po +++ b/addons/project_mrp/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/pt.po b/addons/project_mrp/i18n/pt.po index c082b240c23..4dfa35fedfd 100644 --- a/addons/project_mrp/i18n/pt.po +++ b/addons/project_mrp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/pt_BR.po b/addons/project_mrp/i18n/pt_BR.po index 3be89ad6ac3..2c7787f8415 100644 --- a/addons/project_mrp/i18n/pt_BR.po +++ b/addons/project_mrp/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-29 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ro.po b/addons/project_mrp/i18n/ro.po index 083c255b70a..f8baa2f4f52 100644 --- a/addons/project_mrp/i18n/ro.po +++ b/addons/project_mrp/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-10 12:11+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ru.po b/addons/project_mrp/i18n/ru.po index f34aa99b2cf..8fd3dc6ddaa 100644 --- a/addons/project_mrp/i18n/ru.po +++ b/addons/project_mrp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/sl.po b/addons/project_mrp/i18n/sl.po index 0c9ef6b7a41..ef173b5c02e 100644 --- a/addons/project_mrp/i18n/sl.po +++ b/addons/project_mrp/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-09-19 15:22+0000\n" -"Last-Translator: Dušan Laznik (Mentis) \n" +"PO-Revision-Date: 2013-11-20 22:30+0000\n" +"Last-Translator: Matjaž Mozetič (Matmoz) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 @@ -25,43 +25,43 @@ msgstr "Za vsak proizvod, tipa Storitev ali Po naročilu" #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_createtask0 msgid "Product type is service, then its creates the task." -msgstr "Če je tip proizvoda Storitev, se kreira naloga." +msgstr "Proizvod tipa Storitev ustvari opravilo." #. module: project_mrp #: code:addons/project_mrp/project_procurement.py:92 #, python-format msgid "Task created" -msgstr "" +msgstr "Opravilo ustvarjeno" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_saleordertask0 msgid "In case you sell services on sales order" -msgstr "V primeru, če prodajamo storitve na prodajnem nalogu" +msgstr "Za primere prodaje storitev po prodajnem nalogu." #. module: project_mrp #: model:process.node,note:project_mrp.process_node_mrptask0 msgid "A task is created to provide the service." -msgstr "Naloga je kreirana za zagotovitev storitve." +msgstr "Za zagotovitev storitve je ustvarjeno opravilo." #. module: project_mrp #: model:ir.model,name:project_mrp.model_product_product msgid "Product" -msgstr "" +msgstr "Proizvod" #. module: project_mrp #: model:process.node,name:project_mrp.process_node_saleordertask0 msgid "Sales Order Task" -msgstr "" +msgstr "Opravilo prodajnega naloga" #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_procuretask0 msgid "if product type is 'service' then it creates the task." -msgstr "Če je tip proizovda \"Storitev\", se kreira naloga." +msgstr "Proizvod tipa Storitev ustvari opravilo." #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_ordertask0 msgid "Order Task" -msgstr "Naloga - naročilo" +msgstr "Opravilo naročanja" #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_procuretask0 @@ -71,7 +71,7 @@ msgstr "Naloga oskrbe" #. module: project_mrp #: field:procurement.order,sale_line_id:0 msgid "Sales order line" -msgstr "Vrstica prodajnega naročila" +msgstr "Postavka prodajnega naloga" #. module: project_mrp #: model:ir.model,name:project_mrp.model_project_task @@ -90,11 +90,16 @@ msgid "" " in the project related to the contract of the sales " "order." msgstr "" +"bo \n" +" ustvarjeno za sledenje opravkom. To opravilo bo " +"prikazano\n" +" na projektu zajetem v pogodbi vezani na prodajni " +"nalog." #. module: project_mrp #: view:product.product:0 msgid "When you sell this service to a customer," -msgstr "" +msgstr "Ko to storitev prodate kupcu," #. module: project_mrp #: field:product.product,project_id:0 @@ -116,35 +121,35 @@ msgstr "" #: code:addons/project_mrp/project_procurement.py:86 #, python-format msgid "Task created." -msgstr "Naloga kreirana." +msgstr "Opravilo ustvarjeno." #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_ordertask0 msgid "If procurement method is Make to order and supply method is produce" msgstr "" -"Če je metoda naročanja \"Po naročilu\" in metoda dobave \"Proizvedi\"" +"Ko je nabavna metoda \"Po naročilu\" in dobavna metoda \"Proizvodnja\"" #. module: project_mrp #: field:project.task,sale_line_id:0 msgid "Sales Order Line" -msgstr "" +msgstr "Postavka prodajnega naloga" #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_createtask0 msgid "Create Task" -msgstr "Ustvari nalogo" +msgstr "Ustvari opravilo" #. module: project_mrp #: model:ir.model,name:project_mrp.model_sale_order msgid "Sales Order" -msgstr "" +msgstr "Prodajni nalog" #. module: project_mrp #: view:project.task:0 msgid "Order Line" -msgstr "" +msgstr "Postavka naloga" #. module: project_mrp #: view:product.product:0 msgid "a task" -msgstr "naloga" +msgstr "opravilo" diff --git a/addons/project_mrp/i18n/sq.po b/addons/project_mrp/i18n/sq.po index fdc23b44ab6..b02c989f373 100644 --- a/addons/project_mrp/i18n/sq.po +++ b/addons/project_mrp/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/sv.po b/addons/project_mrp/i18n/sv.po index a307219a946..3f1befd453f 100644 --- a/addons/project_mrp/i18n/sv.po +++ b/addons/project_mrp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/tlh.po b/addons/project_mrp/i18n/tlh.po index aced5b82333..be323abf24e 100644 --- a/addons/project_mrp/i18n/tlh.po +++ b/addons/project_mrp/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/tr.po b/addons/project_mrp/i18n/tr.po index 9d79e269250..54154457c01 100644 --- a/addons/project_mrp/i18n/tr.po +++ b/addons/project_mrp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/uk.po b/addons/project_mrp/i18n/uk.po index f2617f32816..fd5a74f9f02 100644 --- a/addons/project_mrp/i18n/uk.po +++ b/addons/project_mrp/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/vi.po b/addons/project_mrp/i18n/vi.po index b24c0a53e2d..3c1cc1f936b 100644 --- a/addons/project_mrp/i18n/vi.po +++ b/addons/project_mrp/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/zh_CN.po b/addons/project_mrp/i18n/zh_CN.po index 52122a7ebcb..763535021dc 100644 --- a/addons/project_mrp/i18n/zh_CN.po +++ b/addons/project_mrp/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-08-11 01:28+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-12 05:06+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/zh_TW.po b/addons/project_mrp/i18n/zh_TW.po index 55f9d3339c3..37d67d0a916 100644 --- a/addons/project_mrp/i18n/zh_TW.po +++ b/addons/project_mrp/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_timesheet/i18n/ar.po b/addons/project_timesheet/i18n/ar.po index e804a869873..7cd1d612594 100644 --- a/addons/project_timesheet/i18n/ar.po +++ b/addons/project_timesheet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/bg.po b/addons/project_timesheet/i18n/bg.po index dfad8a0a3c3..abec0c5cb67 100644 --- a/addons/project_timesheet/i18n/bg.po +++ b/addons/project_timesheet/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/bs.po b/addons/project_timesheet/i18n/bs.po index b6fa7574be8..22b85cb1269 100644 --- a/addons/project_timesheet/i18n/bs.po +++ b/addons/project_timesheet/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ca.po b/addons/project_timesheet/i18n/ca.po index b632c9ccad7..508135c125a 100644 --- a/addons/project_timesheet/i18n/ca.po +++ b/addons/project_timesheet/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/cs.po b/addons/project_timesheet/i18n/cs.po index 68d51b7a4ac..212e92eb593 100644 --- a/addons/project_timesheet/i18n/cs.po +++ b/addons/project_timesheet/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/da.po b/addons/project_timesheet/i18n/da.po index a8559df07e0..c55287aac54 100644 --- a/addons/project_timesheet/i18n/da.po +++ b/addons/project_timesheet/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/de.po b/addons/project_timesheet/i18n/de.po index f04b0a6f938..be384e310bf 100644 --- a/addons/project_timesheet/i18n/de.po +++ b/addons/project_timesheet/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/el.po b/addons/project_timesheet/i18n/el.po index ace82f39739..a4e9d69613d 100644 --- a/addons/project_timesheet/i18n/el.po +++ b/addons/project_timesheet/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/es.po b/addons/project_timesheet/i18n/es.po index 77a3ad8622b..1d8e8a881d5 100644 --- a/addons/project_timesheet/i18n/es.po +++ b/addons/project_timesheet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/es_AR.po b/addons/project_timesheet/i18n/es_AR.po index 61ce17fe901..e954c240d44 100644 --- a/addons/project_timesheet/i18n/es_AR.po +++ b/addons/project_timesheet/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/es_CR.po b/addons/project_timesheet/i18n/es_CR.po index 9fbbf5da5d8..77c2b9b63b3 100644 --- a/addons/project_timesheet/i18n/es_CR.po +++ b/addons/project_timesheet/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/et.po b/addons/project_timesheet/i18n/et.po index ceb96273bab..c50d0ec4962 100644 --- a/addons/project_timesheet/i18n/et.po +++ b/addons/project_timesheet/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/fi.po b/addons/project_timesheet/i18n/fi.po index ceb2ed27ec0..66bf5d13163 100644 --- a/addons/project_timesheet/i18n/fi.po +++ b/addons/project_timesheet/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/fr.po b/addons/project_timesheet/i18n/fr.po index 1dabcff0907..bdc0a451754 100644 --- a/addons/project_timesheet/i18n/fr.po +++ b/addons/project_timesheet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/gl.po b/addons/project_timesheet/i18n/gl.po index 4f085ccbcee..1ee9a786a84 100644 --- a/addons/project_timesheet/i18n/gl.po +++ b/addons/project_timesheet/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/hr.po b/addons/project_timesheet/i18n/hr.po index cd2a7d7bc94..2143e58c338 100644 --- a/addons/project_timesheet/i18n/hr.po +++ b/addons/project_timesheet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/hu.po b/addons/project_timesheet/i18n/hu.po index 81d9d17e1e6..8f9e81bae68 100644 --- a/addons/project_timesheet/i18n/hu.po +++ b/addons/project_timesheet/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/id.po b/addons/project_timesheet/i18n/id.po index 5959a8eea55..8389c44391d 100644 --- a/addons/project_timesheet/i18n/id.po +++ b/addons/project_timesheet/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/it.po b/addons/project_timesheet/i18n/it.po index 763b6c3d13e..8a984dea60f 100644 --- a/addons/project_timesheet/i18n/it.po +++ b/addons/project_timesheet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ja.po b/addons/project_timesheet/i18n/ja.po index 1c67a66acc3..9ebd5d21337 100644 --- a/addons/project_timesheet/i18n/ja.po +++ b/addons/project_timesheet/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ko.po b/addons/project_timesheet/i18n/ko.po index 5ec2a73fd9c..586cc0a3ba4 100644 --- a/addons/project_timesheet/i18n/ko.po +++ b/addons/project_timesheet/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/lt.po b/addons/project_timesheet/i18n/lt.po index a102aeb92b5..62b0e7b281a 100644 --- a/addons/project_timesheet/i18n/lt.po +++ b/addons/project_timesheet/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/lv.po b/addons/project_timesheet/i18n/lv.po index 80969c07a83..11630ab4580 100644 --- a/addons/project_timesheet/i18n/lv.po +++ b/addons/project_timesheet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/mk.po b/addons/project_timesheet/i18n/mk.po index a96b98d9a33..e49b8911e77 100644 --- a/addons/project_timesheet/i18n/mk.po +++ b/addons/project_timesheet/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/mn.po b/addons/project_timesheet/i18n/mn.po index 2d5f9d5053f..589b81a45b9 100644 --- a/addons/project_timesheet/i18n/mn.po +++ b/addons/project_timesheet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/nl.po b/addons/project_timesheet/i18n/nl.po index 9be9d99e0cd..76456dfa429 100644 --- a/addons/project_timesheet/i18n/nl.po +++ b/addons/project_timesheet/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-09 10:11+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/nl_BE.po b/addons/project_timesheet/i18n/nl_BE.po index e0e9dee229b..cb9d493d5a6 100644 --- a/addons/project_timesheet/i18n/nl_BE.po +++ b/addons/project_timesheet/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/pl.po b/addons/project_timesheet/i18n/pl.po index 70d009864ad..a579d327de5 100644 --- a/addons/project_timesheet/i18n/pl.po +++ b/addons/project_timesheet/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/pt.po b/addons/project_timesheet/i18n/pt.po index 9343e2a62ea..9e8409c6873 100644 --- a/addons/project_timesheet/i18n/pt.po +++ b/addons/project_timesheet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/pt_BR.po b/addons/project_timesheet/i18n/pt_BR.po index 73154aad86c..d0269787f18 100644 --- a/addons/project_timesheet/i18n/pt_BR.po +++ b/addons/project_timesheet/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ro.po b/addons/project_timesheet/i18n/ro.po index 9197ebcaa16..586140d6c5c 100644 --- a/addons/project_timesheet/i18n/ro.po +++ b/addons/project_timesheet/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-12 18:51+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ru.po b/addons/project_timesheet/i18n/ru.po index 7df7cefe0d0..cefbf15a5d1 100644 --- a/addons/project_timesheet/i18n/ru.po +++ b/addons/project_timesheet/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/sl.po b/addons/project_timesheet/i18n/sl.po index c0ec24e4fc7..f8103a7b342 100644 --- a/addons/project_timesheet/i18n/sl.po +++ b/addons/project_timesheet/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/sq.po b/addons/project_timesheet/i18n/sq.po index d7b0082062d..f8f67e0a8ce 100644 --- a/addons/project_timesheet/i18n/sq.po +++ b/addons/project_timesheet/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:18+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/sv.po b/addons/project_timesheet/i18n/sv.po index eb1d63b7924..e2661e7b1a3 100644 --- a/addons/project_timesheet/i18n/sv.po +++ b/addons/project_timesheet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/tlh.po b/addons/project_timesheet/i18n/tlh.po index e4b015da2ad..f1d2126ad16 100644 --- a/addons/project_timesheet/i18n/tlh.po +++ b/addons/project_timesheet/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/tr.po b/addons/project_timesheet/i18n/tr.po index d73a4d333a9..fdd5a9d8b49 100644 --- a/addons/project_timesheet/i18n/tr.po +++ b/addons/project_timesheet/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-11 05:00+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/uk.po b/addons/project_timesheet/i18n/uk.po index fe37a0e492a..84b953ea52f 100644 --- a/addons/project_timesheet/i18n/uk.po +++ b/addons/project_timesheet/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/vi.po b/addons/project_timesheet/i18n/vi.po index 009bb856bcf..325a6d0adaa 100644 --- a/addons/project_timesheet/i18n/vi.po +++ b/addons/project_timesheet/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/zh_CN.po b/addons/project_timesheet/i18n/zh_CN.po index 0f95a1d1fcc..18d961d01cd 100644 --- a/addons/project_timesheet/i18n/zh_CN.po +++ b/addons/project_timesheet/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-07 14:36+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/zh_TW.po b/addons/project_timesheet/i18n/zh_TW.po index 501c21bfe23..fccacc998ab 100644 --- a/addons/project_timesheet/i18n/zh_TW.po +++ b/addons/project_timesheet/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/purchase/i18n/ar.po b/addons/purchase/i18n/ar.po index b4357a6e2c4..51d80c0a3b1 100644 --- a/addons/purchase/i18n/ar.po +++ b/addons/purchase/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/bg.po b/addons/purchase/i18n/bg.po index 1986f50d4d8..1f9910ea573 100644 --- a/addons/purchase/i18n/bg.po +++ b/addons/purchase/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/bs.po b/addons/purchase/i18n/bs.po index 918df5c61c0..03bf9d875d2 100644 --- a/addons/purchase/i18n/bs.po +++ b/addons/purchase/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-10 05:37+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/ca.po b/addons/purchase/i18n/ca.po index 97488ff01c9..340b2816347 100644 --- a/addons/purchase/i18n/ca.po +++ b/addons/purchase/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/cs.po b/addons/purchase/i18n/cs.po index 645a525bc53..08da61e12d1 100644 --- a/addons/purchase/i18n/cs.po +++ b/addons/purchase/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-26 06:25+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/da.po b/addons/purchase/i18n/da.po index 399947c0cde..6c16360243d 100644 --- a/addons/purchase/i18n/da.po +++ b/addons/purchase/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-15 06:11+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/de.po b/addons/purchase/i18n/de.po index edfcf3865e4..238b5efb3ba 100644 --- a/addons/purchase/i18n/de.po +++ b/addons/purchase/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/el.po b/addons/purchase/i18n/el.po index a827bdf2084..e16b843f9f0 100644 --- a/addons/purchase/i18n/el.po +++ b/addons/purchase/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/en_GB.po b/addons/purchase/i18n/en_GB.po index 0054151ca6f..51b9fa335bd 100644 --- a/addons/purchase/i18n/en_GB.po +++ b/addons/purchase/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es.po b/addons/purchase/i18n/es.po index 639e16b779b..dde5c8855d6 100644 --- a/addons/purchase/i18n/es.po +++ b/addons/purchase/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_AR.po b/addons/purchase/i18n/es_AR.po index e15243bd6b7..f110a730649 100644 --- a/addons/purchase/i18n/es_AR.po +++ b/addons/purchase/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_BO.po b/addons/purchase/i18n/es_BO.po index b1bb96e9f56..cc93a3408fc 100644 --- a/addons/purchase/i18n/es_BO.po +++ b/addons/purchase/i18n/es_BO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 07:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_CL.po b/addons/purchase/i18n/es_CL.po index ad6b7680527..c29f1fb1d67 100644 --- a/addons/purchase/i18n/es_CL.po +++ b/addons/purchase/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_CO.po b/addons/purchase/i18n/es_CO.po index f339f8498c4..98e21b32410 100644 --- a/addons/purchase/i18n/es_CO.po +++ b/addons/purchase/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_CR.po b/addons/purchase/i18n/es_CR.po index 4cd653796d2..6e8d1d0fc76 100644 --- a/addons/purchase/i18n/es_CR.po +++ b/addons/purchase/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_EC.po b/addons/purchase/i18n/es_EC.po index aa25f8715c5..a2bba7fe391 100644 --- a/addons/purchase/i18n/es_EC.po +++ b/addons/purchase/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_MX.po b/addons/purchase/i18n/es_MX.po index 6e44765ea1c..34265a54d95 100644 --- a/addons/purchase/i18n/es_MX.po +++ b/addons/purchase/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/et.po b/addons/purchase/i18n/et.po index c031e84a77e..ed6835ce481 100644 --- a/addons/purchase/i18n/et.po +++ b/addons/purchase/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/fi.po b/addons/purchase/i18n/fi.po index 91e81128b46..20a1d8745b1 100644 --- a/addons/purchase/i18n/fi.po +++ b/addons/purchase/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: purchase diff --git a/addons/purchase/i18n/fr.po b/addons/purchase/i18n/fr.po index 53197dfa070..03e0c06ae41 100644 --- a/addons/purchase/i18n/fr.po +++ b/addons/purchase/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/gl.po b/addons/purchase/i18n/gl.po index dcaa8517984..480e301c6de 100644 --- a/addons/purchase/i18n/gl.po +++ b/addons/purchase/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/hr.po b/addons/purchase/i18n/hr.po index e7d35db92ae..8855797a0af 100644 --- a/addons/purchase/i18n/hr.po +++ b/addons/purchase/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:51+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/hu.po b/addons/purchase/i18n/hu.po index 5140cc3a975..f9e615acc1f 100644 --- a/addons/purchase/i18n/hu.po +++ b/addons/purchase/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/id.po b/addons/purchase/i18n/id.po index 6e77836f4dd..c224267c87b 100644 --- a/addons/purchase/i18n/id.po +++ b/addons/purchase/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/it.po b/addons/purchase/i18n/it.po index 1ffc22fd30e..aba72fd7e58 100644 --- a/addons/purchase/i18n/it.po +++ b/addons/purchase/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-06-21 15:39+0000\n" -"Last-Translator: Leonardo Di Benedetto \n" +"Last-Translator: ICT Consulting \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/ja.po b/addons/purchase/i18n/ja.po index dc0db10fcba..19f97a8d3df 100644 --- a/addons/purchase/i18n/ja.po +++ b/addons/purchase/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/ko.po b/addons/purchase/i18n/ko.po index 005ad523cb5..6054a71ec02 100644 --- a/addons/purchase/i18n/ko.po +++ b/addons/purchase/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/lt.po b/addons/purchase/i18n/lt.po index 2d1a47f902a..29a79478fb4 100644 --- a/addons/purchase/i18n/lt.po +++ b/addons/purchase/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-05 05:18+0000\n" -"X-Generator: Launchpad (build 16758)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/lv.po b/addons/purchase/i18n/lv.po index ba28701e214..0a523f57546 100644 --- a/addons/purchase/i18n/lv.po +++ b/addons/purchase/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/mk.po b/addons/purchase/i18n/mk.po index 58bc64f0c4e..1cd424b4cbf 100644 --- a/addons/purchase/i18n/mk.po +++ b/addons/purchase/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: purchase diff --git a/addons/purchase/i18n/mn.po b/addons/purchase/i18n/mn.po index f8f727627a2..0e40da36282 100644 --- a/addons/purchase/i18n/mn.po +++ b/addons/purchase/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/nb.po b/addons/purchase/i18n/nb.po index 03cc23d4e7d..62e92cffeb1 100644 --- a/addons/purchase/i18n/nb.po +++ b/addons/purchase/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/nl.po b/addons/purchase/i18n/nl.po index bfda2122234..e656cfaeca7 100644 --- a/addons/purchase/i18n/nl.po +++ b/addons/purchase/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/nl_BE.po b/addons/purchase/i18n/nl_BE.po index 2c1b09b91c9..9bec3a095a0 100644 --- a/addons/purchase/i18n/nl_BE.po +++ b/addons/purchase/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/pl.po b/addons/purchase/i18n/pl.po index 726b90651b1..af62e1f9e5a 100644 --- a/addons/purchase/i18n/pl.po +++ b/addons/purchase/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: purchase diff --git a/addons/purchase/i18n/pt.po b/addons/purchase/i18n/pt.po index 8cd07a54e7d..11ff4aff959 100644 --- a/addons/purchase/i18n/pt.po +++ b/addons/purchase/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/pt_BR.po b/addons/purchase/i18n/pt_BR.po index cacbd9cdc2b..86f7141d316 100644 --- a/addons/purchase/i18n/pt_BR.po +++ b/addons/purchase/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 20:52+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/ro.po b/addons/purchase/i18n/ro.po index 0a8eeb24849..b103ec04839 100644 --- a/addons/purchase/i18n/ro.po +++ b/addons/purchase/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: view:purchase.report:0 diff --git a/addons/purchase/i18n/ru.po b/addons/purchase/i18n/ru.po index 862dd683e93..e76ee60ee39 100644 --- a/addons/purchase/i18n/ru.po +++ b/addons/purchase/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-23 05:52+0000\n" -"X-Generator: Launchpad (build 16737)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sk.po b/addons/purchase/i18n/sk.po index b25b24768d7..7a5e545e186 100644 --- a/addons/purchase/i18n/sk.po +++ b/addons/purchase/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sl.po b/addons/purchase/i18n/sl.po index 6b294391151..16fbe6f8bee 100644 --- a/addons/purchase/i18n/sl.po +++ b/addons/purchase/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sq.po b/addons/purchase/i18n/sq.po index 55ff361e91b..3f2e7045a5f 100644 --- a/addons/purchase/i18n/sq.po +++ b/addons/purchase/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sr.po b/addons/purchase/i18n/sr.po index ad4c3c68c4a..9648de45043 100644 --- a/addons/purchase/i18n/sr.po +++ b/addons/purchase/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sr@latin.po b/addons/purchase/i18n/sr@latin.po index b711c27dc43..7c92b9196b0 100644 --- a/addons/purchase/i18n/sr@latin.po +++ b/addons/purchase/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sv.po b/addons/purchase/i18n/sv.po index 1bb22a65927..7b7f4831fb2 100644 --- a/addons/purchase/i18n/sv.po +++ b/addons/purchase/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/th.po b/addons/purchase/i18n/th.po index fee2756eaee..77c1a0c337a 100644 --- a/addons/purchase/i18n/th.po +++ b/addons/purchase/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/tlh.po b/addons/purchase/i18n/tlh.po index 6308113ac0e..c6b31eed500 100644 --- a/addons/purchase/i18n/tlh.po +++ b/addons/purchase/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/tr.po b/addons/purchase/i18n/tr.po index f610cb240c0..815a9918490 100644 --- a/addons/purchase/i18n/tr.po +++ b/addons/purchase/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/uk.po b/addons/purchase/i18n/uk.po index 7037204ce85..f266584be9b 100644 --- a/addons/purchase/i18n/uk.po +++ b/addons/purchase/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/vi.po b/addons/purchase/i18n/vi.po index a6fe44f5e9b..5d93e70d6a4 100644 --- a/addons/purchase/i18n/vi.po +++ b/addons/purchase/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:19+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/zh_CN.po b/addons/purchase/i18n/zh_CN.po index 8421117afa2..a8fbb2196ab 100644 --- a/addons/purchase/i18n/zh_CN.po +++ b/addons/purchase/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-08 06:26+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting @@ -1291,7 +1291,7 @@ msgstr "3月" #. module: purchase #: view:purchase.order:0 msgid "Receive Invoice" -msgstr "收到的发票" +msgstr "接收传票" #. module: purchase #: view:purchase.order:0 @@ -1599,7 +1599,7 @@ msgstr "" #. module: purchase #: field:purchase.order,invoiced:0 msgid "Invoice Received" -msgstr "收到的发票" +msgstr "已收传票" #. module: purchase #: field:purchase.order,invoice_method:0 diff --git a/addons/purchase/i18n/zh_TW.po b/addons/purchase/i18n/zh_TW.po index 284fd32f41c..a33a06947f9 100644 --- a/addons/purchase/i18n/zh_TW.po +++ b/addons/purchase/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase_analytic_plans/i18n/ar.po b/addons/purchase_analytic_plans/i18n/ar.po index 2639bcfb3b8..5ef29d217c2 100644 --- a/addons/purchase_analytic_plans/i18n/ar.po +++ b/addons/purchase_analytic_plans/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/bg.po b/addons/purchase_analytic_plans/i18n/bg.po index 7e1d315c6d0..867d4345669 100644 --- a/addons/purchase_analytic_plans/i18n/bg.po +++ b/addons/purchase_analytic_plans/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/bs.po b/addons/purchase_analytic_plans/i18n/bs.po index ead82c465ff..ee5afe7774f 100644 --- a/addons/purchase_analytic_plans/i18n/bs.po +++ b/addons/purchase_analytic_plans/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ca.po b/addons/purchase_analytic_plans/i18n/ca.po index 9ec193d058b..820bfb56d2e 100644 --- a/addons/purchase_analytic_plans/i18n/ca.po +++ b/addons/purchase_analytic_plans/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/cs.po b/addons/purchase_analytic_plans/i18n/cs.po index ad3b9cfed08..28cd64f750b 100644 --- a/addons/purchase_analytic_plans/i18n/cs.po +++ b/addons/purchase_analytic_plans/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/da.po b/addons/purchase_analytic_plans/i18n/da.po index 994bde23197..b133755c78c 100644 --- a/addons/purchase_analytic_plans/i18n/da.po +++ b/addons/purchase_analytic_plans/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/de.po b/addons/purchase_analytic_plans/i18n/de.po index 945673a656d..c1f349d177d 100644 --- a/addons/purchase_analytic_plans/i18n/de.po +++ b/addons/purchase_analytic_plans/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/el.po b/addons/purchase_analytic_plans/i18n/el.po index a9fe75db086..889e4d51f08 100644 --- a/addons/purchase_analytic_plans/i18n/el.po +++ b/addons/purchase_analytic_plans/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/en_GB.po b/addons/purchase_analytic_plans/i18n/en_GB.po index dfa35966f17..bf20610ac5b 100644 --- a/addons/purchase_analytic_plans/i18n/en_GB.po +++ b/addons/purchase_analytic_plans/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/es.po b/addons/purchase_analytic_plans/i18n/es.po index 19c80018ea3..75dfaee89d0 100644 --- a/addons/purchase_analytic_plans/i18n/es.po +++ b/addons/purchase_analytic_plans/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/es_AR.po b/addons/purchase_analytic_plans/i18n/es_AR.po index 5ac330085bf..39f22fc4acf 100644 --- a/addons/purchase_analytic_plans/i18n/es_AR.po +++ b/addons/purchase_analytic_plans/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/es_CR.po b/addons/purchase_analytic_plans/i18n/es_CR.po index ae05f3cd59d..6c69a32d40f 100644 --- a/addons/purchase_analytic_plans/i18n/es_CR.po +++ b/addons/purchase_analytic_plans/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/et.po b/addons/purchase_analytic_plans/i18n/et.po index 2df3d78b88b..e576814a53f 100644 --- a/addons/purchase_analytic_plans/i18n/et.po +++ b/addons/purchase_analytic_plans/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/fi.po b/addons/purchase_analytic_plans/i18n/fi.po index 40e2743902a..ace5db4c0b7 100644 --- a/addons/purchase_analytic_plans/i18n/fi.po +++ b/addons/purchase_analytic_plans/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/fr.po b/addons/purchase_analytic_plans/i18n/fr.po index 5e8c5d5d9e1..02c7c41b963 100644 --- a/addons/purchase_analytic_plans/i18n/fr.po +++ b/addons/purchase_analytic_plans/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/gl.po b/addons/purchase_analytic_plans/i18n/gl.po index 88c0f56c761..1479a2b86fa 100644 --- a/addons/purchase_analytic_plans/i18n/gl.po +++ b/addons/purchase_analytic_plans/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/hr.po b/addons/purchase_analytic_plans/i18n/hr.po index 058a1a69342..c76986284d2 100644 --- a/addons/purchase_analytic_plans/i18n/hr.po +++ b/addons/purchase_analytic_plans/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/hu.po b/addons/purchase_analytic_plans/i18n/hu.po index dd96b2193b0..1b021737205 100644 --- a/addons/purchase_analytic_plans/i18n/hu.po +++ b/addons/purchase_analytic_plans/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/id.po b/addons/purchase_analytic_plans/i18n/id.po index 3bfa1a8cfc8..983ec08a612 100644 --- a/addons/purchase_analytic_plans/i18n/id.po +++ b/addons/purchase_analytic_plans/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/it.po b/addons/purchase_analytic_plans/i18n/it.po index 4cfd2fdf22c..bbd18f5b280 100644 --- a/addons/purchase_analytic_plans/i18n/it.po +++ b/addons/purchase_analytic_plans/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ja.po b/addons/purchase_analytic_plans/i18n/ja.po index 19914ef3e26..b8972198899 100644 --- a/addons/purchase_analytic_plans/i18n/ja.po +++ b/addons/purchase_analytic_plans/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ko.po b/addons/purchase_analytic_plans/i18n/ko.po index 2a02d071ba6..93c25c50135 100644 --- a/addons/purchase_analytic_plans/i18n/ko.po +++ b/addons/purchase_analytic_plans/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/lt.po b/addons/purchase_analytic_plans/i18n/lt.po index 06d91b4fb00..f25d2490a81 100644 --- a/addons/purchase_analytic_plans/i18n/lt.po +++ b/addons/purchase_analytic_plans/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/mk.po b/addons/purchase_analytic_plans/i18n/mk.po index 1941f1d805f..7f90bfa4191 100644 --- a/addons/purchase_analytic_plans/i18n/mk.po +++ b/addons/purchase_analytic_plans/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/mn.po b/addons/purchase_analytic_plans/i18n/mn.po index 65f4db2fc39..e812e33e8b9 100644 --- a/addons/purchase_analytic_plans/i18n/mn.po +++ b/addons/purchase_analytic_plans/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/nl.po b/addons/purchase_analytic_plans/i18n/nl.po index 6ee55c86b9f..3624cdb38cf 100644 --- a/addons/purchase_analytic_plans/i18n/nl.po +++ b/addons/purchase_analytic_plans/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/nl_BE.po b/addons/purchase_analytic_plans/i18n/nl_BE.po index 628881add92..33e2b66eaac 100644 --- a/addons/purchase_analytic_plans/i18n/nl_BE.po +++ b/addons/purchase_analytic_plans/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/pl.po b/addons/purchase_analytic_plans/i18n/pl.po index cfdd46ae800..82a2e7549a0 100644 --- a/addons/purchase_analytic_plans/i18n/pl.po +++ b/addons/purchase_analytic_plans/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/pt.po b/addons/purchase_analytic_plans/i18n/pt.po index 766bae4360a..d293cf52c56 100644 --- a/addons/purchase_analytic_plans/i18n/pt.po +++ b/addons/purchase_analytic_plans/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/pt_BR.po b/addons/purchase_analytic_plans/i18n/pt_BR.po index a1f6f0d54ec..d9fa57f3366 100644 --- a/addons/purchase_analytic_plans/i18n/pt_BR.po +++ b/addons/purchase_analytic_plans/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ro.po b/addons/purchase_analytic_plans/i18n/ro.po index 53c94baeb05..db50222b5ff 100644 --- a/addons/purchase_analytic_plans/i18n/ro.po +++ b/addons/purchase_analytic_plans/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ru.po b/addons/purchase_analytic_plans/i18n/ru.po index 3459b21f556..146bb154ca9 100644 --- a/addons/purchase_analytic_plans/i18n/ru.po +++ b/addons/purchase_analytic_plans/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sl.po b/addons/purchase_analytic_plans/i18n/sl.po index 3cec23e4876..e7e9924fa93 100644 --- a/addons/purchase_analytic_plans/i18n/sl.po +++ b/addons/purchase_analytic_plans/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sq.po b/addons/purchase_analytic_plans/i18n/sq.po index 61f89fa8a40..0373b0239e6 100644 --- a/addons/purchase_analytic_plans/i18n/sq.po +++ b/addons/purchase_analytic_plans/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sr.po b/addons/purchase_analytic_plans/i18n/sr.po index da04336481f..20ba5fda280 100644 --- a/addons/purchase_analytic_plans/i18n/sr.po +++ b/addons/purchase_analytic_plans/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sr@latin.po b/addons/purchase_analytic_plans/i18n/sr@latin.po index 0b6cf43642f..6dac8a59d9b 100644 --- a/addons/purchase_analytic_plans/i18n/sr@latin.po +++ b/addons/purchase_analytic_plans/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sv.po b/addons/purchase_analytic_plans/i18n/sv.po index 96d99160b47..839b0fe4e5f 100644 --- a/addons/purchase_analytic_plans/i18n/sv.po +++ b/addons/purchase_analytic_plans/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/tlh.po b/addons/purchase_analytic_plans/i18n/tlh.po index 37c035145b5..6c495a5b0a7 100644 --- a/addons/purchase_analytic_plans/i18n/tlh.po +++ b/addons/purchase_analytic_plans/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/tr.po b/addons/purchase_analytic_plans/i18n/tr.po index 22d0ec4b01a..aa9d1499655 100644 --- a/addons/purchase_analytic_plans/i18n/tr.po +++ b/addons/purchase_analytic_plans/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/uk.po b/addons/purchase_analytic_plans/i18n/uk.po index 34645d6ac6d..70cf45dd20d 100644 --- a/addons/purchase_analytic_plans/i18n/uk.po +++ b/addons/purchase_analytic_plans/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ur.po b/addons/purchase_analytic_plans/i18n/ur.po index b7af1b51fd1..cff04b81148 100644 --- a/addons/purchase_analytic_plans/i18n/ur.po +++ b/addons/purchase_analytic_plans/i18n/ur.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/vi.po b/addons/purchase_analytic_plans/i18n/vi.po index fb0a7f8b403..87a690567f4 100644 --- a/addons/purchase_analytic_plans/i18n/vi.po +++ b/addons/purchase_analytic_plans/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:31+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/zh_CN.po b/addons/purchase_analytic_plans/i18n/zh_CN.po index a9a44d8548c..8955f4e1b12 100644 --- a/addons/purchase_analytic_plans/i18n/zh_CN.po +++ b/addons/purchase_analytic_plans/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/zh_TW.po b/addons/purchase_analytic_plans/i18n/zh_TW.po index 1ac14cc7e42..aca0a3cd906 100644 --- a/addons/purchase_analytic_plans/i18n/zh_TW.po +++ b/addons/purchase_analytic_plans/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_double_validation/i18n/ar.po b/addons/purchase_double_validation/i18n/ar.po index 94b7036b94c..f66f34d733d 100644 --- a/addons/purchase_double_validation/i18n/ar.po +++ b/addons/purchase_double_validation/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/bg.po b/addons/purchase_double_validation/i18n/bg.po index a6ac54885bd..d025cdef39d 100644 --- a/addons/purchase_double_validation/i18n/bg.po +++ b/addons/purchase_double_validation/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/bs.po b/addons/purchase_double_validation/i18n/bs.po index 086a425e116..2583497e3db 100644 --- a/addons/purchase_double_validation/i18n/bs.po +++ b/addons/purchase_double_validation/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/ca.po b/addons/purchase_double_validation/i18n/ca.po index 346c69c2e8b..78992721aac 100644 --- a/addons/purchase_double_validation/i18n/ca.po +++ b/addons/purchase_double_validation/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/cs.po b/addons/purchase_double_validation/i18n/cs.po index 4ba538d614b..fdd7fafaa9a 100644 --- a/addons/purchase_double_validation/i18n/cs.po +++ b/addons/purchase_double_validation/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/da.po b/addons/purchase_double_validation/i18n/da.po index ed683af0d17..bbcb975840c 100644 --- a/addons/purchase_double_validation/i18n/da.po +++ b/addons/purchase_double_validation/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/de.po b/addons/purchase_double_validation/i18n/de.po index 1d381983ac8..a77f3e8640a 100644 --- a/addons/purchase_double_validation/i18n/de.po +++ b/addons/purchase_double_validation/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/es.po b/addons/purchase_double_validation/i18n/es.po index 600b0520e1d..70c21210519 100644 --- a/addons/purchase_double_validation/i18n/es.po +++ b/addons/purchase_double_validation/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/es_CR.po b/addons/purchase_double_validation/i18n/es_CR.po index 93d69a4ecd9..87729efc675 100644 --- a/addons/purchase_double_validation/i18n/es_CR.po +++ b/addons/purchase_double_validation/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/es_EC.po b/addons/purchase_double_validation/i18n/es_EC.po index 4610d6c59da..e532a8d0790 100644 --- a/addons/purchase_double_validation/i18n/es_EC.po +++ b/addons/purchase_double_validation/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/fi.po b/addons/purchase_double_validation/i18n/fi.po index 7fad8d72b41..67075cbdf37 100644 --- a/addons/purchase_double_validation/i18n/fi.po +++ b/addons/purchase_double_validation/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:38+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/fr.po b/addons/purchase_double_validation/i18n/fr.po index 77dc8e6ba54..5f2170ae5ed 100644 --- a/addons/purchase_double_validation/i18n/fr.po +++ b/addons/purchase_double_validation/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/gl.po b/addons/purchase_double_validation/i18n/gl.po index a43e15b5847..d0954f7bb15 100644 --- a/addons/purchase_double_validation/i18n/gl.po +++ b/addons/purchase_double_validation/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/hr.po b/addons/purchase_double_validation/i18n/hr.po index 2f8c917028b..4f7cd188478 100644 --- a/addons/purchase_double_validation/i18n/hr.po +++ b/addons/purchase_double_validation/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/hu.po b/addons/purchase_double_validation/i18n/hu.po index 6b14d8e74be..7e0498de39f 100644 --- a/addons/purchase_double_validation/i18n/hu.po +++ b/addons/purchase_double_validation/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/it.po b/addons/purchase_double_validation/i18n/it.po index 717803eeb05..9377bea9285 100644 --- a/addons/purchase_double_validation/i18n/it.po +++ b/addons/purchase_double_validation/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/ja.po b/addons/purchase_double_validation/i18n/ja.po index a77deaaa4b0..3c82473a90e 100644 --- a/addons/purchase_double_validation/i18n/ja.po +++ b/addons/purchase_double_validation/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/lt.po b/addons/purchase_double_validation/i18n/lt.po index 38f9e28ea5e..c4064fdd9f7 100644 --- a/addons/purchase_double_validation/i18n/lt.po +++ b/addons/purchase_double_validation/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/mk.po b/addons/purchase_double_validation/i18n/mk.po index c7bc4c7f872..939f3f4a47d 100644 --- a/addons/purchase_double_validation/i18n/mk.po +++ b/addons/purchase_double_validation/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/mn.po b/addons/purchase_double_validation/i18n/mn.po index b9847886a4a..3a0dc689e7a 100644 --- a/addons/purchase_double_validation/i18n/mn.po +++ b/addons/purchase_double_validation/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/nl.po b/addons/purchase_double_validation/i18n/nl.po index 02a3a5c9bda..aa5cf4a001c 100644 --- a/addons/purchase_double_validation/i18n/nl.po +++ b/addons/purchase_double_validation/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-01 18:25+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/pl.po b/addons/purchase_double_validation/i18n/pl.po index 2611b38d74b..b755dd99469 100644 --- a/addons/purchase_double_validation/i18n/pl.po +++ b/addons/purchase_double_validation/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/pt.po b/addons/purchase_double_validation/i18n/pt.po index 3f709006fa0..cfa7e67ce70 100644 --- a/addons/purchase_double_validation/i18n/pt.po +++ b/addons/purchase_double_validation/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/pt_BR.po b/addons/purchase_double_validation/i18n/pt_BR.po index 2c08661803e..e76511e8aa3 100644 --- a/addons/purchase_double_validation/i18n/pt_BR.po +++ b/addons/purchase_double_validation/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/ro.po b/addons/purchase_double_validation/i18n/ro.po index 2c4cd2ae055..6ce2315c80f 100644 --- a/addons/purchase_double_validation/i18n/ro.po +++ b/addons/purchase_double_validation/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-12 15:28+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/ru.po b/addons/purchase_double_validation/i18n/ru.po index 282186ce2df..acf72107e44 100644 --- a/addons/purchase_double_validation/i18n/ru.po +++ b/addons/purchase_double_validation/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/sl.po b/addons/purchase_double_validation/i18n/sl.po index 14db7d3ebc7..8f5cf3d6f75 100644 --- a/addons/purchase_double_validation/i18n/sl.po +++ b/addons/purchase_double_validation/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/sv.po b/addons/purchase_double_validation/i18n/sv.po index e77914e445b..a553aab04b8 100644 --- a/addons/purchase_double_validation/i18n/sv.po +++ b/addons/purchase_double_validation/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/tr.po b/addons/purchase_double_validation/i18n/tr.po index ca5214e462a..e5fae8a9ed2 100644 --- a/addons/purchase_double_validation/i18n/tr.po +++ b/addons/purchase_double_validation/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/zh_CN.po b/addons/purchase_double_validation/i18n/zh_CN.po index 95876acfb85..bd4652744c9 100644 --- a/addons/purchase_double_validation/i18n/zh_CN.po +++ b/addons/purchase_double_validation/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_requisition/i18n/ar.po b/addons/purchase_requisition/i18n/ar.po index b1c60983ff1..34496e71886 100644 --- a/addons/purchase_requisition/i18n/ar.po +++ b/addons/purchase_requisition/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/bg.po b/addons/purchase_requisition/i18n/bg.po index e736c29f19f..d792c3ea85c 100644 --- a/addons/purchase_requisition/i18n/bg.po +++ b/addons/purchase_requisition/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/bs.po b/addons/purchase_requisition/i18n/bs.po index 4f3c3b10657..6e2b39bee3f 100644 --- a/addons/purchase_requisition/i18n/bs.po +++ b/addons/purchase_requisition/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/ca.po b/addons/purchase_requisition/i18n/ca.po index d68e1aa3c55..90e6bc7dd5f 100644 --- a/addons/purchase_requisition/i18n/ca.po +++ b/addons/purchase_requisition/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/cs.po b/addons/purchase_requisition/i18n/cs.po index f5874c621b4..c70d5c3da98 100644 --- a/addons/purchase_requisition/i18n/cs.po +++ b/addons/purchase_requisition/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/da.po b/addons/purchase_requisition/i18n/da.po index c8815492369..7883c0954fd 100644 --- a/addons/purchase_requisition/i18n/da.po +++ b/addons/purchase_requisition/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-05 06:00+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/de.po b/addons/purchase_requisition/i18n/de.po index df34a83b183..b0e455b66b5 100644 --- a/addons/purchase_requisition/i18n/de.po +++ b/addons/purchase_requisition/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-27 05:03+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/es.po b/addons/purchase_requisition/i18n/es.po index d4e4be29a35..b09d7d13598 100644 --- a/addons/purchase_requisition/i18n/es.po +++ b/addons/purchase_requisition/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/es_CR.po b/addons/purchase_requisition/i18n/es_CR.po index d866e4a18cd..87bc3a6e164 100644 --- a/addons/purchase_requisition/i18n/es_CR.po +++ b/addons/purchase_requisition/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/fi.po b/addons/purchase_requisition/i18n/fi.po index 2b2cadd17f9..edd008ed34c 100644 --- a/addons/purchase_requisition/i18n/fi.po +++ b/addons/purchase_requisition/i18n/fi.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-11-20 05:40+0000\n" +"PO-Revision-Date: 2013-11-20 05:49+0000\n" "Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition @@ -254,6 +254,8 @@ msgid "" "You have already one %s purchase order for this partner, you must cancel " "this purchase order to create a new quotation." msgstr "" +"Tälle kumppanille on jo yksi ostotilaus \"%s. Peruuta ensin tämä ostotilaus " +"ennen uuden tarjouksen luontia." #. module: purchase_requisition #: view:purchase.requisition:0 @@ -322,7 +324,7 @@ msgstr "Ostotilaus" #. module: purchase_requisition #: field:purchase.requisition,origin:0 msgid "Source Document" -msgstr "Lähdeasiakirja" +msgstr "Lähdedokumentti" #. module: purchase_requisition #: code:addons/purchase_requisition/wizard/purchase_requisition_partner.py:41 @@ -478,7 +480,7 @@ msgid "" "Check this box to generates purchase requisition instead of generating " "requests for quotation from procurement." msgstr "" -"Valitse tämä valintalaatikko luodaksesi ostopyynnön sen asemesta, että " +"Valitse tämä valintalaatikko luodaksesi ostopyynnön sen sijaan, että " "luotaisiin tarjouspyynnöt hankinnalle." #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/fr.po b/addons/purchase_requisition/i18n/fr.po index 6e18183d005..40dbde6fc32 100644 --- a/addons/purchase_requisition/i18n/fr.po +++ b/addons/purchase_requisition/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-14 01:23+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-15 05:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/hr.po b/addons/purchase_requisition/i18n/hr.po index e6bf6dcb238..223484c6eba 100644 --- a/addons/purchase_requisition/i18n/hr.po +++ b/addons/purchase_requisition/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/hu.po b/addons/purchase_requisition/i18n/hu.po index 6d4da56b8b5..d3f413037ea 100644 --- a/addons/purchase_requisition/i18n/hu.po +++ b/addons/purchase_requisition/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/id.po b/addons/purchase_requisition/i18n/id.po index a70b3f44a9c..2b855e59fb9 100644 --- a/addons/purchase_requisition/i18n/id.po +++ b/addons/purchase_requisition/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/it.po b/addons/purchase_requisition/i18n/it.po index 95b3416d953..df92899c893 100644 --- a/addons/purchase_requisition/i18n/it.po +++ b/addons/purchase_requisition/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/ja.po b/addons/purchase_requisition/i18n/ja.po index b0fcf522efc..a699ac9cd97 100644 --- a/addons/purchase_requisition/i18n/ja.po +++ b/addons/purchase_requisition/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/ko.po b/addons/purchase_requisition/i18n/ko.po index d73fd71f217..5448a018d9d 100644 --- a/addons/purchase_requisition/i18n/ko.po +++ b/addons/purchase_requisition/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/mk.po b/addons/purchase_requisition/i18n/mk.po index b6b24076483..819fa304a91 100644 --- a/addons/purchase_requisition/i18n/mk.po +++ b/addons/purchase_requisition/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/mn.po b/addons/purchase_requisition/i18n/mn.po index 735b259bc4a..9432ac89e72 100644 --- a/addons/purchase_requisition/i18n/mn.po +++ b/addons/purchase_requisition/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/nb.po b/addons/purchase_requisition/i18n/nb.po index 406b550e64c..ed9ea50f73b 100644 --- a/addons/purchase_requisition/i18n/nb.po +++ b/addons/purchase_requisition/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/nl.po b/addons/purchase_requisition/i18n/nl.po index 67e8f1fbe59..bc3afc7517a 100644 --- a/addons/purchase_requisition/i18n/nl.po +++ b/addons/purchase_requisition/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-26 12:57+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/pl.po b/addons/purchase_requisition/i18n/pl.po index df3f411eee3..bd8dc8fac6e 100644 --- a/addons/purchase_requisition/i18n/pl.po +++ b/addons/purchase_requisition/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/pt.po b/addons/purchase_requisition/i18n/pt.po index f383d5e5792..9953b6a7121 100644 --- a/addons/purchase_requisition/i18n/pt.po +++ b/addons/purchase_requisition/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/pt_BR.po b/addons/purchase_requisition/i18n/pt_BR.po index 2bcfad7ae36..93b77a5ab6b 100644 --- a/addons/purchase_requisition/i18n/pt_BR.po +++ b/addons/purchase_requisition/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/ro.po b/addons/purchase_requisition/i18n/ro.po index d98169ff2db..0d65fa067b9 100644 --- a/addons/purchase_requisition/i18n/ro.po +++ b/addons/purchase_requisition/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/ru.po b/addons/purchase_requisition/i18n/ru.po index 44f6ebe3b40..72759a3eb62 100644 --- a/addons/purchase_requisition/i18n/ru.po +++ b/addons/purchase_requisition/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-27 05:28+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/sl.po b/addons/purchase_requisition/i18n/sl.po index 4931201db91..af4ea3ea901 100644 --- a/addons/purchase_requisition/i18n/sl.po +++ b/addons/purchase_requisition/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/sv.po b/addons/purchase_requisition/i18n/sv.po index 1b17250b7f4..80186937c53 100644 --- a/addons/purchase_requisition/i18n/sv.po +++ b/addons/purchase_requisition/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/tr.po b/addons/purchase_requisition/i18n/tr.po index 8265d9a8bbe..7ca648b593e 100644 --- a/addons/purchase_requisition/i18n/tr.po +++ b/addons/purchase_requisition/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/zh_CN.po b/addons/purchase_requisition/i18n/zh_CN.po index a874777844f..80ee784fae3 100644 --- a/addons/purchase_requisition/i18n/zh_CN.po +++ b/addons/purchase_requisition/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-03 15:28+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/report_intrastat/i18n/ar.po b/addons/report_intrastat/i18n/ar.po index eb0b28178cf..bcc03bd722c 100644 --- a/addons/report_intrastat/i18n/ar.po +++ b/addons/report_intrastat/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/bg.po b/addons/report_intrastat/i18n/bg.po index 4db04cc4210..5bdc732cf88 100644 --- a/addons/report_intrastat/i18n/bg.po +++ b/addons/report_intrastat/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/bs.po b/addons/report_intrastat/i18n/bs.po index 9f4bb422f7a..8f3c8490e5f 100644 --- a/addons/report_intrastat/i18n/bs.po +++ b/addons/report_intrastat/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ca.po b/addons/report_intrastat/i18n/ca.po index ccbee94c2be..6d07fd7ecb1 100644 --- a/addons/report_intrastat/i18n/ca.po +++ b/addons/report_intrastat/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/cs.po b/addons/report_intrastat/i18n/cs.po index ba9b0385b47..ab08758896c 100644 --- a/addons/report_intrastat/i18n/cs.po +++ b/addons/report_intrastat/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/da.po b/addons/report_intrastat/i18n/da.po index b3bb42b4607..ac1f18b6b5a 100644 --- a/addons/report_intrastat/i18n/da.po +++ b/addons/report_intrastat/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/de.po b/addons/report_intrastat/i18n/de.po index d5bc5502608..73a4c7f248b 100644 --- a/addons/report_intrastat/i18n/de.po +++ b/addons/report_intrastat/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/es.po b/addons/report_intrastat/i18n/es.po index 7759df1f175..fcbb8a80cc2 100644 --- a/addons/report_intrastat/i18n/es.po +++ b/addons/report_intrastat/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/es_AR.po b/addons/report_intrastat/i18n/es_AR.po index 80961087b36..a3a17673bb8 100644 --- a/addons/report_intrastat/i18n/es_AR.po +++ b/addons/report_intrastat/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/es_CR.po b/addons/report_intrastat/i18n/es_CR.po index 40a5c7ab4a1..90f82d2b721 100644 --- a/addons/report_intrastat/i18n/es_CR.po +++ b/addons/report_intrastat/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/et.po b/addons/report_intrastat/i18n/et.po index 352fd1878c7..9306cf211c4 100644 --- a/addons/report_intrastat/i18n/et.po +++ b/addons/report_intrastat/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/fi.po b/addons/report_intrastat/i18n/fi.po index e14ab0b413a..340243ea354 100644 --- a/addons/report_intrastat/i18n/fi.po +++ b/addons/report_intrastat/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/fr.po b/addons/report_intrastat/i18n/fr.po index 0a217081a5e..462853870a6 100644 --- a/addons/report_intrastat/i18n/fr.po +++ b/addons/report_intrastat/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/hr.po b/addons/report_intrastat/i18n/hr.po index 213d7603e12..c17330a7ee5 100644 --- a/addons/report_intrastat/i18n/hr.po +++ b/addons/report_intrastat/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-02 05:37+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/hu.po b/addons/report_intrastat/i18n/hu.po index 98c23bfbc42..fba0186f162 100644 --- a/addons/report_intrastat/i18n/hu.po +++ b/addons/report_intrastat/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/id.po b/addons/report_intrastat/i18n/id.po index f49b4f1e55c..d03e89b434f 100644 --- a/addons/report_intrastat/i18n/id.po +++ b/addons/report_intrastat/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/it.po b/addons/report_intrastat/i18n/it.po index 4f746fa2a43..226c0716511 100644 --- a/addons/report_intrastat/i18n/it.po +++ b/addons/report_intrastat/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ja.po b/addons/report_intrastat/i18n/ja.po index e117733e3b2..28e1ef18307 100644 --- a/addons/report_intrastat/i18n/ja.po +++ b/addons/report_intrastat/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ko.po b/addons/report_intrastat/i18n/ko.po index cd3f8b0a2c0..a087bf7ee05 100644 --- a/addons/report_intrastat/i18n/ko.po +++ b/addons/report_intrastat/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/lt.po b/addons/report_intrastat/i18n/lt.po index b471ef89442..e6062248857 100644 --- a/addons/report_intrastat/i18n/lt.po +++ b/addons/report_intrastat/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/mk.po b/addons/report_intrastat/i18n/mk.po index cb5b744753f..0d54d09f1a9 100644 --- a/addons/report_intrastat/i18n/mk.po +++ b/addons/report_intrastat/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/mn.po b/addons/report_intrastat/i18n/mn.po index 37697eed007..6cbe13d2343 100644 --- a/addons/report_intrastat/i18n/mn.po +++ b/addons/report_intrastat/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/nl.po b/addons/report_intrastat/i18n/nl.po index 2d64b9a7d44..38dd6ab6013 100644 --- a/addons/report_intrastat/i18n/nl.po +++ b/addons/report_intrastat/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/nl_BE.po b/addons/report_intrastat/i18n/nl_BE.po index e7a0b13edc9..0e47ad643bb 100644 --- a/addons/report_intrastat/i18n/nl_BE.po +++ b/addons/report_intrastat/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/pl.po b/addons/report_intrastat/i18n/pl.po index ef78106a175..54601c98a69 100644 --- a/addons/report_intrastat/i18n/pl.po +++ b/addons/report_intrastat/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/pt.po b/addons/report_intrastat/i18n/pt.po index 29faea26842..bef1007c035 100644 --- a/addons/report_intrastat/i18n/pt.po +++ b/addons/report_intrastat/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/pt_BR.po b/addons/report_intrastat/i18n/pt_BR.po index ab517141771..a5d550758c1 100644 --- a/addons/report_intrastat/i18n/pt_BR.po +++ b/addons/report_intrastat/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ro.po b/addons/report_intrastat/i18n/ro.po index d5ceb59fa03..6064d22a78b 100644 --- a/addons/report_intrastat/i18n/ro.po +++ b/addons/report_intrastat/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ru.po b/addons/report_intrastat/i18n/ru.po index a3ecb9f57e4..cdfd7698289 100644 --- a/addons/report_intrastat/i18n/ru.po +++ b/addons/report_intrastat/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/sl.po b/addons/report_intrastat/i18n/sl.po index 14244001a16..c0cdcbf0dbd 100644 --- a/addons/report_intrastat/i18n/sl.po +++ b/addons/report_intrastat/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-22 05:34+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/sq.po b/addons/report_intrastat/i18n/sq.po index a32c03c797f..9b3bc2d44bc 100644 --- a/addons/report_intrastat/i18n/sq.po +++ b/addons/report_intrastat/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/sv.po b/addons/report_intrastat/i18n/sv.po index 2b4e192edd7..dda7e3b9628 100644 --- a/addons/report_intrastat/i18n/sv.po +++ b/addons/report_intrastat/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/tlh.po b/addons/report_intrastat/i18n/tlh.po index d39b98297a2..d3d4946d330 100644 --- a/addons/report_intrastat/i18n/tlh.po +++ b/addons/report_intrastat/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/tr.po b/addons/report_intrastat/i18n/tr.po index 719944650a5..fa51258e0b7 100644 --- a/addons/report_intrastat/i18n/tr.po +++ b/addons/report_intrastat/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/uk.po b/addons/report_intrastat/i18n/uk.po index e88aeb387d9..ffb882c77e1 100644 --- a/addons/report_intrastat/i18n/uk.po +++ b/addons/report_intrastat/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/vi.po b/addons/report_intrastat/i18n/vi.po index 111d53bf1e1..e8296fb930a 100644 --- a/addons/report_intrastat/i18n/vi.po +++ b/addons/report_intrastat/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/zh_CN.po b/addons/report_intrastat/i18n/zh_CN.po index d8db336ff48..3496da6af44 100644 --- a/addons/report_intrastat/i18n/zh_CN.po +++ b/addons/report_intrastat/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-29 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/zh_TW.po b/addons/report_intrastat/i18n/zh_TW.po index 319fc59868c..54dc6ccd817 100644 --- a/addons/report_intrastat/i18n/zh_TW.po +++ b/addons/report_intrastat/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_webkit/i18n/ar.po b/addons/report_webkit/i18n/ar.po index b79f5cf0ab6..655297f4c2e 100644 --- a/addons/report_webkit/i18n/ar.po +++ b/addons/report_webkit/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/bg.po b/addons/report_webkit/i18n/bg.po index 50f40d78974..e1d9a9d244f 100644 --- a/addons/report_webkit/i18n/bg.po +++ b/addons/report_webkit/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ca.po b/addons/report_webkit/i18n/ca.po index b4cf2042a84..1934ed6448f 100644 --- a/addons/report_webkit/i18n/ca.po +++ b/addons/report_webkit/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/cs.po b/addons/report_webkit/i18n/cs.po index ae2e0669d27..0cc2117e78b 100644 --- a/addons/report_webkit/i18n/cs.po +++ b/addons/report_webkit/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/da.po b/addons/report_webkit/i18n/da.po index c5f42ad8302..af4b78aade4 100644 --- a/addons/report_webkit/i18n/da.po +++ b/addons/report_webkit/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/de.po b/addons/report_webkit/i18n/de.po index 3be78730b52..25dd76cfeea 100644 --- a/addons/report_webkit/i18n/de.po +++ b/addons/report_webkit/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/es.po b/addons/report_webkit/i18n/es.po index d7f6d12d138..887a1e1ec59 100644 --- a/addons/report_webkit/i18n/es.po +++ b/addons/report_webkit/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/es_CR.po b/addons/report_webkit/i18n/es_CR.po index 8e8de9e236c..3ad731ecb6c 100644 --- a/addons/report_webkit/i18n/es_CR.po +++ b/addons/report_webkit/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/fi.po b/addons/report_webkit/i18n/fi.po index 80812ed5846..75b2ee49846 100644 --- a/addons/report_webkit/i18n/fi.po +++ b/addons/report_webkit/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/fr.po b/addons/report_webkit/i18n/fr.po index 28a9e6e08b9..ca742f4cf09 100644 --- a/addons/report_webkit/i18n/fr.po +++ b/addons/report_webkit/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-05-22 06:44+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/hr.po b/addons/report_webkit/i18n/hr.po index d003647acd4..72eeccafd18 100644 --- a/addons/report_webkit/i18n/hr.po +++ b/addons/report_webkit/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/hu.po b/addons/report_webkit/i18n/hu.po index 72de9b03cb1..3b7dbbe6dc5 100644 --- a/addons/report_webkit/i18n/hu.po +++ b/addons/report_webkit/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/it.po b/addons/report_webkit/i18n/it.po index 169ff9613f4..5b634bb1b88 100644 --- a/addons/report_webkit/i18n/it.po +++ b/addons/report_webkit/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ja.po b/addons/report_webkit/i18n/ja.po index 4594d0bd9b1..a5c58412661 100644 --- a/addons/report_webkit/i18n/ja.po +++ b/addons/report_webkit/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/mk.po b/addons/report_webkit/i18n/mk.po index 3991bff95fc..0e30cac7041 100644 --- a/addons/report_webkit/i18n/mk.po +++ b/addons/report_webkit/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/mn.po b/addons/report_webkit/i18n/mn.po index 32646d8d651..8832e6ced33 100644 --- a/addons/report_webkit/i18n/mn.po +++ b/addons/report_webkit/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/nl.po b/addons/report_webkit/i18n/nl.po index cd8d79c0a36..e5f37ccc290 100644 --- a/addons/report_webkit/i18n/nl.po +++ b/addons/report_webkit/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-02 15:55+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/pl.po b/addons/report_webkit/i18n/pl.po index 4764538fffc..8cc4d580978 100644 --- a/addons/report_webkit/i18n/pl.po +++ b/addons/report_webkit/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/pt.po b/addons/report_webkit/i18n/pt.po index abd6895731b..6d67c3d3cbc 100644 --- a/addons/report_webkit/i18n/pt.po +++ b/addons/report_webkit/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/pt_BR.po b/addons/report_webkit/i18n/pt_BR.po index 5fe0852d236..79304f2ddc6 100644 --- a/addons/report_webkit/i18n/pt_BR.po +++ b/addons/report_webkit/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ro.po b/addons/report_webkit/i18n/ro.po index 0f610c50260..9a3420fdd7d 100644 --- a/addons/report_webkit/i18n/ro.po +++ b/addons/report_webkit/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-14 16:38+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ru.po b/addons/report_webkit/i18n/ru.po index 311816f7c31..24d36a39864 100644 --- a/addons/report_webkit/i18n/ru.po +++ b/addons/report_webkit/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/sl.po b/addons/report_webkit/i18n/sl.po index d27c9315c9f..24a48a0696b 100644 --- a/addons/report_webkit/i18n/sl.po +++ b/addons/report_webkit/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-25 05:49+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/sv.po b/addons/report_webkit/i18n/sv.po index aba70741f34..9874aaf795b 100644 --- a/addons/report_webkit/i18n/sv.po +++ b/addons/report_webkit/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/tr.po b/addons/report_webkit/i18n/tr.po index 1701fb0379b..556a52ec52c 100644 --- a/addons/report_webkit/i18n/tr.po +++ b/addons/report_webkit/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-29 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/zh_CN.po b/addons/report_webkit/i18n/zh_CN.po index 0b61a5626f7..72899c4e396 100644 --- a/addons/report_webkit/i18n/zh_CN.po +++ b/addons/report_webkit/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-28 14:49+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-29 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/resource/i18n/ar.po b/addons/resource/i18n/ar.po index 394a06e983e..13b0f40ee0f 100644 --- a/addons/resource/i18n/ar.po +++ b/addons/resource/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/bg.po b/addons/resource/i18n/bg.po index 8a960e956d0..5198c29ddc8 100644 --- a/addons/resource/i18n/bg.po +++ b/addons/resource/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/bs.po b/addons/resource/i18n/bs.po index 49efdf2712a..3630faa32bd 100644 --- a/addons/resource/i18n/bs.po +++ b/addons/resource/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ca.po b/addons/resource/i18n/ca.po index 67e95bc2b43..f5350c7e683 100644 --- a/addons/resource/i18n/ca.po +++ b/addons/resource/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/cs.po b/addons/resource/i18n/cs.po index f43641b94f5..4f132ad561e 100644 --- a/addons/resource/i18n/cs.po +++ b/addons/resource/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/da.po b/addons/resource/i18n/da.po index ecc70e09d2d..f9f8a9a9028 100644 --- a/addons/resource/i18n/da.po +++ b/addons/resource/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/de.po b/addons/resource/i18n/de.po index 218dae2f44b..d4562378310 100644 --- a/addons/resource/i18n/de.po +++ b/addons/resource/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/es.po b/addons/resource/i18n/es.po index 2b1bb786812..c8781772241 100644 --- a/addons/resource/i18n/es.po +++ b/addons/resource/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/es_CR.po b/addons/resource/i18n/es_CR.po index 2aa93fc1d54..dde1e39b7a4 100644 --- a/addons/resource/i18n/es_CR.po +++ b/addons/resource/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/es_EC.po b/addons/resource/i18n/es_EC.po index 7a04b037894..86de63fc89d 100644 --- a/addons/resource/i18n/es_EC.po +++ b/addons/resource/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/et.po b/addons/resource/i18n/et.po index 21d843df11f..304d00e1a10 100644 --- a/addons/resource/i18n/et.po +++ b/addons/resource/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/fi.po b/addons/resource/i18n/fi.po index 2d3fee6b9f1..408d9d07264 100644 --- a/addons/resource/i18n/fi.po +++ b/addons/resource/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/fr.po b/addons/resource/i18n/fr.po index cff6597bb8a..d3c4249d893 100644 --- a/addons/resource/i18n/fr.po +++ b/addons/resource/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-01 06:27+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/gl.po b/addons/resource/i18n/gl.po index 70c3b593fd7..1f71a69c369 100644 --- a/addons/resource/i18n/gl.po +++ b/addons/resource/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/hr.po b/addons/resource/i18n/hr.po index b71d4bf3027..2def90f74a0 100644 --- a/addons/resource/i18n/hr.po +++ b/addons/resource/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/hu.po b/addons/resource/i18n/hu.po index 497c1cd8f07..0091e5a1a34 100644 --- a/addons/resource/i18n/hu.po +++ b/addons/resource/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/it.po b/addons/resource/i18n/it.po index ce7c3154168..159fc4a4abc 100644 --- a/addons/resource/i18n/it.po +++ b/addons/resource/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ja.po b/addons/resource/i18n/ja.po index 38d07434238..1c19eb58e9e 100644 --- a/addons/resource/i18n/ja.po +++ b/addons/resource/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/lt.po b/addons/resource/i18n/lt.po index eb17c8eafdb..bc7a507ac8a 100644 --- a/addons/resource/i18n/lt.po +++ b/addons/resource/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/mk.po b/addons/resource/i18n/mk.po index 3c8ea51328c..e9b6e825257 100644 --- a/addons/resource/i18n/mk.po +++ b/addons/resource/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: resource diff --git a/addons/resource/i18n/mn.po b/addons/resource/i18n/mn.po index 7735fb054b6..066cb9f439d 100644 --- a/addons/resource/i18n/mn.po +++ b/addons/resource/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/nl.po b/addons/resource/i18n/nl.po index 0f55137a6e8..410f2d938ee 100644 --- a/addons/resource/i18n/nl.po +++ b/addons/resource/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-08 12:24+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/pl.po b/addons/resource/i18n/pl.po index 8c82b1813e9..5339f03b6dd 100644 --- a/addons/resource/i18n/pl.po +++ b/addons/resource/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: resource diff --git a/addons/resource/i18n/pt.po b/addons/resource/i18n/pt.po index a4794c4fafb..1cedffd9099 100644 --- a/addons/resource/i18n/pt.po +++ b/addons/resource/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/pt_BR.po b/addons/resource/i18n/pt_BR.po index 4695fef05e4..44b660adba1 100644 --- a/addons/resource/i18n/pt_BR.po +++ b/addons/resource/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 20:53+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ro.po b/addons/resource/i18n/ro.po index 7f53263a513..82c5f22cb6f 100644 --- a/addons/resource/i18n/ro.po +++ b/addons/resource/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-12 18:55+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ru.po b/addons/resource/i18n/ru.po index 1c2ecbbbfca..c6b51d12c4f 100644 --- a/addons/resource/i18n/ru.po +++ b/addons/resource/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/sl.po b/addons/resource/i18n/sl.po index 5b1b5d9b559..915569f9b14 100644 --- a/addons/resource/i18n/sl.po +++ b/addons/resource/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:23+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/sv.po b/addons/resource/i18n/sv.po index d9118d54652..371b4ffb62f 100644 --- a/addons/resource/i18n/sv.po +++ b/addons/resource/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/tr.po b/addons/resource/i18n/tr.po index 3a2cefdab06..d525a6b964e 100644 --- a/addons/resource/i18n/tr.po +++ b/addons/resource/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/vi.po b/addons/resource/i18n/vi.po index c03bbcc7c9d..fd7a603fb0b 100644 --- a/addons/resource/i18n/vi.po +++ b/addons/resource/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/zh_CN.po b/addons/resource/i18n/zh_CN.po index 659ec07d649..b50f4e7a50d 100644 --- a/addons/resource/i18n/zh_CN.po +++ b/addons/resource/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-03 15:25+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/sale/i18n/ar.po b/addons/sale/i18n/ar.po index d91e5d0c5bd..2e5de47cb38 100644 --- a/addons/sale/i18n/ar.po +++ b/addons/sale/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/bg.po b/addons/sale/i18n/bg.po index 7747ab90b92..5d2f8cde017 100644 --- a/addons/sale/i18n/bg.po +++ b/addons/sale/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/bs.po b/addons/sale/i18n/bs.po index 123169677be..e923eb034de 100644 --- a/addons/sale/i18n/bs.po +++ b/addons/sale/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:13+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/ca.po b/addons/sale/i18n/ca.po index 8b6a0a8c70c..0709be2f6af 100644 --- a/addons/sale/i18n/ca.po +++ b/addons/sale/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/cs.po b/addons/sale/i18n/cs.po index 0551cdc51db..af875adcd07 100644 --- a/addons/sale/i18n/cs.po +++ b/addons/sale/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-23 05:35+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: cs\n" #. module: sale diff --git a/addons/sale/i18n/da.po b/addons/sale/i18n/da.po index 0de7e5e9c52..8c04281b6b1 100644 --- a/addons/sale/i18n/da.po +++ b/addons/sale/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-05 06:00+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/de.po b/addons/sale/i18n/de.po index aac6b7e5281..4e357ad0f7a 100644 --- a/addons/sale/i18n/de.po +++ b/addons/sale/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/el.po b/addons/sale/i18n/el.po index 927151e809f..4a95bef352f 100644 --- a/addons/sale/i18n/el.po +++ b/addons/sale/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/es.po b/addons/sale/i18n/es.po index 1466699d202..6ce501d909c 100644 --- a/addons/sale/i18n/es.po +++ b/addons/sale/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/es_AR.po b/addons/sale/i18n/es_AR.po index dda029de1d6..39d588b955f 100644 --- a/addons/sale/i18n/es_AR.po +++ b/addons/sale/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/es_BO.po b/addons/sale/i18n/es_BO.po index 946ac2a6ca7..fcc423ca8a5 100644 --- a/addons/sale/i18n/es_BO.po +++ b/addons/sale/i18n/es_BO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 07:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/es_CL.po b/addons/sale/i18n/es_CL.po index f829730aac5..728617a555c 100644 --- a/addons/sale/i18n/es_CL.po +++ b/addons/sale/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/es_CR.po b/addons/sale/i18n/es_CR.po index ada539e974f..0937d2e83a3 100644 --- a/addons/sale/i18n/es_CR.po +++ b/addons/sale/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/es_EC.po b/addons/sale/i18n/es_EC.po index e3c794393fc..04725423430 100644 --- a/addons/sale/i18n/es_EC.po +++ b/addons/sale/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/es_MX.po b/addons/sale/i18n/es_MX.po index bbca863557f..e81476cd2e0 100644 --- a/addons/sale/i18n/es_MX.po +++ b/addons/sale/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/et.po b/addons/sale/i18n/et.po index 9606d5d5b3f..9fd31ed366a 100644 --- a/addons/sale/i18n/et.po +++ b/addons/sale/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/eu.po b/addons/sale/i18n/eu.po index c49a936edd5..a3616ced897 100644 --- a/addons/sale/i18n/eu.po +++ b/addons/sale/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/fi.po b/addons/sale/i18n/fi.po index eecf37e6004..8a55fdfa773 100644 --- a/addons/sale/i18n/fi.po +++ b/addons/sale/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/fr.po b/addons/sale/i18n/fr.po index ad27d8e0b8e..0106150d024 100644 --- a/addons/sale/i18n/fr.po +++ b/addons/sale/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/gl.po b/addons/sale/i18n/gl.po index df0c5ae4d7a..4afb8f1d039 100644 --- a/addons/sale/i18n/gl.po +++ b/addons/sale/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/hi.po b/addons/sale/i18n/hi.po index 1516d035850..f652a6aa7ad 100644 --- a/addons/sale/i18n/hi.po +++ b/addons/sale/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-11 05:29+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/hr.po b/addons/sale/i18n/hr.po index 94c8edcb17e..0c92b3a2498 100644 --- a/addons/sale/i18n/hr.po +++ b/addons/sale/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-31 05:47+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/hu.po b/addons/sale/i18n/hu.po index 6280a9a2744..dd00aa5ff0a 100644 --- a/addons/sale/i18n/hu.po +++ b/addons/sale/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: field:sale.config.settings,module_warning:0 @@ -265,7 +265,7 @@ msgstr "Összérték" #. module: sale #: field:sale.config.settings,group_invoice_so_lines:0 msgid "Generate invoices based on the sales order lines" -msgstr "Számla létrehozása a megrendelési sorokra" +msgstr "Számla létrehozása a megrendelési téetelsorokra" #. module: sale #: help:sale.make.invoice,grouped:0 @@ -373,7 +373,7 @@ msgstr "Üzlet neve" #: code:addons/sale/sale.py:598 #, python-format msgid "You cannot confirm a sales order which has no line." -msgstr "Nem tud megerősíteni sor nélküli megrendelést" +msgstr "Nem tud megerősíteni tétel nélküli értékesítési megbízást" #. module: sale #: model:ir.actions.act_window,help:sale.action_order_line_tree2 @@ -390,12 +390,15 @@ msgid "" " " msgstr "" "

\n" -" Itt van a lista a már kiszámlázott megrendelési sorokról. " +" Ez itt a lista a már kiszámlázott megrendelési tételekről. " "Tud\n" -" számlázni megrendelési részt, a megrendelés soraival. Nincs\n" +" számlázni megrendelési részt, a megrendelés tételeivel. " +"Nincs\n" " szüksége erre a listára, ha kiszállítási Kiszolgáltatási " -"jegyből\n" -" számláz vagy a teljes értékesítést egyszerre számlázza.\n" +"jegyből/\n" +" Szállító levélből számláz vagy a teljes értékesítést " +"egyszerre\n" +" számlázza.\n" "

\n" " " @@ -477,10 +480,10 @@ msgid "" " or a fixed price (for advances) directly from the sales " "order form if you prefer." msgstr "" -"Ezen a megrendelésen minden sor tétel számlázva lesz. Lehetősége van a " +"Ezen a megrendelésen minden tétel sor számlázva lesz. Lehetősége van a " "megrendelés egy bizonyos százalékának számlázására\n" -" vagy fix ár (az előlegekre) direkt a megrendelés " -"űrlapról ha kívánja." +" vagy fix ár (az előlegekre), ah kívánja direkt a " +"megrendelés űrlapról." #. module: sale #: field:sale.order,message_summary:0 @@ -574,7 +577,7 @@ msgstr "" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines ready to be invoiced" -msgstr "Megrendelési sorok készen állnak számlázásra" +msgstr "Megrendelési tételek készen állnak számlázásra" #. module: sale #: code:addons/sale/sale.py:308 @@ -584,7 +587,7 @@ msgid "" "prices of existing order lines will not be updated." msgstr "" "Ha ennek a megrendelésnek az árlistáját megváltoztatja (esetleg a " -"pénznemet), a meglévő megrendelés sorai nem lesznek frissítve." +"pénznemet), a meglévő megrendelés tételei nem lesznek frissítve." #. module: sale #: report:sale.order:0 @@ -626,9 +629,7 @@ msgstr "A megrendelés megrendelési hónapja" #, python-format msgid "" "You cannot group sales having different currencies for the same partner." -msgstr "" -"Nem csoportosíthat értékesítést, ha ugyan ahhoz a partnerhez különböző " -"devizák vannak." +msgstr "Nem csoportosíthat különböző devizákon értékesítést egy partnerhez." #. module: sale #: view:sale.advance.payment.inv:0 @@ -734,7 +735,7 @@ msgstr "(frissítés)" #. module: sale #: model:ir.model,name:sale.model_sale_order_line msgid "Sales Order Line" -msgstr "Vevői megrendelés sor" +msgstr "Megrendelési tétel" #. module: sale #: field:sale.config.settings,module_analytic_user_function:0 @@ -755,7 +756,7 @@ msgstr "Megrendelés száma" #: view:sale.order:0 #: field:sale.order,order_line:0 msgid "Order Lines" -msgstr "Megrendelés sorok" +msgstr "Megrendelési tételek" #. module: sale #: field:account.config.settings,module_sale_analytic_plans:0 @@ -923,9 +924,9 @@ msgid "" msgstr "" "

\n" " Kattintson ehhez a vevőhöz tartozó árajánlat vagy " -"megrendelés létrehozásához.\n" +"értékesítési megbízás létrehozásához.\n" "

\n" -" OpenERP segít a hatékony értékesítési folyamat hatékony " +" OpenERP segít az értékesítési folyamat hatékony " "kezelésében:\n" " árajánlat, megrendelés, szállítás,számlázás és " "kiegyenlítés.\n" @@ -934,9 +935,6 @@ msgstr "" "megbeszélésének szervezésében,\n" " és lehetővé teszik a megrendeléseken a vásárlói fejlődésének " "követését.\n" -" order, and allow your customer to keep track of the " -"evolution\n" -" of the sales order.\n" "

\n" " " @@ -961,11 +959,12 @@ msgstr "" "

\n" " Kattintson új értékesítési hely meghatározáshoz.\n" "

\n" -" Mindegyik árajánlatot vagy megrendelést össze kell kötni egy " -"értékesítési helyhez. Az\n" -" értékesítési hely meghatároz egy raktárépületet ahonnan a " +" Mindegyik árajánlatot vagy értékesítési megbízást össze kell " +"kötni egy értékesítési helyhez. Az\n" +" értékesítési hely meghatároz egy raktárhelyet ahonnan a " "termék\n" -" szállítva lesz minden egyes ide vonatkozó értékesítéshez.\n" +" kiszállításra kerül minden egyes ide vonatkozó " +"értékesítéshez.\n" "

\n" " " @@ -1015,7 +1014,8 @@ msgid "" " Supplier: don't forget to ask for an express delivery." msgstr "" "Lehetővé teszi a termék értesítéseket, melyeket kapcsolhatjuk, ha egy " -"felhasználó egy megadott terméket értékesíteni akar vagy egy vevőre.\n" +"felhasználó egy megadott terméket vagy egy megadott vevőre értékesíteni " +"szeretne.\n" "Például: Termék: Ezt a terméket érvénytelenítsd, nem lehet 5-nél többet " "vásárolni.\n" " Beszállító: Ne felejts el expressz szállításról érdeklődni." @@ -1024,7 +1024,7 @@ msgstr "" #: code:addons/sale/sale.py:955 #, python-format msgid "No valid pricelist line found ! :" -msgstr "Nem alálható érvényes árlista sor ! :" +msgstr "Nem található érvényes árlista sor ! :" #. module: sale #: field:sale.config.settings,module_sale_margin:0 @@ -1040,7 +1040,7 @@ msgid "" msgstr "" "Ez egy olyan számlalista, amely ehhez az értékesítési megbízáshoz jött " "létre. Ugyanaz az értékesítési megbízás több alkalommal is számlázásra " -"kerülhetett (például sorok alapján)." +"kerülhetett (például tételek alapján)." #. module: sale #: report:sale.order:0 @@ -1055,7 +1055,7 @@ msgstr "Menny." #. module: sale #: view:sale.order.line:0 msgid "My Sales Order Lines" -msgstr "Az én megrendeléseim sorai" +msgstr "Az én értékesítési megbízásam tételei" #. module: sale #: model:process.transition.action,name:sale.process_transition_action_cancel0 @@ -1077,7 +1077,7 @@ msgid "" "Cannot find a pricelist line matching this product and quantity.\n" "You have to change either the product, the quantity or the pricelist." msgstr "" -"Nem található ehhez a termékhez és mennyiséghez hasonló árlista sor.\n" +"Nem található ehhez a termékhez és mennyiséghez hasonló árlista tétel.\n" "Változtassa meg vagy a terméket, a mennyiséget vagy az árlistát." #. module: sale @@ -1112,8 +1112,8 @@ msgid "" "${object.company_id.name} ${object.state in ('draft', 'sent') and " "'Quotation' or 'Order'} (Ref ${object.name or 'n/a' })" msgstr "" -"${object.company_id.name} ${object.state in ('Terv', 'küldött') és " -"'Árajánlatkérés' vagy 'Megrendelés'} (Ref ${object.name or 'n/a' })" +"${object.company_id.name} ${object.state in ('draft', 'sent') and " +"'Árajánlat' or 'Megrendelés'} (Ref ${object.name or 'n/a' })" #. module: sale #: report:sale.order:0 @@ -1148,7 +1148,7 @@ msgstr "" " Kettintson árajánlat létrehozásához, ez az új értékesítés " "első lépése.\n" "

\n" -" OpenERP segít a hatékony értékesítési folyamat hatékony " +" OpenERP segít az értékesítési folyamat hatékony " "kezelésében:\n" " a megrendelés visszaigazolásában, a szállításban,\n" " a számlázásban és az áru ellenértékének beszedésében.\n" @@ -1195,12 +1195,13 @@ msgstr "# megrendelésszámból" #, python-format msgid "Cannot delete a sales order line which is in state '%s'." msgstr "" -"Nem törölhető az a megrendelési sor amelyik ebben az állapotban van '%s'." +"Nem törölhető az a megrendelési téetelsor amelyik ebben az állapotban van " +"'%s'." #. module: sale #: model:res.groups,name:sale.group_mrp_properties msgid "Properties on lines" -msgstr "A sorok tulajdonságai" +msgstr "Tételsorok tulajdonságai" #. module: sale #: code:addons/sale/sale.py:865 @@ -1405,8 +1406,8 @@ msgid "" "After clicking 'Show Lines to Invoice', select lines to invoice and create " "the invoice from the 'More' dropdown menu." msgstr "" -"A 'Mutasd a számlázandó sorokat' kattintás után, válasszon ki számlázandó " -"sorokat és hozza létre a számlát a 'Tovább' legördülő menüből." +"A 'Mutasd a számlázandó tételeket' kattintás után, válasszon ki számlázandó " +"tételeket és hozza létre a számlát a 'Tovább' legördülő menüből." #. module: sale #: view:sale.order:0 @@ -1490,7 +1491,7 @@ msgstr "" #. module: sale #: field:sale.config.settings,group_discount_per_so_line:0 msgid "Allow setting a discount on the sales order lines" -msgstr "Engedélyezi a megrendelés soraira az árengedmény beállítását" +msgstr "Engedélyezi a megrendelés tételeire az árengedmény beállítását" #. module: sale #: field:sale.order,paypal_url:0 @@ -1684,30 +1685,31 @@ msgstr "" "\n" "

Tisztlet${object.partner_id.name},

\n" " \n" -"

Ez itt ${object.state in ('draft', 'sent') and 'quotation' or 'order " -"confirmation'} ${object.company_id.name} vállalattól:

\n" +"

Itt látható az Ön ${object.state in ('draft', 'sent') and " +"'árajánlata' or 'megrendelés visszaigazolása'} ${object.company_id.name} " +"vállalattól:

\n" "\n" "

\n" -"   REFERENCES
\n" -"   Order number: ${object.name}
\n" -"   Order total: ${object.amount_total} " +"   HIVATKOZÁSOK
\n" +"   Szám: ${object.name}
\n" +"   Összeg: ${object.amount_total} " "${object.pricelist_id.currency_id.name}
\n" -"   Order date: ${object.date_order}
\n" +"   Dátum: ${object.date_order}
\n" " % if object.origin:\n" -"   Order reference: ${object.origin}
\n" +"   Referencia rendelés: ${object.origin}
\n" " % endif\n" " % if object.client_order_ref:\n" -"   Your reference: ${object.client_order_ref}
\n" +"   Ön hivatkozási adatai: ${object.client_order_ref}
\n" " % endif\n" " % if object.user_id:\n" -"   Your contact: ${object.user_id.name}\n" +"   Kapcsolattartója: ${object.user_id.name}\n" " % endif\n" "

\n" "\n" " % if object.paypal_url:\n" "
\n" -"

It is also possible to directly pay with Paypal:

\n" +"

Lehetséges közvetlenül Paypal fizetés:

\n" " \n" " \n" @@ -1715,8 +1717,9 @@ msgstr "" " % endif\n" "\n" "
\n" -"

If you have any question, do not hesitate to contact us.

\n" -"

Thank you for choosing ${object.company_id.name or 'us'}!

\n" +"

További felmerülő kérdésekben állunk szíves rendelkezésükre.

\n" +"

Köszönjük a vásárlását és további szép napot kíván a " +"${object.company_id.name or 'us'}!

\n" "
\n" "
\n" "
\n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 20:53+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/ro.po b/addons/sale/i18n/ro.po index f5979b915f8..58f20667089 100644 --- a/addons/sale/i18n/ro.po +++ b/addons/sale/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-04-13 15:27+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:email.template,body_html:sale.email_template_edi_sale diff --git a/addons/sale/i18n/ru.po b/addons/sale/i18n/ru.po index ce70512328c..492ef5b8b30 100644 --- a/addons/sale/i18n/ru.po +++ b/addons/sale/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-06 05:04+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/sk.po b/addons/sale/i18n/sk.po index bf45a2f8da8..17b70611be9 100644 --- a/addons/sale/i18n/sk.po +++ b/addons/sale/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/sl.po b/addons/sale/i18n/sl.po index b5628de966d..ef22e6ef70a 100644 --- a/addons/sale/i18n/sl.po +++ b/addons/sale/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/sq.po b/addons/sale/i18n/sq.po index 42605aaff62..574e4b333cc 100644 --- a/addons/sale/i18n/sq.po +++ b/addons/sale/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:20+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/sr.po b/addons/sale/i18n/sr.po index 9317c54020f..4311c14dbe5 100644 --- a/addons/sale/i18n/sr.po +++ b/addons/sale/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/sr@latin.po b/addons/sale/i18n/sr@latin.po index a7d7b9293c4..f287e70de7d 100644 --- a/addons/sale/i18n/sr@latin.po +++ b/addons/sale/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/sv.po b/addons/sale/i18n/sv.po index c22c2f52d61..5a6e68d9ef3 100644 --- a/addons/sale/i18n/sv.po +++ b/addons/sale/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/th.po b/addons/sale/i18n/th.po index fee3e89d578..5c29a0e3772 100644 --- a/addons/sale/i18n/th.po +++ b/addons/sale/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-31 05:28+0000\n" -"X-Generator: Launchpad (build 16750)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/tlh.po b/addons/sale/i18n/tlh.po index 96aa8fe5e5b..020b14e1e30 100644 --- a/addons/sale/i18n/tlh.po +++ b/addons/sale/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/tr.po b/addons/sale/i18n/tr.po index 7745f44960d..53de9167ade 100644 --- a/addons/sale/i18n/tr.po +++ b/addons/sale/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-22 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/uk.po b/addons/sale/i18n/uk.po index 6f3ae4a8c9c..2ee7e481b1d 100644 --- a/addons/sale/i18n/uk.po +++ b/addons/sale/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/vi.po b/addons/sale/i18n/vi.po index 5eb66ec47c6..a5b0fdfd2da 100644 --- a/addons/sale/i18n/vi.po +++ b/addons/sale/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale/i18n/zh_CN.po b/addons/sale/i18n/zh_CN.po index f784cbba0b6..70163fafd40 100644 --- a/addons/sale/i18n/zh_CN.po +++ b/addons/sale/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-08 05:03+0000\n" -"X-Generator: Launchpad (build 16760)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings @@ -199,6 +199,9 @@ msgid "" "user-wise as well as month wise.\n" " This installs the module account_analytic_analysis." msgstr "" +"用来改变帐号分析视图来给服务公司的经理显示重要数据。\n" +" 您也可以按照用户或月度浏览帐号分析汇总报告。\n" +" 这将安装模块 account_analytic_analysis。" #. module: sale #: selection:sale.order,invoice_quantity:0 @@ -1201,6 +1204,10 @@ msgid "" "available.\n" " This installs the module analytic_user_function." msgstr "" +"允许定义特定用户针对给定帐户的默认功能。\n" +" 该功能主要用于用户编辑时间计划。值被重赋并且域被自动填充。\n" +" 但是仍有可能改变这些值。\n" +" 这将安装模块 analytic_user_function。" #. module: sale #: help:sale.order,create_date:0 @@ -1555,6 +1562,90 @@ msgid "" "
\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Hello ${object.partner_id.name},

\n" +" \n" +"

此为您的 ${object.state in ('draft', 'sent') 和 'quotation' or 'order " +"confirmation'} from ${object.company_id.name}:

\n" +"\n" +"

\n" +"   REFERENCES
\n" +"   Order number: ${object.name}
\n" +"   Order total: ${object.amount_total} " +"${object.pricelist_id.currency_id.name}
\n" +"   Order date: ${object.date_order}
\n" +" % if object.origin:\n" +"   Order reference: ${object.origin}
\n" +" % endif\n" +" % if object.client_order_ref:\n" +"   Your reference: ${object.client_order_ref}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Your contact:
${object.user_id.name}\n" +" % endif\n" +"

\n" +"\n" +" % if object.paypal_url:\n" +"
\n" +"

还能直接由Paypal直接支付:

\n" +" \n" +" \n" +" \n" +" % endif\n" +"\n" +"
\n" +"

如有任何疑问,请直接接洽我们。

\n" +"

感谢选择 ${object.company_id.name or 'us'}!

\n" +"
\n" +"
\n" +"
\n" +"

\n" +" ${object.company_id.name}

\n" +"
\n" +"
\n" +" \n" +" % if object.company_id.street:\n" +" ${object.company_id.street}
\n" +" % endif\n" +" % if object.company_id.street2:\n" +" ${object.company_id.street2}
\n" +" % endif\n" +" % if object.company_id.city or object.company_id.zip:\n" +" ${object.company_id.zip} ${object.company_id.city}
\n" +" % endif\n" +" % if object.company_id.country_id:\n" +" ${object.company_id.state_id and ('%s, ' % " +"object.company_id.state_id.name) or ''} ${object.company_id.country_id.name " +"or ''}
\n" +" % endif\n" +"
\n" +" % if object.company_id.phone:\n" +"
\n" +" Phone:  ${object.company_id.phone}\n" +"
\n" +" % endif\n" +" % if object.company_id.website:\n" +"
\n" +" Web : ${object.company_id.website}\n" +"
\n" +" %endif\n" +"

\n" +"
\n" +"
\n" +" " #. module: sale #: view:sale.order.line:0 diff --git a/addons/sale/i18n/zh_TW.po b/addons/sale/i18n/zh_TW.po index 63580bd8d10..74a26d2c5ed 100644 --- a/addons/sale/i18n/zh_TW.po +++ b/addons/sale/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings diff --git a/addons/sale_analytic_plans/i18n/ar.po b/addons/sale_analytic_plans/i18n/ar.po index 15f3b81c9ee..517465df3a4 100644 --- a/addons/sale_analytic_plans/i18n/ar.po +++ b/addons/sale_analytic_plans/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/bg.po b/addons/sale_analytic_plans/i18n/bg.po index 4134fc459d1..5c13e732787 100644 --- a/addons/sale_analytic_plans/i18n/bg.po +++ b/addons/sale_analytic_plans/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/bs.po b/addons/sale_analytic_plans/i18n/bs.po index c239eadb995..d065edd888d 100644 --- a/addons/sale_analytic_plans/i18n/bs.po +++ b/addons/sale_analytic_plans/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:13+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ca.po b/addons/sale_analytic_plans/i18n/ca.po index 47f2db092fd..d61be36c8bc 100644 --- a/addons/sale_analytic_plans/i18n/ca.po +++ b/addons/sale_analytic_plans/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/cs.po b/addons/sale_analytic_plans/i18n/cs.po index 373c62be658..8465d598684 100644 --- a/addons/sale_analytic_plans/i18n/cs.po +++ b/addons/sale_analytic_plans/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/da.po b/addons/sale_analytic_plans/i18n/da.po index 6e30d104179..83365fa2dea 100644 --- a/addons/sale_analytic_plans/i18n/da.po +++ b/addons/sale_analytic_plans/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/de.po b/addons/sale_analytic_plans/i18n/de.po index 55000a44c1a..b9567570012 100644 --- a/addons/sale_analytic_plans/i18n/de.po +++ b/addons/sale_analytic_plans/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/el.po b/addons/sale_analytic_plans/i18n/el.po index 3c4b3358876..1ae28f61d62 100644 --- a/addons/sale_analytic_plans/i18n/el.po +++ b/addons/sale_analytic_plans/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/en_GB.po b/addons/sale_analytic_plans/i18n/en_GB.po index d19450ae6c4..72a4eecb978 100644 --- a/addons/sale_analytic_plans/i18n/en_GB.po +++ b/addons/sale_analytic_plans/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es.po b/addons/sale_analytic_plans/i18n/es.po index 7c94f74dc27..da3ea660269 100644 --- a/addons/sale_analytic_plans/i18n/es.po +++ b/addons/sale_analytic_plans/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_AR.po b/addons/sale_analytic_plans/i18n/es_AR.po index 3aad6770f5c..07f796e59b0 100644 --- a/addons/sale_analytic_plans/i18n/es_AR.po +++ b/addons/sale_analytic_plans/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_CL.po b/addons/sale_analytic_plans/i18n/es_CL.po index 29339882201..6a6ebe20c97 100644 --- a/addons/sale_analytic_plans/i18n/es_CL.po +++ b/addons/sale_analytic_plans/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_CO.po b/addons/sale_analytic_plans/i18n/es_CO.po index 944519c8cf1..cb6de4ba1ed 100644 --- a/addons/sale_analytic_plans/i18n/es_CO.po +++ b/addons/sale_analytic_plans/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_CR.po b/addons/sale_analytic_plans/i18n/es_CR.po index 83c0912bfb8..8020d871c19 100644 --- a/addons/sale_analytic_plans/i18n/es_CR.po +++ b/addons/sale_analytic_plans/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/et.po b/addons/sale_analytic_plans/i18n/et.po index b091ad732c5..63be4cc6ae3 100644 --- a/addons/sale_analytic_plans/i18n/et.po +++ b/addons/sale_analytic_plans/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/fi.po b/addons/sale_analytic_plans/i18n/fi.po index afe4ea61a3d..0b17a0b2170 100644 --- a/addons/sale_analytic_plans/i18n/fi.po +++ b/addons/sale_analytic_plans/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-03 05:43+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/fr.po b/addons/sale_analytic_plans/i18n/fr.po index 571b9b7f927..877450da8fa 100644 --- a/addons/sale_analytic_plans/i18n/fr.po +++ b/addons/sale_analytic_plans/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/gl.po b/addons/sale_analytic_plans/i18n/gl.po index 3ffd392b342..35845e34780 100644 --- a/addons/sale_analytic_plans/i18n/gl.po +++ b/addons/sale_analytic_plans/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/hr.po b/addons/sale_analytic_plans/i18n/hr.po index 3f28bbbea24..830c70513bf 100644 --- a/addons/sale_analytic_plans/i18n/hr.po +++ b/addons/sale_analytic_plans/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/hu.po b/addons/sale_analytic_plans/i18n/hu.po index 1cfc134a87d..cc31dc1434d 100644 --- a/addons/sale_analytic_plans/i18n/hu.po +++ b/addons/sale_analytic_plans/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/id.po b/addons/sale_analytic_plans/i18n/id.po index 4ca228b3116..0824f5798e7 100644 --- a/addons/sale_analytic_plans/i18n/id.po +++ b/addons/sale_analytic_plans/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/it.po b/addons/sale_analytic_plans/i18n/it.po index d305bec01c8..7ef60a6d96c 100644 --- a/addons/sale_analytic_plans/i18n/it.po +++ b/addons/sale_analytic_plans/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ja.po b/addons/sale_analytic_plans/i18n/ja.po index cff36f9cf32..d5f5201c5ee 100644 --- a/addons/sale_analytic_plans/i18n/ja.po +++ b/addons/sale_analytic_plans/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ko.po b/addons/sale_analytic_plans/i18n/ko.po index f928a14a68a..e8a8aabc6aa 100644 --- a/addons/sale_analytic_plans/i18n/ko.po +++ b/addons/sale_analytic_plans/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/lt.po b/addons/sale_analytic_plans/i18n/lt.po index 6fecf356224..381491d00b3 100644 --- a/addons/sale_analytic_plans/i18n/lt.po +++ b/addons/sale_analytic_plans/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/mk.po b/addons/sale_analytic_plans/i18n/mk.po index f6425338598..80e30e961b6 100644 --- a/addons/sale_analytic_plans/i18n/mk.po +++ b/addons/sale_analytic_plans/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/mn.po b/addons/sale_analytic_plans/i18n/mn.po index 5aa78de7ced..9d23b073584 100644 --- a/addons/sale_analytic_plans/i18n/mn.po +++ b/addons/sale_analytic_plans/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/nb.po b/addons/sale_analytic_plans/i18n/nb.po index c44adb22fe1..9ed50c93a03 100644 --- a/addons/sale_analytic_plans/i18n/nb.po +++ b/addons/sale_analytic_plans/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/nl.po b/addons/sale_analytic_plans/i18n/nl.po index af81bbf6c2d..90c88ae5007 100644 --- a/addons/sale_analytic_plans/i18n/nl.po +++ b/addons/sale_analytic_plans/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/nl_BE.po b/addons/sale_analytic_plans/i18n/nl_BE.po index 004a828f1de..25fa911b8b5 100644 --- a/addons/sale_analytic_plans/i18n/nl_BE.po +++ b/addons/sale_analytic_plans/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/oc.po b/addons/sale_analytic_plans/i18n/oc.po index d703d0cb910..feedb1f720d 100644 --- a/addons/sale_analytic_plans/i18n/oc.po +++ b/addons/sale_analytic_plans/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/pl.po b/addons/sale_analytic_plans/i18n/pl.po index 834aa6727fb..1c4df076bac 100644 --- a/addons/sale_analytic_plans/i18n/pl.po +++ b/addons/sale_analytic_plans/i18n/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/pt.po b/addons/sale_analytic_plans/i18n/pt.po index 26b13cb3f0a..0c5209aa61d 100644 --- a/addons/sale_analytic_plans/i18n/pt.po +++ b/addons/sale_analytic_plans/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/pt_BR.po b/addons/sale_analytic_plans/i18n/pt_BR.po index a118f11b700..6aaf36197d2 100644 --- a/addons/sale_analytic_plans/i18n/pt_BR.po +++ b/addons/sale_analytic_plans/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ro.po b/addons/sale_analytic_plans/i18n/ro.po index 64aa38fdd5a..5ca380aec25 100644 --- a/addons/sale_analytic_plans/i18n/ro.po +++ b/addons/sale_analytic_plans/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-12 18:56+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ru.po b/addons/sale_analytic_plans/i18n/ru.po index 3ddbda548b4..bca21735bda 100644 --- a/addons/sale_analytic_plans/i18n/ru.po +++ b/addons/sale_analytic_plans/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sk.po b/addons/sale_analytic_plans/i18n/sk.po index 280aa0f0499..b2e90cbe31d 100644 --- a/addons/sale_analytic_plans/i18n/sk.po +++ b/addons/sale_analytic_plans/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sl.po b/addons/sale_analytic_plans/i18n/sl.po index 0fa945ff5e6..0ae2a0fb6d8 100644 --- a/addons/sale_analytic_plans/i18n/sl.po +++ b/addons/sale_analytic_plans/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sq.po b/addons/sale_analytic_plans/i18n/sq.po index 152682a5d31..53033fadcb2 100644 --- a/addons/sale_analytic_plans/i18n/sq.po +++ b/addons/sale_analytic_plans/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:21+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sr.po b/addons/sale_analytic_plans/i18n/sr.po index 5339eb4edb2..09c0ac9cbf0 100644 --- a/addons/sale_analytic_plans/i18n/sr.po +++ b/addons/sale_analytic_plans/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sr@latin.po b/addons/sale_analytic_plans/i18n/sr@latin.po index 6d8c101a19d..5594a49a50d 100644 --- a/addons/sale_analytic_plans/i18n/sr@latin.po +++ b/addons/sale_analytic_plans/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sv.po b/addons/sale_analytic_plans/i18n/sv.po index c80bd13db14..62aedeae231 100644 --- a/addons/sale_analytic_plans/i18n/sv.po +++ b/addons/sale_analytic_plans/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/tlh.po b/addons/sale_analytic_plans/i18n/tlh.po index 7dff56a2e26..478ae87f63e 100644 --- a/addons/sale_analytic_plans/i18n/tlh.po +++ b/addons/sale_analytic_plans/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/tr.po b/addons/sale_analytic_plans/i18n/tr.po index a05761ad9b8..54d265e6468 100644 --- a/addons/sale_analytic_plans/i18n/tr.po +++ b/addons/sale_analytic_plans/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/uk.po b/addons/sale_analytic_plans/i18n/uk.po index 70f98559b8c..72fd6fbe4b6 100644 --- a/addons/sale_analytic_plans/i18n/uk.po +++ b/addons/sale_analytic_plans/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/vi.po b/addons/sale_analytic_plans/i18n/vi.po index 59642e737ef..806cd38151c 100644 --- a/addons/sale_analytic_plans/i18n/vi.po +++ b/addons/sale_analytic_plans/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/zh_CN.po b/addons/sale_analytic_plans/i18n/zh_CN.po index 1a82decd801..2c6a7af5978 100644 --- a/addons/sale_analytic_plans/i18n/zh_CN.po +++ b/addons/sale_analytic_plans/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/zh_TW.po b/addons/sale_analytic_plans/i18n/zh_TW.po index 0f9d2dfb70e..8620a8d943e 100644 --- a/addons/sale_analytic_plans/i18n/zh_TW.po +++ b/addons/sale_analytic_plans/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_crm/i18n/ar.po b/addons/sale_crm/i18n/ar.po index 9d2d136ce2f..366a98e0a4b 100644 --- a/addons/sale_crm/i18n/ar.po +++ b/addons/sale_crm/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/bg.po b/addons/sale_crm/i18n/bg.po index 30c81ec2281..bed5c642272 100644 --- a/addons/sale_crm/i18n/bg.po +++ b/addons/sale_crm/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/bs.po b/addons/sale_crm/i18n/bs.po index 21b8b8249d6..2ca23048d1a 100644 --- a/addons/sale_crm/i18n/bs.po +++ b/addons/sale_crm/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:13+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/ca.po b/addons/sale_crm/i18n/ca.po index 232250e3d10..3395961419b 100644 --- a/addons/sale_crm/i18n/ca.po +++ b/addons/sale_crm/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/cs.po b/addons/sale_crm/i18n/cs.po index d766056ff94..76e6bdfc3da 100644 --- a/addons/sale_crm/i18n/cs.po +++ b/addons/sale_crm/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/da.po b/addons/sale_crm/i18n/da.po index 4ddb386f602..5994621529b 100644 --- a/addons/sale_crm/i18n/da.po +++ b/addons/sale_crm/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/de.po b/addons/sale_crm/i18n/de.po index be65b949c37..ecb7d6d0c3a 100644 --- a/addons/sale_crm/i18n/de.po +++ b/addons/sale_crm/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/el.po b/addons/sale_crm/i18n/el.po index 961e6d13caf..9887178a622 100644 --- a/addons/sale_crm/i18n/el.po +++ b/addons/sale_crm/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/es.po b/addons/sale_crm/i18n/es.po index a4e0b759170..0f3f42dd273 100644 --- a/addons/sale_crm/i18n/es.po +++ b/addons/sale_crm/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/es_AR.po b/addons/sale_crm/i18n/es_AR.po index 34d9157d896..1e6a539fa38 100644 --- a/addons/sale_crm/i18n/es_AR.po +++ b/addons/sale_crm/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/es_CL.po b/addons/sale_crm/i18n/es_CL.po index 9ff4a3da76d..01cdf4ab5d2 100644 --- a/addons/sale_crm/i18n/es_CL.po +++ b/addons/sale_crm/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/es_CR.po b/addons/sale_crm/i18n/es_CR.po index a6ecd3208a3..092a4abe386 100644 --- a/addons/sale_crm/i18n/es_CR.po +++ b/addons/sale_crm/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/et.po b/addons/sale_crm/i18n/et.po index 275e208cf2c..5d66cc766df 100644 --- a/addons/sale_crm/i18n/et.po +++ b/addons/sale_crm/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/fi.po b/addons/sale_crm/i18n/fi.po index adb127f8b7d..b6f5de32a82 100644 --- a/addons/sale_crm/i18n/fi.po +++ b/addons/sale_crm/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/fr.po b/addons/sale_crm/i18n/fr.po index 7de3d888e54..8248fa68df0 100644 --- a/addons/sale_crm/i18n/fr.po +++ b/addons/sale_crm/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-28 05:54+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/gl.po b/addons/sale_crm/i18n/gl.po index 78222ffb9f1..a23fabd35bd 100644 --- a/addons/sale_crm/i18n/gl.po +++ b/addons/sale_crm/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/hr.po b/addons/sale_crm/i18n/hr.po index 5512db816fa..627be42503a 100644 --- a/addons/sale_crm/i18n/hr.po +++ b/addons/sale_crm/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-19 04:56+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/hu.po b/addons/sale_crm/i18n/hu.po index 95a08b8d149..ede110c8118 100644 --- a/addons/sale_crm/i18n/hu.po +++ b/addons/sale_crm/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/id.po b/addons/sale_crm/i18n/id.po index 69989275aab..b7fc52f32a8 100644 --- a/addons/sale_crm/i18n/id.po +++ b/addons/sale_crm/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/it.po b/addons/sale_crm/i18n/it.po index 666edf63d97..7e15bc380fa 100644 --- a/addons/sale_crm/i18n/it.po +++ b/addons/sale_crm/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/ja.po b/addons/sale_crm/i18n/ja.po index 745f9bc924e..927918b149a 100644 --- a/addons/sale_crm/i18n/ja.po +++ b/addons/sale_crm/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/ko.po b/addons/sale_crm/i18n/ko.po index c73e4b544bd..8496b265963 100644 --- a/addons/sale_crm/i18n/ko.po +++ b/addons/sale_crm/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/lt.po b/addons/sale_crm/i18n/lt.po index 4a1a8eabc72..3c1d1b4780a 100644 --- a/addons/sale_crm/i18n/lt.po +++ b/addons/sale_crm/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/lv.po b/addons/sale_crm/i18n/lv.po index 7d9777eff66..866955e88c2 100644 --- a/addons/sale_crm/i18n/lv.po +++ b/addons/sale_crm/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/mk.po b/addons/sale_crm/i18n/mk.po index 56f74b3958e..0a10d336a29 100644 --- a/addons/sale_crm/i18n/mk.po +++ b/addons/sale_crm/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/mn.po b/addons/sale_crm/i18n/mn.po index 686d4273931..c63c4aba5c1 100644 --- a/addons/sale_crm/i18n/mn.po +++ b/addons/sale_crm/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/nb.po b/addons/sale_crm/i18n/nb.po index 187e2f76ea1..5bb0ca4fabb 100644 --- a/addons/sale_crm/i18n/nb.po +++ b/addons/sale_crm/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/nl.po b/addons/sale_crm/i18n/nl.po index 0581ae19b3b..3feb0331142 100644 --- a/addons/sale_crm/i18n/nl.po +++ b/addons/sale_crm/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-08 12:24+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/nl_BE.po b/addons/sale_crm/i18n/nl_BE.po index 67b257ab1fe..f5471bcff51 100644 --- a/addons/sale_crm/i18n/nl_BE.po +++ b/addons/sale_crm/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/pl.po b/addons/sale_crm/i18n/pl.po index fd96bb01811..ca89249cc90 100644 --- a/addons/sale_crm/i18n/pl.po +++ b/addons/sale_crm/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/pt.po b/addons/sale_crm/i18n/pt.po index 86019dff0fa..0379485fb70 100644 --- a/addons/sale_crm/i18n/pt.po +++ b/addons/sale_crm/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/pt_BR.po b/addons/sale_crm/i18n/pt_BR.po index 785c06ac51a..9ac68429404 100644 --- a/addons/sale_crm/i18n/pt_BR.po +++ b/addons/sale_crm/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 20:53+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/ro.po b/addons/sale_crm/i18n/ro.po index 52f1a0b4a2a..2227bbe550a 100644 --- a/addons/sale_crm/i18n/ro.po +++ b/addons/sale_crm/i18n/ro.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-14 16:42+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/ru.po b/addons/sale_crm/i18n/ru.po index 8331d840ad6..ac5cb5d1381 100644 --- a/addons/sale_crm/i18n/ru.po +++ b/addons/sale_crm/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-06 05:04+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/sk.po b/addons/sale_crm/i18n/sk.po index b995608211d..f9a40e8be00 100644 --- a/addons/sale_crm/i18n/sk.po +++ b/addons/sale_crm/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/sl.po b/addons/sale_crm/i18n/sl.po index 46c8d4e7934..572171bd00a 100644 --- a/addons/sale_crm/i18n/sl.po +++ b/addons/sale_crm/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/sq.po b/addons/sale_crm/i18n/sq.po index 6c80471ac41..fa7d6f0ee52 100644 --- a/addons/sale_crm/i18n/sq.po +++ b/addons/sale_crm/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:33+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/sv.po b/addons/sale_crm/i18n/sv.po index 2d96c69d78f..3e082219548 100644 --- a/addons/sale_crm/i18n/sv.po +++ b/addons/sale_crm/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/tlh.po b/addons/sale_crm/i18n/tlh.po index b5cd2782a00..c33b9b84dd1 100644 --- a/addons/sale_crm/i18n/tlh.po +++ b/addons/sale_crm/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/tr.po b/addons/sale_crm/i18n/tr.po index d19492cd602..821e4c8444e 100644 --- a/addons/sale_crm/i18n/tr.po +++ b/addons/sale_crm/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: tr\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/uk.po b/addons/sale_crm/i18n/uk.po index 861b17e9de3..b0adc01ab3c 100644 --- a/addons/sale_crm/i18n/uk.po +++ b/addons/sale_crm/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/vi.po b/addons/sale_crm/i18n/vi.po index f22ca237efc..aacf2c49cc4 100644 --- a/addons/sale_crm/i18n/vi.po +++ b/addons/sale_crm/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/zh_CN.po b/addons/sale_crm/i18n/zh_CN.po index cfb84c63e12..9b759f5094a 100644 --- a/addons/sale_crm/i18n/zh_CN.po +++ b/addons/sale_crm/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-03 15:21+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_crm/i18n/zh_TW.po b/addons/sale_crm/i18n/zh_TW.po index 1416843fd7f..07b5122bee2 100644 --- a/addons/sale_crm/i18n/zh_TW.po +++ b/addons/sale_crm/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:92 diff --git a/addons/sale_journal/i18n/ar.po b/addons/sale_journal/i18n/ar.po index 17026a43569..0c51ebb1e4c 100644 --- a/addons/sale_journal/i18n/ar.po +++ b/addons/sale_journal/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/bg.po b/addons/sale_journal/i18n/bg.po index 7c9b1337bc1..17f7d60e49e 100644 --- a/addons/sale_journal/i18n/bg.po +++ b/addons/sale_journal/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/bs.po b/addons/sale_journal/i18n/bs.po index f1fecfe2a58..fc54d5e97ec 100644 --- a/addons/sale_journal/i18n/bs.po +++ b/addons/sale_journal/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ca.po b/addons/sale_journal/i18n/ca.po index 0d197c63e11..f897b14722f 100644 --- a/addons/sale_journal/i18n/ca.po +++ b/addons/sale_journal/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/cs.po b/addons/sale_journal/i18n/cs.po index 25f868876c0..c652f30c61c 100644 --- a/addons/sale_journal/i18n/cs.po +++ b/addons/sale_journal/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/da.po b/addons/sale_journal/i18n/da.po index acf26a488f4..a7c05ca9f31 100644 --- a/addons/sale_journal/i18n/da.po +++ b/addons/sale_journal/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:51+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/de.po b/addons/sale_journal/i18n/de.po index 9a227c6cc5f..b8cd4bc2d23 100644 --- a/addons/sale_journal/i18n/de.po +++ b/addons/sale_journal/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/el.po b/addons/sale_journal/i18n/el.po index 4bf68e752de..1538b4178b9 100644 --- a/addons/sale_journal/i18n/el.po +++ b/addons/sale_journal/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es.po b/addons/sale_journal/i18n/es.po index 9d0a5e8ddc6..8f6c9f5e5f8 100644 --- a/addons/sale_journal/i18n/es.po +++ b/addons/sale_journal/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es_AR.po b/addons/sale_journal/i18n/es_AR.po index 53141be8cd1..dd8b61de0c6 100644 --- a/addons/sale_journal/i18n/es_AR.po +++ b/addons/sale_journal/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es_CL.po b/addons/sale_journal/i18n/es_CL.po index 12c8ff3dcd2..39d2c9b84b7 100644 --- a/addons/sale_journal/i18n/es_CL.po +++ b/addons/sale_journal/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es_CR.po b/addons/sale_journal/i18n/es_CR.po index c2df4884931..a51084a297d 100644 --- a/addons/sale_journal/i18n/es_CR.po +++ b/addons/sale_journal/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/et.po b/addons/sale_journal/i18n/et.po index 860bfe381d8..a740e195d7e 100644 --- a/addons/sale_journal/i18n/et.po +++ b/addons/sale_journal/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/fi.po b/addons/sale_journal/i18n/fi.po index 5869f6f1572..8ef99564f94 100644 --- a/addons/sale_journal/i18n/fi.po +++ b/addons/sale_journal/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-03 05:43+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/fr.po b/addons/sale_journal/i18n/fr.po index ae01e3113a6..e06ac66fbf3 100644 --- a/addons/sale_journal/i18n/fr.po +++ b/addons/sale_journal/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-05-21 15:58+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/gl.po b/addons/sale_journal/i18n/gl.po index c1e6af44bd4..ff1f2b4e12c 100644 --- a/addons/sale_journal/i18n/gl.po +++ b/addons/sale_journal/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/hr.po b/addons/sale_journal/i18n/hr.po index e876ba96d40..da90f2d3089 100644 --- a/addons/sale_journal/i18n/hr.po +++ b/addons/sale_journal/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/hu.po b/addons/sale_journal/i18n/hu.po index 00230c3ff32..6ecaa3417f7 100644 --- a/addons/sale_journal/i18n/hu.po +++ b/addons/sale_journal/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/id.po b/addons/sale_journal/i18n/id.po index f095b7a35d5..17300a50e2a 100644 --- a/addons/sale_journal/i18n/id.po +++ b/addons/sale_journal/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/it.po b/addons/sale_journal/i18n/it.po index bdc3427ae56..5e8320cb07b 100644 --- a/addons/sale_journal/i18n/it.po +++ b/addons/sale_journal/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ja.po b/addons/sale_journal/i18n/ja.po index 0d29552dd03..4c79532bae4 100644 --- a/addons/sale_journal/i18n/ja.po +++ b/addons/sale_journal/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ko.po b/addons/sale_journal/i18n/ko.po index ac98bc26cf3..9a7b04df051 100644 --- a/addons/sale_journal/i18n/ko.po +++ b/addons/sale_journal/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/lt.po b/addons/sale_journal/i18n/lt.po index 89cf414886b..8775418746c 100644 --- a/addons/sale_journal/i18n/lt.po +++ b/addons/sale_journal/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/lv.po b/addons/sale_journal/i18n/lv.po index 71528befc0a..468ca42417e 100644 --- a/addons/sale_journal/i18n/lv.po +++ b/addons/sale_journal/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/mk.po b/addons/sale_journal/i18n/mk.po index f01e3050c38..41318dbbdfa 100644 --- a/addons/sale_journal/i18n/mk.po +++ b/addons/sale_journal/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/mn.po b/addons/sale_journal/i18n/mn.po index 9baf1a9f0c1..76925035760 100644 --- a/addons/sale_journal/i18n/mn.po +++ b/addons/sale_journal/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/nb.po b/addons/sale_journal/i18n/nb.po index 0f4b0c9e16c..919f7e865d8 100644 --- a/addons/sale_journal/i18n/nb.po +++ b/addons/sale_journal/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/nl.po b/addons/sale_journal/i18n/nl.po index be535b88dd1..432120dbb7c 100644 --- a/addons/sale_journal/i18n/nl.po +++ b/addons/sale_journal/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-09 09:43+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/nl_BE.po b/addons/sale_journal/i18n/nl_BE.po index 6163df79977..63f91d8ec16 100644 --- a/addons/sale_journal/i18n/nl_BE.po +++ b/addons/sale_journal/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/pl.po b/addons/sale_journal/i18n/pl.po index 8def9c2ac44..b9c289e9010 100644 --- a/addons/sale_journal/i18n/pl.po +++ b/addons/sale_journal/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/pt.po b/addons/sale_journal/i18n/pt.po index 632f513ef5d..75438420e3f 100644 --- a/addons/sale_journal/i18n/pt.po +++ b/addons/sale_journal/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/pt_BR.po b/addons/sale_journal/i18n/pt_BR.po index e41cd67e00d..00aea52f6aa 100644 --- a/addons/sale_journal/i18n/pt_BR.po +++ b/addons/sale_journal/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ro.po b/addons/sale_journal/i18n/ro.po index 9ef676f335d..b6edfe64be5 100644 --- a/addons/sale_journal/i18n/ro.po +++ b/addons/sale_journal/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-12 18:57+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ru.po b/addons/sale_journal/i18n/ru.po index c13abb23ea7..7843ac917f5 100644 --- a/addons/sale_journal/i18n/ru.po +++ b/addons/sale_journal/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sk.po b/addons/sale_journal/i18n/sk.po index 09c9ade6673..a27df4df188 100644 --- a/addons/sale_journal/i18n/sk.po +++ b/addons/sale_journal/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sl.po b/addons/sale_journal/i18n/sl.po index 5474a818cac..1bd7bf3a00d 100644 --- a/addons/sale_journal/i18n/sl.po +++ b/addons/sale_journal/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-22 05:34+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sq.po b/addons/sale_journal/i18n/sq.po index 641ca3c2e2f..dc746b69cd7 100644 --- a/addons/sale_journal/i18n/sq.po +++ b/addons/sale_journal/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sv.po b/addons/sale_journal/i18n/sv.po index 51876925a5a..eacbe890a18 100644 --- a/addons/sale_journal/i18n/sv.po +++ b/addons/sale_journal/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/tlh.po b/addons/sale_journal/i18n/tlh.po index 0207826101b..f421bb7d12b 100644 --- a/addons/sale_journal/i18n/tlh.po +++ b/addons/sale_journal/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/tr.po b/addons/sale_journal/i18n/tr.po index c9df0d7da80..cae6d28ce2e 100644 --- a/addons/sale_journal/i18n/tr.po +++ b/addons/sale_journal/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/uk.po b/addons/sale_journal/i18n/uk.po index 08769b401d0..dae956e6933 100644 --- a/addons/sale_journal/i18n/uk.po +++ b/addons/sale_journal/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/vi.po b/addons/sale_journal/i18n/vi.po index 167f90fe67d..48073337166 100644 --- a/addons/sale_journal/i18n/vi.po +++ b/addons/sale_journal/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/zh_CN.po b/addons/sale_journal/i18n/zh_CN.po index d330117fbf5..49a20e7085b 100644 --- a/addons/sale_journal/i18n/zh_CN.po +++ b/addons/sale_journal/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/zh_TW.po b/addons/sale_journal/i18n/zh_TW.po index af65a62cf3d..43a80618ee4 100644 --- a/addons/sale_journal/i18n/zh_TW.po +++ b/addons/sale_journal/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_margin/i18n/ar.po b/addons/sale_margin/i18n/ar.po index 29629174e93..0c45803fedc 100644 --- a/addons/sale_margin/i18n/ar.po +++ b/addons/sale_margin/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/bg.po b/addons/sale_margin/i18n/bg.po index c3dc7cb6c28..42fee8d937c 100644 --- a/addons/sale_margin/i18n/bg.po +++ b/addons/sale_margin/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/bs.po b/addons/sale_margin/i18n/bs.po index bbc4cd7d430..edf51acf37c 100644 --- a/addons/sale_margin/i18n/bs.po +++ b/addons/sale_margin/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ca.po b/addons/sale_margin/i18n/ca.po index f2f4c1b1fe1..f47bcc6c708 100644 --- a/addons/sale_margin/i18n/ca.po +++ b/addons/sale_margin/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/cs.po b/addons/sale_margin/i18n/cs.po index d2a0e40120c..ddfafae67ec 100644 --- a/addons/sale_margin/i18n/cs.po +++ b/addons/sale_margin/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/da.po b/addons/sale_margin/i18n/da.po index 30751ad5f0c..614ad63d4e7 100644 --- a/addons/sale_margin/i18n/da.po +++ b/addons/sale_margin/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/de.po b/addons/sale_margin/i18n/de.po index 20d91ef22df..11f7a3cc778 100644 --- a/addons/sale_margin/i18n/de.po +++ b/addons/sale_margin/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/el.po b/addons/sale_margin/i18n/el.po index a7f5ce499ca..5ef0f26023f 100644 --- a/addons/sale_margin/i18n/el.po +++ b/addons/sale_margin/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/es.po b/addons/sale_margin/i18n/es.po index 0f82545d622..8f74e02c40a 100644 --- a/addons/sale_margin/i18n/es.po +++ b/addons/sale_margin/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/es_CL.po b/addons/sale_margin/i18n/es_CL.po index fc01be66491..21b475e5c75 100644 --- a/addons/sale_margin/i18n/es_CL.po +++ b/addons/sale_margin/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/es_CR.po b/addons/sale_margin/i18n/es_CR.po index 7eee7e6997e..e5d26401e41 100644 --- a/addons/sale_margin/i18n/es_CR.po +++ b/addons/sale_margin/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/et.po b/addons/sale_margin/i18n/et.po index 3082214a680..f410b822205 100644 --- a/addons/sale_margin/i18n/et.po +++ b/addons/sale_margin/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/fi.po b/addons/sale_margin/i18n/fi.po index dca436524e2..9e11ee07487 100644 --- a/addons/sale_margin/i18n/fi.po +++ b/addons/sale_margin/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-03 05:43+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/fr.po b/addons/sale_margin/i18n/fr.po index 0a2fa92e965..1b98df07c6f 100644 --- a/addons/sale_margin/i18n/fr.po +++ b/addons/sale_margin/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-05-21 15:59+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/hr.po b/addons/sale_margin/i18n/hr.po index 6673c05d465..564fbfa2d4c 100644 --- a/addons/sale_margin/i18n/hr.po +++ b/addons/sale_margin/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/hu.po b/addons/sale_margin/i18n/hu.po index 32d3335e41b..ec8a36e34a5 100644 --- a/addons/sale_margin/i18n/hu.po +++ b/addons/sale_margin/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/it.po b/addons/sale_margin/i18n/it.po index 4283da17b36..58ce5e07185 100644 --- a/addons/sale_margin/i18n/it.po +++ b/addons/sale_margin/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ja.po b/addons/sale_margin/i18n/ja.po index 5a5be36e252..bbb08e95c9a 100644 --- a/addons/sale_margin/i18n/ja.po +++ b/addons/sale_margin/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/mk.po b/addons/sale_margin/i18n/mk.po index 52f4a076be2..ea1e0d4d0c1 100644 --- a/addons/sale_margin/i18n/mk.po +++ b/addons/sale_margin/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/mn.po b/addons/sale_margin/i18n/mn.po index 6cfaeacc8c2..4a26b45f1be 100644 --- a/addons/sale_margin/i18n/mn.po +++ b/addons/sale_margin/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/nb.po b/addons/sale_margin/i18n/nb.po index 3c6d63242f1..155efd17ee6 100644 --- a/addons/sale_margin/i18n/nb.po +++ b/addons/sale_margin/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/nl.po b/addons/sale_margin/i18n/nl.po index 41d92faf78c..de579ddddbd 100644 --- a/addons/sale_margin/i18n/nl.po +++ b/addons/sale_margin/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/pl.po b/addons/sale_margin/i18n/pl.po index c43dfc76b81..89f4d80e644 100644 --- a/addons/sale_margin/i18n/pl.po +++ b/addons/sale_margin/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/pt.po b/addons/sale_margin/i18n/pt.po index 59eaf4c1b5c..b7bccdc3a68 100644 --- a/addons/sale_margin/i18n/pt.po +++ b/addons/sale_margin/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/pt_BR.po b/addons/sale_margin/i18n/pt_BR.po index e024c0bc725..27a4a0dbbe7 100644 --- a/addons/sale_margin/i18n/pt_BR.po +++ b/addons/sale_margin/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ro.po b/addons/sale_margin/i18n/ro.po index 3db9d603a51..ae7e24901fe 100644 --- a/addons/sale_margin/i18n/ro.po +++ b/addons/sale_margin/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-12 18:58+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ru.po b/addons/sale_margin/i18n/ru.po index fb39e23925e..d190f1f215a 100644 --- a/addons/sale_margin/i18n/ru.po +++ b/addons/sale_margin/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/sk.po b/addons/sale_margin/i18n/sk.po index a1cb6b6e864..1e746ff1baa 100644 --- a/addons/sale_margin/i18n/sk.po +++ b/addons/sale_margin/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/sl.po b/addons/sale_margin/i18n/sl.po index 340efaf16c9..a693926291e 100644 --- a/addons/sale_margin/i18n/sl.po +++ b/addons/sale_margin/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-05 06:00+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/sv.po b/addons/sale_margin/i18n/sv.po index 48a999380ba..c1e10227fb6 100644 --- a/addons/sale_margin/i18n/sv.po +++ b/addons/sale_margin/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/tr.po b/addons/sale_margin/i18n/tr.po index 8d0b2cf3c0d..f5ca9b38540 100644 --- a/addons/sale_margin/i18n/tr.po +++ b/addons/sale_margin/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/zh_CN.po b/addons/sale_margin/i18n/zh_CN.po index 075581a7ee1..0bcaac82109 100644 --- a/addons/sale_margin/i18n/zh_CN.po +++ b/addons/sale_margin/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_mrp/i18n/ar.po b/addons/sale_mrp/i18n/ar.po index f082e9d9c4e..1e2d8da63b7 100644 --- a/addons/sale_mrp/i18n/ar.po +++ b/addons/sale_mrp/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/bg.po b/addons/sale_mrp/i18n/bg.po index 109309b18db..de70080e777 100644 --- a/addons/sale_mrp/i18n/bg.po +++ b/addons/sale_mrp/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/bs.po b/addons/sale_mrp/i18n/bs.po index dc438e71694..6c88110e5aa 100644 --- a/addons/sale_mrp/i18n/bs.po +++ b/addons/sale_mrp/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ca.po b/addons/sale_mrp/i18n/ca.po index bd02fd75098..d09e6cfaa74 100644 --- a/addons/sale_mrp/i18n/ca.po +++ b/addons/sale_mrp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/cs.po b/addons/sale_mrp/i18n/cs.po index ac3e98512b8..4e152184cd5 100644 --- a/addons/sale_mrp/i18n/cs.po +++ b/addons/sale_mrp/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/da.po b/addons/sale_mrp/i18n/da.po index 7f06ea4e1ae..852a7e0ef55 100644 --- a/addons/sale_mrp/i18n/da.po +++ b/addons/sale_mrp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/de.po b/addons/sale_mrp/i18n/de.po index 99c796042c7..381d381c435 100644 --- a/addons/sale_mrp/i18n/de.po +++ b/addons/sale_mrp/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/es.po b/addons/sale_mrp/i18n/es.po index 207e00579e0..d73f007edb6 100644 --- a/addons/sale_mrp/i18n/es.po +++ b/addons/sale_mrp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/es_CL.po b/addons/sale_mrp/i18n/es_CL.po index 83dfff0f2c9..c60f76c2f97 100644 --- a/addons/sale_mrp/i18n/es_CL.po +++ b/addons/sale_mrp/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/es_CR.po b/addons/sale_mrp/i18n/es_CR.po index a3ebc342033..41cdedfa224 100644 --- a/addons/sale_mrp/i18n/es_CR.po +++ b/addons/sale_mrp/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/et.po b/addons/sale_mrp/i18n/et.po index b9fa0a768fa..724ee51b030 100644 --- a/addons/sale_mrp/i18n/et.po +++ b/addons/sale_mrp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/fi.po b/addons/sale_mrp/i18n/fi.po index eb90034c14c..a2fe76a5300 100644 --- a/addons/sale_mrp/i18n/fi.po +++ b/addons/sale_mrp/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/fr.po b/addons/sale_mrp/i18n/fr.po index 2f499baa90e..b127267cd48 100644 --- a/addons/sale_mrp/i18n/fr.po +++ b/addons/sale_mrp/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/gl.po b/addons/sale_mrp/i18n/gl.po index fb3d21463ff..7bec596fd87 100644 --- a/addons/sale_mrp/i18n/gl.po +++ b/addons/sale_mrp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/hr.po b/addons/sale_mrp/i18n/hr.po index 6630e7ce3a0..50abd39d5f7 100644 --- a/addons/sale_mrp/i18n/hr.po +++ b/addons/sale_mrp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/hu.po b/addons/sale_mrp/i18n/hu.po index b0492e0107c..db63364f102 100644 --- a/addons/sale_mrp/i18n/hu.po +++ b/addons/sale_mrp/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/it.po b/addons/sale_mrp/i18n/it.po index 141cf220047..d26fad3229d 100644 --- a/addons/sale_mrp/i18n/it.po +++ b/addons/sale_mrp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ja.po b/addons/sale_mrp/i18n/ja.po index 9c35e9e4602..b93013dd556 100644 --- a/addons/sale_mrp/i18n/ja.po +++ b/addons/sale_mrp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/lt.po b/addons/sale_mrp/i18n/lt.po index 974611507c0..4180e2b0800 100644 --- a/addons/sale_mrp/i18n/lt.po +++ b/addons/sale_mrp/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/mk.po b/addons/sale_mrp/i18n/mk.po index f668a3429df..d8772775c29 100644 --- a/addons/sale_mrp/i18n/mk.po +++ b/addons/sale_mrp/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/mn.po b/addons/sale_mrp/i18n/mn.po index 888ffdb78d5..15c48a3b5b3 100644 --- a/addons/sale_mrp/i18n/mn.po +++ b/addons/sale_mrp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/nb.po b/addons/sale_mrp/i18n/nb.po index fbcee79618e..ca95787ab0f 100644 --- a/addons/sale_mrp/i18n/nb.po +++ b/addons/sale_mrp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/nl.po b/addons/sale_mrp/i18n/nl.po index a2c8605f1b7..f72301968ee 100644 --- a/addons/sale_mrp/i18n/nl.po +++ b/addons/sale_mrp/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/nl_BE.po b/addons/sale_mrp/i18n/nl_BE.po index 3e7fe204f22..0e8d79be025 100644 --- a/addons/sale_mrp/i18n/nl_BE.po +++ b/addons/sale_mrp/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/pl.po b/addons/sale_mrp/i18n/pl.po index 150b5776f21..fe339112331 100644 --- a/addons/sale_mrp/i18n/pl.po +++ b/addons/sale_mrp/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/pt.po b/addons/sale_mrp/i18n/pt.po index a69ca7c630b..6c101440511 100644 --- a/addons/sale_mrp/i18n/pt.po +++ b/addons/sale_mrp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/pt_BR.po b/addons/sale_mrp/i18n/pt_BR.po index 10edeabfba1..5ebc5369ad5 100644 --- a/addons/sale_mrp/i18n/pt_BR.po +++ b/addons/sale_mrp/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ro.po b/addons/sale_mrp/i18n/ro.po index 0207d4df1fb..7b5143e7a63 100644 --- a/addons/sale_mrp/i18n/ro.po +++ b/addons/sale_mrp/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-12 18:59+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ru.po b/addons/sale_mrp/i18n/ru.po index 6972f6eb9ab..205a03c8bd0 100644 --- a/addons/sale_mrp/i18n/ru.po +++ b/addons/sale_mrp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/sl.po b/addons/sale_mrp/i18n/sl.po index e6bda6bf983..fd337205776 100644 --- a/addons/sale_mrp/i18n/sl.po +++ b/addons/sale_mrp/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/sr@latin.po b/addons/sale_mrp/i18n/sr@latin.po index 86c9e9097d9..b2b211d18e4 100644 --- a/addons/sale_mrp/i18n/sr@latin.po +++ b/addons/sale_mrp/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/sv.po b/addons/sale_mrp/i18n/sv.po index 59d145e21aa..1ccffd62157 100644 --- a/addons/sale_mrp/i18n/sv.po +++ b/addons/sale_mrp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/tr.po b/addons/sale_mrp/i18n/tr.po index 36be4e1be6b..d50033bd5e5 100644 --- a/addons/sale_mrp/i18n/tr.po +++ b/addons/sale_mrp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/zh_CN.po b/addons/sale_mrp/i18n/zh_CN.po index 599abea309a..b9863f31164 100644 --- a/addons/sale_mrp/i18n/zh_CN.po +++ b/addons/sale_mrp/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_order_dates/i18n/ar.po b/addons/sale_order_dates/i18n/ar.po index 9cc56f9e4d0..4765f8376fe 100644 --- a/addons/sale_order_dates/i18n/ar.po +++ b/addons/sale_order_dates/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/bg.po b/addons/sale_order_dates/i18n/bg.po index b98cda38e8b..06fdd0e2396 100644 --- a/addons/sale_order_dates/i18n/bg.po +++ b/addons/sale_order_dates/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/bs.po b/addons/sale_order_dates/i18n/bs.po index aa375985ecf..8cc51aae4ae 100644 --- a/addons/sale_order_dates/i18n/bs.po +++ b/addons/sale_order_dates/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ca.po b/addons/sale_order_dates/i18n/ca.po index 5ecb3311089..8996d982931 100644 --- a/addons/sale_order_dates/i18n/ca.po +++ b/addons/sale_order_dates/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/cs.po b/addons/sale_order_dates/i18n/cs.po index 26134cabc22..8401c331e71 100644 --- a/addons/sale_order_dates/i18n/cs.po +++ b/addons/sale_order_dates/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/da.po b/addons/sale_order_dates/i18n/da.po index 6317e404ff5..8cd5bcc231a 100644 --- a/addons/sale_order_dates/i18n/da.po +++ b/addons/sale_order_dates/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/de.po b/addons/sale_order_dates/i18n/de.po index 52c80773bf8..e8403451b5b 100644 --- a/addons/sale_order_dates/i18n/de.po +++ b/addons/sale_order_dates/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/el.po b/addons/sale_order_dates/i18n/el.po index 507c960577e..0bcf3d85ca2 100644 --- a/addons/sale_order_dates/i18n/el.po +++ b/addons/sale_order_dates/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/es.po b/addons/sale_order_dates/i18n/es.po index 4887c260b74..fae773b1723 100644 --- a/addons/sale_order_dates/i18n/es.po +++ b/addons/sale_order_dates/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/es_CL.po b/addons/sale_order_dates/i18n/es_CL.po index c78b466a608..24e356a75cb 100644 --- a/addons/sale_order_dates/i18n/es_CL.po +++ b/addons/sale_order_dates/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/es_CR.po b/addons/sale_order_dates/i18n/es_CR.po index fc1863359cd..c8cc49cdf3e 100644 --- a/addons/sale_order_dates/i18n/es_CR.po +++ b/addons/sale_order_dates/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/fi.po b/addons/sale_order_dates/i18n/fi.po index c2a88b14535..fc3142f6b2c 100644 --- a/addons/sale_order_dates/i18n/fi.po +++ b/addons/sale_order_dates/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-04 06:02+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/fr.po b/addons/sale_order_dates/i18n/fr.po index a484b4a59e5..3a90a74eb02 100644 --- a/addons/sale_order_dates/i18n/fr.po +++ b/addons/sale_order_dates/i18n/fr.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-05-21 15:59+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/gl.po b/addons/sale_order_dates/i18n/gl.po index 877ae9365a1..4717d196ac1 100644 --- a/addons/sale_order_dates/i18n/gl.po +++ b/addons/sale_order_dates/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/hr.po b/addons/sale_order_dates/i18n/hr.po index 06d2088445d..b50b68bf063 100644 --- a/addons/sale_order_dates/i18n/hr.po +++ b/addons/sale_order_dates/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/hu.po b/addons/sale_order_dates/i18n/hu.po index d7990751289..f6bb3f99263 100644 --- a/addons/sale_order_dates/i18n/hu.po +++ b/addons/sale_order_dates/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/id.po b/addons/sale_order_dates/i18n/id.po index c9c1037b8df..76f2eaa62ee 100644 --- a/addons/sale_order_dates/i18n/id.po +++ b/addons/sale_order_dates/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/it.po b/addons/sale_order_dates/i18n/it.po index 6ad5bd6386a..42b1502a015 100644 --- a/addons/sale_order_dates/i18n/it.po +++ b/addons/sale_order_dates/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ja.po b/addons/sale_order_dates/i18n/ja.po index 64bcc3d2e27..f30803cd4d6 100644 --- a/addons/sale_order_dates/i18n/ja.po +++ b/addons/sale_order_dates/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:39+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/mk.po b/addons/sale_order_dates/i18n/mk.po index f18bbd6dbb1..ae8785de581 100644 --- a/addons/sale_order_dates/i18n/mk.po +++ b/addons/sale_order_dates/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/mn.po b/addons/sale_order_dates/i18n/mn.po index b10c780887a..5c1c95c6b73 100644 --- a/addons/sale_order_dates/i18n/mn.po +++ b/addons/sale_order_dates/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/nb.po b/addons/sale_order_dates/i18n/nb.po index 71cfe0a4a02..a3e35809289 100644 --- a/addons/sale_order_dates/i18n/nb.po +++ b/addons/sale_order_dates/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/nl.po b/addons/sale_order_dates/i18n/nl.po index d733bbeaf9a..ecb3ae7d81a 100644 --- a/addons/sale_order_dates/i18n/nl.po +++ b/addons/sale_order_dates/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/pl.po b/addons/sale_order_dates/i18n/pl.po index 24d915f232a..fdb6f5b65d0 100644 --- a/addons/sale_order_dates/i18n/pl.po +++ b/addons/sale_order_dates/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/pt.po b/addons/sale_order_dates/i18n/pt.po index c5409fffc80..1bbbe51da30 100644 --- a/addons/sale_order_dates/i18n/pt.po +++ b/addons/sale_order_dates/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/pt_BR.po b/addons/sale_order_dates/i18n/pt_BR.po index f8e3c43f21b..9434e1e3b48 100644 --- a/addons/sale_order_dates/i18n/pt_BR.po +++ b/addons/sale_order_dates/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ro.po b/addons/sale_order_dates/i18n/ro.po index 678439db9eb..78359fba847 100644 --- a/addons/sale_order_dates/i18n/ro.po +++ b/addons/sale_order_dates/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-12 19:00+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ru.po b/addons/sale_order_dates/i18n/ru.po index 283c1818050..89e5b55f3b4 100644 --- a/addons/sale_order_dates/i18n/ru.po +++ b/addons/sale_order_dates/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sk.po b/addons/sale_order_dates/i18n/sk.po index fb671293437..e95c5102b84 100644 --- a/addons/sale_order_dates/i18n/sk.po +++ b/addons/sale_order_dates/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sl.po b/addons/sale_order_dates/i18n/sl.po index 6b5b2540044..99de41bfed9 100644 --- a/addons/sale_order_dates/i18n/sl.po +++ b/addons/sale_order_dates/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-22 05:34+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sr@latin.po b/addons/sale_order_dates/i18n/sr@latin.po index c63960a7ef6..8751f5d5abb 100644 --- a/addons/sale_order_dates/i18n/sr@latin.po +++ b/addons/sale_order_dates/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sv.po b/addons/sale_order_dates/i18n/sv.po index a3c0065915d..1ca937885a5 100644 --- a/addons/sale_order_dates/i18n/sv.po +++ b/addons/sale_order_dates/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/tr.po b/addons/sale_order_dates/i18n/tr.po index f6340deca09..f1ee3ee5f8c 100644 --- a/addons/sale_order_dates/i18n/tr.po +++ b/addons/sale_order_dates/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/zh_CN.po b/addons/sale_order_dates/i18n/zh_CN.po index e739e0a069c..6f4876991ca 100644 --- a/addons/sale_order_dates/i18n/zh_CN.po +++ b/addons/sale_order_dates/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_stock/i18n/ar.po b/addons/sale_stock/i18n/ar.po index 2e1ff8c4c93..c8914e8151a 100644 --- a/addons/sale_stock/i18n/ar.po +++ b/addons/sale_stock/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/bg.po b/addons/sale_stock/i18n/bg.po index f9cb36af439..0d8b022691a 100644 --- a/addons/sale_stock/i18n/bg.po +++ b/addons/sale_stock/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/bs.po b/addons/sale_stock/i18n/bs.po index 6842f280046..7141c1e4887 100644 --- a/addons/sale_stock/i18n/bs.po +++ b/addons/sale_stock/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:13+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ca.po b/addons/sale_stock/i18n/ca.po index 5df3267aaf8..4488466a784 100644 --- a/addons/sale_stock/i18n/ca.po +++ b/addons/sale_stock/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/cs.po b/addons/sale_stock/i18n/cs.po index 250222c64ac..ca425b02d89 100644 --- a/addons/sale_stock/i18n/cs.po +++ b/addons/sale_stock/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/da.po b/addons/sale_stock/i18n/da.po index e3f1c46b0ff..a4ae33bcfac 100644 --- a/addons/sale_stock/i18n/da.po +++ b/addons/sale_stock/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/de.po b/addons/sale_stock/i18n/de.po index 41a90e1036c..6f0d405da89 100644 --- a/addons/sale_stock/i18n/de.po +++ b/addons/sale_stock/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-04 05:45+0000\n" -"X-Generator: Launchpad (build 16791)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/el.po b/addons/sale_stock/i18n/el.po index a5a635ce5c7..74b50d6d70f 100644 --- a/addons/sale_stock/i18n/el.po +++ b/addons/sale_stock/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/es.po b/addons/sale_stock/i18n/es.po index f990f3d9822..aef19da0f3a 100644 --- a/addons/sale_stock/i18n/es.po +++ b/addons/sale_stock/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/et.po b/addons/sale_stock/i18n/et.po index 2a3ec60a8b9..fe68d2253c0 100644 --- a/addons/sale_stock/i18n/et.po +++ b/addons/sale_stock/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/fi.po b/addons/sale_stock/i18n/fi.po index 4a3a24066ab..f3acc156f65 100644 --- a/addons/sale_stock/i18n/fi.po +++ b/addons/sale_stock/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/fr.po b/addons/sale_stock/i18n/fr.po index 9edd8003653..27049f5b9fa 100644 --- a/addons/sale_stock/i18n/fr.po +++ b/addons/sale_stock/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-05-21 16:03+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/gl.po b/addons/sale_stock/i18n/gl.po index 2738d374891..a8af5e35ef8 100644 --- a/addons/sale_stock/i18n/gl.po +++ b/addons/sale_stock/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/hr.po b/addons/sale_stock/i18n/hr.po index a486b16027f..7cfe3285d4d 100644 --- a/addons/sale_stock/i18n/hr.po +++ b/addons/sale_stock/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/hu.po b/addons/sale_stock/i18n/hu.po index 93d4529a68b..67150d496e7 100644 --- a/addons/sale_stock/i18n/hu.po +++ b/addons/sale_stock/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/id.po b/addons/sale_stock/i18n/id.po index 8de9773f0bf..24cfaacb126 100644 --- a/addons/sale_stock/i18n/id.po +++ b/addons/sale_stock/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/is.po b/addons/sale_stock/i18n/is.po index 503d43e8520..9f0ed39adf5 100644 --- a/addons/sale_stock/i18n/is.po +++ b/addons/sale_stock/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/it.po b/addons/sale_stock/i18n/it.po index 8c40d8af1a8..22a679378be 100644 --- a/addons/sale_stock/i18n/it.po +++ b/addons/sale_stock/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ja.po b/addons/sale_stock/i18n/ja.po index 1ff24cec957..a9afa9c7cbd 100644 --- a/addons/sale_stock/i18n/ja.po +++ b/addons/sale_stock/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:39+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ko.po b/addons/sale_stock/i18n/ko.po index d22332f9587..5b17a11f449 100644 --- a/addons/sale_stock/i18n/ko.po +++ b/addons/sale_stock/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/lo.po b/addons/sale_stock/i18n/lo.po index 2ec3b3f330d..23e069dd3f0 100644 --- a/addons/sale_stock/i18n/lo.po +++ b/addons/sale_stock/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/lt.po b/addons/sale_stock/i18n/lt.po index 1e8d2f37fc9..425abcf926b 100644 --- a/addons/sale_stock/i18n/lt.po +++ b/addons/sale_stock/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/lv.po b/addons/sale_stock/i18n/lv.po index feddb5c11ca..d63d8d21367 100644 --- a/addons/sale_stock/i18n/lv.po +++ b/addons/sale_stock/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/mk.po b/addons/sale_stock/i18n/mk.po index f1d502bc264..e2e9d69d9cf 100644 --- a/addons/sale_stock/i18n/mk.po +++ b/addons/sale_stock/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/mn.po b/addons/sale_stock/i18n/mn.po index e27dbb08acf..9aa955225a7 100644 --- a/addons/sale_stock/i18n/mn.po +++ b/addons/sale_stock/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/nb.po b/addons/sale_stock/i18n/nb.po index b8bab09ef57..eb22457b8ed 100644 --- a/addons/sale_stock/i18n/nb.po +++ b/addons/sale_stock/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/nl.po b/addons/sale_stock/i18n/nl.po index 8d1553b97c6..1c4bdcf74d5 100644 --- a/addons/sale_stock/i18n/nl.po +++ b/addons/sale_stock/i18n/nl.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-06-08 13:59+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/oc.po b/addons/sale_stock/i18n/oc.po index 266bf07b9b7..31fc5fd0f5b 100644 --- a/addons/sale_stock/i18n/oc.po +++ b/addons/sale_stock/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/pl.po b/addons/sale_stock/i18n/pl.po index f44ef8342f2..7653abc0d8e 100644 --- a/addons/sale_stock/i18n/pl.po +++ b/addons/sale_stock/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/pt.po b/addons/sale_stock/i18n/pt.po index 33f5451a80e..c7453c0c8e4 100644 --- a/addons/sale_stock/i18n/pt.po +++ b/addons/sale_stock/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/pt_BR.po b/addons/sale_stock/i18n/pt_BR.po index 69b1077227c..910bdd4ae3d 100644 --- a/addons/sale_stock/i18n/pt_BR.po +++ b/addons/sale_stock/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 20:54+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ro.po b/addons/sale_stock/i18n/ro.po index e646dba7d04..ce391c09b53 100644 --- a/addons/sale_stock/i18n/ro.po +++ b/addons/sale_stock/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 19:05+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ru.po b/addons/sale_stock/i18n/ru.po index 8dc82defe9c..e1e94541073 100644 --- a/addons/sale_stock/i18n/ru.po +++ b/addons/sale_stock/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-16 06:03+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sk.po b/addons/sale_stock/i18n/sk.po index 2b4b3b11cfe..3af60f7f509 100644 --- a/addons/sale_stock/i18n/sk.po +++ b/addons/sale_stock/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sl.po b/addons/sale_stock/i18n/sl.po index d8d43ae7a44..9cbdc5d2e5a 100644 --- a/addons/sale_stock/i18n/sl.po +++ b/addons/sale_stock/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-25 06:00+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sq.po b/addons/sale_stock/i18n/sq.po index b86dcdd792e..34f2e26d91a 100644 --- a/addons/sale_stock/i18n/sq.po +++ b/addons/sale_stock/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sr.po b/addons/sale_stock/i18n/sr.po index f0181f448cf..cd911d6a4fb 100644 --- a/addons/sale_stock/i18n/sr.po +++ b/addons/sale_stock/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sr@latin.po b/addons/sale_stock/i18n/sr@latin.po index 55be2e906a9..4e9e14fabd7 100644 --- a/addons/sale_stock/i18n/sr@latin.po +++ b/addons/sale_stock/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sv.po b/addons/sale_stock/i18n/sv.po index ab73ba75f5e..ffb05e1e6df 100644 --- a/addons/sale_stock/i18n/sv.po +++ b/addons/sale_stock/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/th.po b/addons/sale_stock/i18n/th.po index 5cc1fbbc5c2..2bd130fe4a6 100644 --- a/addons/sale_stock/i18n/th.po +++ b/addons/sale_stock/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/tlh.po b/addons/sale_stock/i18n/tlh.po index 7929f776cf5..0dc3b1c6558 100644 --- a/addons/sale_stock/i18n/tlh.po +++ b/addons/sale_stock/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/tr.po b/addons/sale_stock/i18n/tr.po index c0820ca538d..53d39753e22 100644 --- a/addons/sale_stock/i18n/tr.po +++ b/addons/sale_stock/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-29 05:45+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/uk.po b/addons/sale_stock/i18n/uk.po index ee6da00aae5..8afe5f19668 100644 --- a/addons/sale_stock/i18n/uk.po +++ b/addons/sale_stock/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/vi.po b/addons/sale_stock/i18n/vi.po index 42e0a22c2f1..afdd2d4fb15 100644 --- a/addons/sale_stock/i18n/vi.po +++ b/addons/sale_stock/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/zh_CN.po b/addons/sale_stock/i18n/zh_CN.po index 69c2046d66c..65aa95050a4 100644 --- a/addons/sale_stock/i18n/zh_CN.po +++ b/addons/sale_stock/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-08 05:03+0000\n" -"X-Generator: Launchpad (build 16760)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/zh_TW.po b/addons/sale_stock/i18n/zh_TW.po index 59aabda5b4b..7eaa98c6fe2 100644 --- a/addons/sale_stock/i18n/zh_TW.po +++ b/addons/sale_stock/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/share/i18n/ar.po b/addons/share/i18n/ar.po index abc9fcc3596..8d60ae193fc 100644 --- a/addons/share/i18n/ar.po +++ b/addons/share/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/bg.po b/addons/share/i18n/bg.po index 32cc3c21c85..33d62326f77 100644 --- a/addons/share/i18n/bg.po +++ b/addons/share/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/bs.po b/addons/share/i18n/bs.po index 4aeb1ea6ab3..aef402a3623 100644 --- a/addons/share/i18n/bs.po +++ b/addons/share/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/ca.po b/addons/share/i18n/ca.po index 1623125f342..3f3a97d147c 100644 --- a/addons/share/i18n/ca.po +++ b/addons/share/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/cs.po b/addons/share/i18n/cs.po index 7b7756e497b..bd3cf320502 100644 --- a/addons/share/i18n/cs.po +++ b/addons/share/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/da.po b/addons/share/i18n/da.po index 7964cb7a3ab..d80c03d5546 100644 --- a/addons/share/i18n/da.po +++ b/addons/share/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/de.po b/addons/share/i18n/de.po index 3d6f7568b06..9c6122a9011 100644 --- a/addons/share/i18n/de.po +++ b/addons/share/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/es.po b/addons/share/i18n/es.po index 10466f055dd..6137ed9872c 100644 --- a/addons/share/i18n/es.po +++ b/addons/share/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/es_CR.po b/addons/share/i18n/es_CR.po index 079d5c0140a..dd72b23ab3d 100644 --- a/addons/share/i18n/es_CR.po +++ b/addons/share/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/et.po b/addons/share/i18n/et.po index 5dfb9e7882e..35b700449bb 100644 --- a/addons/share/i18n/et.po +++ b/addons/share/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/fi.po b/addons/share/i18n/fi.po index ab9a1243618..15bd7286665 100644 --- a/addons/share/i18n/fi.po +++ b/addons/share/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/fr.po b/addons/share/i18n/fr.po index c9d21dc29f1..fdf413aceb8 100644 --- a/addons/share/i18n/fr.po +++ b/addons/share/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-29 05:54+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/gl.po b/addons/share/i18n/gl.po index b12f4fd45f0..b070a9883cf 100644 --- a/addons/share/i18n/gl.po +++ b/addons/share/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/hr.po b/addons/share/i18n/hr.po index 625b0915143..a49206421ae 100644 --- a/addons/share/i18n/hr.po +++ b/addons/share/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-24 06:37+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/hu.po b/addons/share/i18n/hu.po index 4208a584cad..3fd5f663d76 100644 --- a/addons/share/i18n/hu.po +++ b/addons/share/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/it.po b/addons/share/i18n/it.po index b47d4127753..63e10d078ea 100644 --- a/addons/share/i18n/it.po +++ b/addons/share/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/ja.po b/addons/share/i18n/ja.po index 60a588d0fa5..1a09203bda4 100644 --- a/addons/share/i18n/ja.po +++ b/addons/share/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/lt.po b/addons/share/i18n/lt.po index ac574b78664..4cbda80aa04 100644 --- a/addons/share/i18n/lt.po +++ b/addons/share/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/mk.po b/addons/share/i18n/mk.po index a6f8be52a0f..ae3edc0a362 100644 --- a/addons/share/i18n/mk.po +++ b/addons/share/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: share diff --git a/addons/share/i18n/mn.po b/addons/share/i18n/mn.po index 8b09184b59f..1cf2a174404 100644 --- a/addons/share/i18n/mn.po +++ b/addons/share/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/nl.po b/addons/share/i18n/nl.po index 483b7476784..c0a5900ae76 100644 --- a/addons/share/i18n/nl.po +++ b/addons/share/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/pl.po b/addons/share/i18n/pl.po index 421a998c9db..57dfe646a9a 100644 --- a/addons/share/i18n/pl.po +++ b/addons/share/i18n/pl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-11-20 17:32+0000\n" +"Last-Translator: Mirosław Bojanowicz \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 @@ -136,7 +136,7 @@ msgstr "" #: code:addons/share/static/src/js/share.js:63 #, python-format msgid "Embed" -msgstr "" +msgstr "Osadzone" #. module: share #: code:addons/share/wizard/share_wizard.py:599 @@ -286,6 +286,9 @@ msgid "" "Sales, HR, etc.)\n" "It is open source and can be found on http://www.openerp.com." msgstr "" +"OpenERP jest potężnym i przyjaznym użytkownikowi zestawem aplikacji " +"biznesowych (CRM, Sprzedaż, Kadry, itp.)\n" +"Oprogramowanie otwarte i można je znaleźć na stronie http://www.openerp.com." #. module: share #: field:share.wizard,action_id:0 @@ -418,7 +421,7 @@ msgstr "Domena" #. module: share #: view:res.groups:0 msgid "{'search_default_no_share':1}" -msgstr "" +msgstr "{'search_default_no_share':1}" #. module: share #: view:share.wizard:0 @@ -470,7 +473,7 @@ msgstr "" #. module: share #: model:ir.model,name:share.model_share_wizard_result_line msgid "share.wizard.result.line" -msgstr "" +msgstr "share.wizard.result.line" #. module: share #: field:share.wizard,embed_code:0 @@ -646,7 +649,7 @@ msgstr "Współdzielenie: przygotowanie" #. module: share #: model:ir.model,name:share.model_ir_model_access msgid "ir.model.access" -msgstr "" +msgstr "ir.model.access" #. module: share #: view:share.wizard:0 diff --git a/addons/share/i18n/pt.po b/addons/share/i18n/pt.po index c4f042bcc04..fdc27bcbf65 100644 --- a/addons/share/i18n/pt.po +++ b/addons/share/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/pt_BR.po b/addons/share/i18n/pt_BR.po index 01539013239..48caef42427 100644 --- a/addons/share/i18n/pt_BR.po +++ b/addons/share/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/ro.po b/addons/share/i18n/ro.po index 92f8f87ef5f..95d5daefb5b 100644 --- a/addons/share/i18n/ro.po +++ b/addons/share/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-14 18:56+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/ru.po b/addons/share/i18n/ru.po index a6cc272adad..b29b957c1bf 100644 --- a/addons/share/i18n/ru.po +++ b/addons/share/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/sl.po b/addons/share/i18n/sl.po index ce8dfa6ac1e..8e2f2537bec 100644 --- a/addons/share/i18n/sl.po +++ b/addons/share/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-19 04:56+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/sv.po b/addons/share/i18n/sv.po index 7f56275a6d7..5e984f9bd4b 100644 --- a/addons/share/i18n/sv.po +++ b/addons/share/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/th.po b/addons/share/i18n/th.po index 0bee0fe5d70..8790e721aa7 100644 --- a/addons/share/i18n/th.po +++ b/addons/share/i18n/th.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 06:25+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: share diff --git a/addons/share/i18n/tr.po b/addons/share/i18n/tr.po index 9e3b18b77c5..ffdabf1d6fe 100644 --- a/addons/share/i18n/tr.po +++ b/addons/share/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/share/i18n/zh_CN.po b/addons/share/i18n/zh_CN.po index f6b63434c48..2d7beb1a6e8 100644 --- a/addons/share/i18n/zh_CN.po +++ b/addons/share/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-02 06:23+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:842 diff --git a/addons/stock/i18n/ar.po b/addons/stock/i18n/ar.po index b12d67e3908..3ded839d636 100644 --- a/addons/stock/i18n/ar.po +++ b/addons/stock/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/bg.po b/addons/stock/i18n/bg.po index 9fe2b4ff50c..c901849389f 100644 --- a/addons/stock/i18n/bg.po +++ b/addons/stock/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/bs.po b/addons/stock/i18n/bs.po index 6eb25def33a..b6ac95e6c0b 100644 --- a/addons/stock/i18n/bs.po +++ b/addons/stock/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ca.po b/addons/stock/i18n/ca.po index 0408f72719d..a539a734b0b 100644 --- a/addons/stock/i18n/ca.po +++ b/addons/stock/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/cs.po b/addons/stock/i18n/cs.po index 2cb0a468991..c40acf2b21e 100644 --- a/addons/stock/i18n/cs.po +++ b/addons/stock/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-23 05:35+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/da.po b/addons/stock/i18n/da.po index 60adb2819f6..14dece856dc 100644 --- a/addons/stock/i18n/da.po +++ b/addons/stock/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:51+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/de.po b/addons/stock/i18n/de.po index b6311e6711c..a84418c6e3c 100644 --- a/addons/stock/i18n/de.po +++ b/addons/stock/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/el.po b/addons/stock/i18n/el.po index 56bb1f360ed..23bbab5302b 100644 --- a/addons/stock/i18n/el.po +++ b/addons/stock/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es.po b/addons/stock/i18n/es.po index 4b0ca009924..63220022367 100644 --- a/addons/stock/i18n/es.po +++ b/addons/stock/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-21 05:59+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_AR.po b/addons/stock/i18n/es_AR.po index 634898fcbd6..ac4932cc5eb 100644 --- a/addons/stock/i18n/es_AR.po +++ b/addons/stock/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_BO.po b/addons/stock/i18n/es_BO.po index 2a41ba170e0..bba75c5564b 100644 --- a/addons/stock/i18n/es_BO.po +++ b/addons/stock/i18n/es_BO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 07:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_CL.po b/addons/stock/i18n/es_CL.po index e400f1888b4..82ae3b01958 100644 --- a/addons/stock/i18n/es_CL.po +++ b/addons/stock/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_CR.po b/addons/stock/i18n/es_CR.po index 7653d77477e..ca3276dc73f 100644 --- a/addons/stock/i18n/es_CR.po +++ b/addons/stock/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_DO.po b/addons/stock/i18n/es_DO.po index e3fb0b234ac..22378cd3253 100644 --- a/addons/stock/i18n/es_DO.po +++ b/addons/stock/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_EC.po b/addons/stock/i18n/es_EC.po index e2071becc8d..0fe84d44f03 100644 --- a/addons/stock/i18n/es_EC.po +++ b/addons/stock/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_MX.po b/addons/stock/i18n/es_MX.po index 1b244eaf138..9b3612cac04 100644 --- a/addons/stock/i18n/es_MX.po +++ b/addons/stock/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_VE.po b/addons/stock/i18n/es_VE.po index 6a64f9908e1..d15f396a490 100644 --- a/addons/stock/i18n/es_VE.po +++ b/addons/stock/i18n/es_VE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/et.po b/addons/stock/i18n/et.po index 0c4510a8be9..0723be3d74f 100644 --- a/addons/stock/i18n/et.po +++ b/addons/stock/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/fi.po b/addons/stock/i18n/fi.po index 0b9c032964c..7ce31234334 100644 --- a/addons/stock/i18n/fi.po +++ b/addons/stock/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: stock diff --git a/addons/stock/i18n/fr.po b/addons/stock/i18n/fr.po index b914dc56951..1dd4736b73e 100644 --- a/addons/stock/i18n/fr.po +++ b/addons/stock/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/gl.po b/addons/stock/i18n/gl.po index dad105a8a2a..c9f9d945ada 100644 --- a/addons/stock/i18n/gl.po +++ b/addons/stock/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/hr.po b/addons/stock/i18n/hr.po index f2d686c1859..e6df2e43156 100644 --- a/addons/stock/i18n/hr.po +++ b/addons/stock/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/hu.po b/addons/stock/i18n/hu.po index 07c47ac7cda..17db29d7218 100644 --- a/addons/stock/i18n/hu.po +++ b/addons/stock/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: view:stock.inventory:0 diff --git a/addons/stock/i18n/id.po b/addons/stock/i18n/id.po index c1a98cb9970..b611f929d33 100644 --- a/addons/stock/i18n/id.po +++ b/addons/stock/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/it.po b/addons/stock/i18n/it.po index b729394cd29..84750e4f2fc 100644 --- a/addons/stock/i18n/it.po +++ b/addons/stock/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ja.po b/addons/stock/i18n/ja.po index 7faf233647f..ce145adfc09 100644 --- a/addons/stock/i18n/ja.po +++ b/addons/stock/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-11 05:39+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ko.po b/addons/stock/i18n/ko.po index 940edcbaa84..1082f825cd1 100644 --- a/addons/stock/i18n/ko.po +++ b/addons/stock/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/lt.po b/addons/stock/i18n/lt.po index b9bfebf0c70..b0d691f382a 100644 --- a/addons/stock/i18n/lt.po +++ b/addons/stock/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/lv.po b/addons/stock/i18n/lv.po index 066cbaafb06..205526944ed 100644 --- a/addons/stock/i18n/lv.po +++ b/addons/stock/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/mk.po b/addons/stock/i18n/mk.po index d3c14aff6e4..3da551ae35b 100644 --- a/addons/stock/i18n/mk.po +++ b/addons/stock/i18n/mk.po @@ -17,8 +17,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: stock diff --git a/addons/stock/i18n/mn.po b/addons/stock/i18n/mn.po index 3fc881c3942..03e2774379c 100644 --- a/addons/stock/i18n/mn.po +++ b/addons/stock/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/nb.po b/addons/stock/i18n/nb.po index 5d876d953b6..3e9883efc18 100644 --- a/addons/stock/i18n/nb.po +++ b/addons/stock/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/nl.po b/addons/stock/i18n/nl.po index 0b9b19be68b..efa489f30c0 100644 --- a/addons/stock/i18n/nl.po +++ b/addons/stock/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-12 06:23+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/nl_BE.po b/addons/stock/i18n/nl_BE.po index 9e1c03540a1..4e0773510e4 100644 --- a/addons/stock/i18n/nl_BE.po +++ b/addons/stock/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/pl.po b/addons/stock/i18n/pl.po index 383d55a0124..096bcc6bde9 100644 --- a/addons/stock/i18n/pl.po +++ b/addons/stock/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:23+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/pt.po b/addons/stock/i18n/pt.po index 74608ba005d..b923d2e87d0 100644 --- a/addons/stock/i18n/pt.po +++ b/addons/stock/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/pt_BR.po b/addons/stock/i18n/pt_BR.po index 645f50b58c6..f7d11eb85a3 100644 --- a/addons/stock/i18n/pt_BR.po +++ b/addons/stock/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-07-18 20:54+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ro.po b/addons/stock/i18n/ro.po index a72dab810f5..fb4c1280cee 100644 --- a/addons/stock/i18n/ro.po +++ b/addons/stock/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ru.po b/addons/stock/i18n/ru.po index 13cf46b6195..c8d80eff6ba 100644 --- a/addons/stock/i18n/ru.po +++ b/addons/stock/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-17 06:16+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sl.po b/addons/stock/i18n/sl.po index 5101a4cebd7..a972fc63a8a 100644 --- a/addons/stock/i18n/sl.po +++ b/addons/stock/i18n/sl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: stock diff --git a/addons/stock/i18n/sq.po b/addons/stock/i18n/sq.po index afbfe2d29e8..5487d9f33d6 100644 --- a/addons/stock/i18n/sq.po +++ b/addons/stock/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:22+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:35+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sr.po b/addons/stock/i18n/sr.po index 7749827f4e3..be5fb98b914 100644 --- a/addons/stock/i18n/sr.po +++ b/addons/stock/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sr@latin.po b/addons/stock/i18n/sr@latin.po index 1cbcf3af8ed..636aaec0c52 100644 --- a/addons/stock/i18n/sr@latin.po +++ b/addons/stock/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sv.po b/addons/stock/i18n/sv.po index 51116b4acd9..012f7c70d0b 100644 --- a/addons/stock/i18n/sv.po +++ b/addons/stock/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/th.po b/addons/stock/i18n/th.po index adc3b10c7b8..581c4c03d50 100644 --- a/addons/stock/i18n/th.po +++ b/addons/stock/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/tlh.po b/addons/stock/i18n/tlh.po index 2d88bfc96db..4fbcb307eee 100644 --- a/addons/stock/i18n/tlh.po +++ b/addons/stock/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/tr.po b/addons/stock/i18n/tr.po index 294eb41e9e9..73db6287b5f 100644 --- a/addons/stock/i18n/tr.po +++ b/addons/stock/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-06 05:05+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/uk.po b/addons/stock/i18n/uk.po index db303dec6ad..8710c5ff3df 100644 --- a/addons/stock/i18n/uk.po +++ b/addons/stock/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/vi.po b/addons/stock/i18n/vi.po index 8d111d6830e..6386f8435be 100644 --- a/addons/stock/i18n/vi.po +++ b/addons/stock/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:36+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/zh_CN.po b/addons/stock/i18n/zh_CN.po index 789246e9bdb..d3d88e89b4c 100644 --- a/addons/stock/i18n/zh_CN.po +++ b/addons/stock/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-08 06:26+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/zh_TW.po b/addons/stock/i18n/zh_TW.po index eb8918b5990..8f9819e44a2 100644 --- a/addons/stock/i18n/zh_TW.po +++ b/addons/stock/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:24+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock_invoice_directly/i18n/ar.po b/addons/stock_invoice_directly/i18n/ar.po index 71a11ac9fbc..7ce2a19107b 100644 --- a/addons/stock_invoice_directly/i18n/ar.po +++ b/addons/stock_invoice_directly/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/bg.po b/addons/stock_invoice_directly/i18n/bg.po index b92e002e013..31446f0bccf 100644 --- a/addons/stock_invoice_directly/i18n/bg.po +++ b/addons/stock_invoice_directly/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/bs.po b/addons/stock_invoice_directly/i18n/bs.po index 8b1b79f6604..1d2ac17ed91 100644 --- a/addons/stock_invoice_directly/i18n/bs.po +++ b/addons/stock_invoice_directly/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ca.po b/addons/stock_invoice_directly/i18n/ca.po index 78a528dfbd1..136e30f64fb 100644 --- a/addons/stock_invoice_directly/i18n/ca.po +++ b/addons/stock_invoice_directly/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/cs.po b/addons/stock_invoice_directly/i18n/cs.po index 3496707032b..3bdde164220 100644 --- a/addons/stock_invoice_directly/i18n/cs.po +++ b/addons/stock_invoice_directly/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/da.po b/addons/stock_invoice_directly/i18n/da.po index 8d843f9c432..290fbbe11ba 100644 --- a/addons/stock_invoice_directly/i18n/da.po +++ b/addons/stock_invoice_directly/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/de.po b/addons/stock_invoice_directly/i18n/de.po index d0a0195bdc0..fb47fcbe02a 100644 --- a/addons/stock_invoice_directly/i18n/de.po +++ b/addons/stock_invoice_directly/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/el.po b/addons/stock_invoice_directly/i18n/el.po index f18627524ee..6829bb3f19d 100644 --- a/addons/stock_invoice_directly/i18n/el.po +++ b/addons/stock_invoice_directly/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/en_GB.po b/addons/stock_invoice_directly/i18n/en_GB.po index 7aa7c01fa12..64fbbb1efa0 100644 --- a/addons/stock_invoice_directly/i18n/en_GB.po +++ b/addons/stock_invoice_directly/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es.po b/addons/stock_invoice_directly/i18n/es.po index 931b50d3536..384ddb70358 100644 --- a/addons/stock_invoice_directly/i18n/es.po +++ b/addons/stock_invoice_directly/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es_AR.po b/addons/stock_invoice_directly/i18n/es_AR.po index 20ffa66d716..1b362f75c5f 100644 --- a/addons/stock_invoice_directly/i18n/es_AR.po +++ b/addons/stock_invoice_directly/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es_CL.po b/addons/stock_invoice_directly/i18n/es_CL.po index fddd061a152..d89ffc45730 100644 --- a/addons/stock_invoice_directly/i18n/es_CL.po +++ b/addons/stock_invoice_directly/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es_CR.po b/addons/stock_invoice_directly/i18n/es_CR.po index ea0a58a3fa0..8de17ca5f38 100644 --- a/addons/stock_invoice_directly/i18n/es_CR.po +++ b/addons/stock_invoice_directly/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/et.po b/addons/stock_invoice_directly/i18n/et.po index 095114a4c25..1ddaa08202d 100644 --- a/addons/stock_invoice_directly/i18n/et.po +++ b/addons/stock_invoice_directly/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/fi.po b/addons/stock_invoice_directly/i18n/fi.po index deb84513edc..35d646ac2b6 100644 --- a/addons/stock_invoice_directly/i18n/fi.po +++ b/addons/stock_invoice_directly/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/fr.po b/addons/stock_invoice_directly/i18n/fr.po index c846a693821..5799d390886 100644 --- a/addons/stock_invoice_directly/i18n/fr.po +++ b/addons/stock_invoice_directly/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/gl.po b/addons/stock_invoice_directly/i18n/gl.po index 006ff160236..ab1eee0e971 100644 --- a/addons/stock_invoice_directly/i18n/gl.po +++ b/addons/stock_invoice_directly/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/hr.po b/addons/stock_invoice_directly/i18n/hr.po index 3e85e4c69df..5282c53dfd1 100644 --- a/addons/stock_invoice_directly/i18n/hr.po +++ b/addons/stock_invoice_directly/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/hu.po b/addons/stock_invoice_directly/i18n/hu.po index ffe8d1c0f51..90458e36b4f 100644 --- a/addons/stock_invoice_directly/i18n/hu.po +++ b/addons/stock_invoice_directly/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/id.po b/addons/stock_invoice_directly/i18n/id.po index adc6bf3d203..b1b6ab2a828 100644 --- a/addons/stock_invoice_directly/i18n/id.po +++ b/addons/stock_invoice_directly/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/it.po b/addons/stock_invoice_directly/i18n/it.po index 5fb348a4c22..155eae2b5e1 100644 --- a/addons/stock_invoice_directly/i18n/it.po +++ b/addons/stock_invoice_directly/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ja.po b/addons/stock_invoice_directly/i18n/ja.po index 3a232c7b476..743fa57f9a2 100644 --- a/addons/stock_invoice_directly/i18n/ja.po +++ b/addons/stock_invoice_directly/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ko.po b/addons/stock_invoice_directly/i18n/ko.po index 726c76f16a4..980eb198284 100644 --- a/addons/stock_invoice_directly/i18n/ko.po +++ b/addons/stock_invoice_directly/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/lt.po b/addons/stock_invoice_directly/i18n/lt.po index cea2369e15e..45bf99d9794 100644 --- a/addons/stock_invoice_directly/i18n/lt.po +++ b/addons/stock_invoice_directly/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/lv.po b/addons/stock_invoice_directly/i18n/lv.po index eda18e4ea9e..5153d002d5c 100644 --- a/addons/stock_invoice_directly/i18n/lv.po +++ b/addons/stock_invoice_directly/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/mk.po b/addons/stock_invoice_directly/i18n/mk.po index e5681a47836..3572de38543 100644 --- a/addons/stock_invoice_directly/i18n/mk.po +++ b/addons/stock_invoice_directly/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/mn.po b/addons/stock_invoice_directly/i18n/mn.po index 163c929fc2a..aecc41d2683 100644 --- a/addons/stock_invoice_directly/i18n/mn.po +++ b/addons/stock_invoice_directly/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/nb.po b/addons/stock_invoice_directly/i18n/nb.po index 1a882938de0..1115bc18794 100644 --- a/addons/stock_invoice_directly/i18n/nb.po +++ b/addons/stock_invoice_directly/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/nl.po b/addons/stock_invoice_directly/i18n/nl.po index f49a3ff09f9..d23f86d6362 100644 --- a/addons/stock_invoice_directly/i18n/nl.po +++ b/addons/stock_invoice_directly/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/nl_BE.po b/addons/stock_invoice_directly/i18n/nl_BE.po index 8beeda0b7b9..fa986fd0627 100644 --- a/addons/stock_invoice_directly/i18n/nl_BE.po +++ b/addons/stock_invoice_directly/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/oc.po b/addons/stock_invoice_directly/i18n/oc.po index 0b6c672b9e8..eaa562be807 100644 --- a/addons/stock_invoice_directly/i18n/oc.po +++ b/addons/stock_invoice_directly/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/pl.po b/addons/stock_invoice_directly/i18n/pl.po index 7765e9580b6..34dc2a9d5bf 100644 --- a/addons/stock_invoice_directly/i18n/pl.po +++ b/addons/stock_invoice_directly/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/pt.po b/addons/stock_invoice_directly/i18n/pt.po index d138cbabc57..eacc0031972 100644 --- a/addons/stock_invoice_directly/i18n/pt.po +++ b/addons/stock_invoice_directly/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/pt_BR.po b/addons/stock_invoice_directly/i18n/pt_BR.po index aebed0bdde6..47c341b9dbb 100644 --- a/addons/stock_invoice_directly/i18n/pt_BR.po +++ b/addons/stock_invoice_directly/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-22 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ro.po b/addons/stock_invoice_directly/i18n/ro.po index 2cb2c188dd0..108cc75c998 100644 --- a/addons/stock_invoice_directly/i18n/ro.po +++ b/addons/stock_invoice_directly/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-23 07:50+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ru.po b/addons/stock_invoice_directly/i18n/ru.po index dd98d6e7131..aeb157e6988 100644 --- a/addons/stock_invoice_directly/i18n/ru.po +++ b/addons/stock_invoice_directly/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sl.po b/addons/stock_invoice_directly/i18n/sl.po index 669fc4938fb..f2bc6539715 100644 --- a/addons/stock_invoice_directly/i18n/sl.po +++ b/addons/stock_invoice_directly/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sq.po b/addons/stock_invoice_directly/i18n/sq.po index 857bdff672a..5bed113424d 100644 --- a/addons/stock_invoice_directly/i18n/sq.po +++ b/addons/stock_invoice_directly/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sr.po b/addons/stock_invoice_directly/i18n/sr.po index 53270f2bdc5..e8074b18a28 100644 --- a/addons/stock_invoice_directly/i18n/sr.po +++ b/addons/stock_invoice_directly/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sr@latin.po b/addons/stock_invoice_directly/i18n/sr@latin.po index 0edbfdfe20d..cd512fc9780 100644 --- a/addons/stock_invoice_directly/i18n/sr@latin.po +++ b/addons/stock_invoice_directly/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sv.po b/addons/stock_invoice_directly/i18n/sv.po index 44bc04e1645..ca1dc7af2af 100644 --- a/addons/stock_invoice_directly/i18n/sv.po +++ b/addons/stock_invoice_directly/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/tr.po b/addons/stock_invoice_directly/i18n/tr.po index e5ea140e9cd..ab1ad6288cb 100644 --- a/addons/stock_invoice_directly/i18n/tr.po +++ b/addons/stock_invoice_directly/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/uk.po b/addons/stock_invoice_directly/i18n/uk.po index 41def5ff0dd..de12f89c0ad 100644 --- a/addons/stock_invoice_directly/i18n/uk.po +++ b/addons/stock_invoice_directly/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/vi.po b/addons/stock_invoice_directly/i18n/vi.po index 1d93c644d2d..ec72e52b9d8 100644 --- a/addons/stock_invoice_directly/i18n/vi.po +++ b/addons/stock_invoice_directly/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/zh_CN.po b/addons/stock_invoice_directly/i18n/zh_CN.po index 86d7247624d..99b79de8ea9 100644 --- a/addons/stock_invoice_directly/i18n/zh_CN.po +++ b/addons/stock_invoice_directly/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/zh_TW.po b/addons/stock_invoice_directly/i18n/zh_TW.po index 7e529e7eda9..dbc5be4a2c6 100644 --- a/addons/stock_invoice_directly/i18n/zh_TW.po +++ b/addons/stock_invoice_directly/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_location/i18n/ar.po b/addons/stock_location/i18n/ar.po index 16e6778fe39..9f879617be6 100644 --- a/addons/stock_location/i18n/ar.po +++ b/addons/stock_location/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/bg.po b/addons/stock_location/i18n/bg.po index d3cfce74b70..91eadacba48 100644 --- a/addons/stock_location/i18n/bg.po +++ b/addons/stock_location/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/bs.po b/addons/stock_location/i18n/bs.po index 58502e190a9..b1130f4cbaf 100644 --- a/addons/stock_location/i18n/bs.po +++ b/addons/stock_location/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ca.po b/addons/stock_location/i18n/ca.po index 34434aafec0..605e1676726 100644 --- a/addons/stock_location/i18n/ca.po +++ b/addons/stock_location/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/cs.po b/addons/stock_location/i18n/cs.po index 988ce5e4c9e..bfd95e9cc7b 100644 --- a/addons/stock_location/i18n/cs.po +++ b/addons/stock_location/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/da.po b/addons/stock_location/i18n/da.po index 44ea8151b37..3c5496ae550 100644 --- a/addons/stock_location/i18n/da.po +++ b/addons/stock_location/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:51+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/de.po b/addons/stock_location/i18n/de.po index 98a8094239a..1ba2e1783ac 100644 --- a/addons/stock_location/i18n/de.po +++ b/addons/stock_location/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/el.po b/addons/stock_location/i18n/el.po index c99ad20be6e..ec8a86af0c3 100644 --- a/addons/stock_location/i18n/el.po +++ b/addons/stock_location/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/stock_location/i18n/es.po b/addons/stock_location/i18n/es.po index ff9f0cb0bcd..ab2c62b295e 100644 --- a/addons/stock_location/i18n/es.po +++ b/addons/stock_location/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-21 05:59+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/es_AR.po b/addons/stock_location/i18n/es_AR.po index 4d5d73d1853..56f52e7570e 100644 --- a/addons/stock_location/i18n/es_AR.po +++ b/addons/stock_location/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/es_CL.po b/addons/stock_location/i18n/es_CL.po index ca29041f8c8..3897694e687 100644 --- a/addons/stock_location/i18n/es_CL.po +++ b/addons/stock_location/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/es_CR.po b/addons/stock_location/i18n/es_CR.po index 86fe2cee119..b03da84c2ca 100644 --- a/addons/stock_location/i18n/es_CR.po +++ b/addons/stock_location/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/et.po b/addons/stock_location/i18n/et.po index 0cbe82b4bda..df4c2f0c6f6 100644 --- a/addons/stock_location/i18n/et.po +++ b/addons/stock_location/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/fi.po b/addons/stock_location/i18n/fi.po index 97acbd5f069..0d139c3b816 100644 --- a/addons/stock_location/i18n/fi.po +++ b/addons/stock_location/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/fr.po b/addons/stock_location/i18n/fr.po index a77f68b065b..ab3a51e48a0 100644 --- a/addons/stock_location/i18n/fr.po +++ b/addons/stock_location/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/gl.po b/addons/stock_location/i18n/gl.po index 48b3d1fcb35..aa5fb4518a2 100644 --- a/addons/stock_location/i18n/gl.po +++ b/addons/stock_location/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/hr.po b/addons/stock_location/i18n/hr.po index 97144709e2b..4d9b6367012 100644 --- a/addons/stock_location/i18n/hr.po +++ b/addons/stock_location/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/hu.po b/addons/stock_location/i18n/hu.po index 6555c44777e..5585583a842 100644 --- a/addons/stock_location/i18n/hu.po +++ b/addons/stock_location/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/id.po b/addons/stock_location/i18n/id.po index cdae0fdb1da..cb70def40e6 100644 --- a/addons/stock_location/i18n/id.po +++ b/addons/stock_location/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/it.po b/addons/stock_location/i18n/it.po index 0fcbdc63efc..780795a0d95 100644 --- a/addons/stock_location/i18n/it.po +++ b/addons/stock_location/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ja.po b/addons/stock_location/i18n/ja.po index 9b222d1a7c9..2ca0d5e5ef7 100644 --- a/addons/stock_location/i18n/ja.po +++ b/addons/stock_location/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ko.po b/addons/stock_location/i18n/ko.po index 2e499b3a3ed..b544d51f476 100644 --- a/addons/stock_location/i18n/ko.po +++ b/addons/stock_location/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/lt.po b/addons/stock_location/i18n/lt.po index f19b8fd16ff..666fb9f71f6 100644 --- a/addons/stock_location/i18n/lt.po +++ b/addons/stock_location/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/lv.po b/addons/stock_location/i18n/lv.po index f831094deae..1f8e813ee48 100644 --- a/addons/stock_location/i18n/lv.po +++ b/addons/stock_location/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/mk.po b/addons/stock_location/i18n/mk.po index 26b19c36b91..b49430a2217 100644 --- a/addons/stock_location/i18n/mk.po +++ b/addons/stock_location/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: stock_location diff --git a/addons/stock_location/i18n/mn.po b/addons/stock_location/i18n/mn.po index 00198a36e58..11653ed1034 100644 --- a/addons/stock_location/i18n/mn.po +++ b/addons/stock_location/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/nb.po b/addons/stock_location/i18n/nb.po index fb9758cdc1c..f0938c8f39a 100644 --- a/addons/stock_location/i18n/nb.po +++ b/addons/stock_location/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/nl.po b/addons/stock_location/i18n/nl.po index 9fea9f660a5..2eb2c2edaf0 100644 --- a/addons/stock_location/i18n/nl.po +++ b/addons/stock_location/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/nl_BE.po b/addons/stock_location/i18n/nl_BE.po index 5915e5831a8..8cddd4f7e23 100644 --- a/addons/stock_location/i18n/nl_BE.po +++ b/addons/stock_location/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/pl.po b/addons/stock_location/i18n/pl.po index 31e29d81c25..0e20ba20ece 100644 --- a/addons/stock_location/i18n/pl.po +++ b/addons/stock_location/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/pt.po b/addons/stock_location/i18n/pt.po index fe747695d07..dee578e5c92 100644 --- a/addons/stock_location/i18n/pt.po +++ b/addons/stock_location/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/pt_BR.po b/addons/stock_location/i18n/pt_BR.po index 10db0e4eeca..921ce08be04 100644 --- a/addons/stock_location/i18n/pt_BR.po +++ b/addons/stock_location/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ro.po b/addons/stock_location/i18n/ro.po index 648a35762fc..9cd80d52e7b 100644 --- a/addons/stock_location/i18n/ro.po +++ b/addons/stock_location/i18n/ro.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 19:04+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ru.po b/addons/stock_location/i18n/ru.po index 60b9fcc82e5..5ac91cf8885 100644 --- a/addons/stock_location/i18n/ru.po +++ b/addons/stock_location/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/sl.po b/addons/stock_location/i18n/sl.po index 3b1a6b08dab..51eb0990350 100644 --- a/addons/stock_location/i18n/sl.po +++ b/addons/stock_location/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/sq.po b/addons/stock_location/i18n/sq.po index b7d92569c67..489f5854baf 100644 --- a/addons/stock_location/i18n/sq.po +++ b/addons/stock_location/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/sv.po b/addons/stock_location/i18n/sv.po index 2c5ea98c414..e8cac010ad3 100644 --- a/addons/stock_location/i18n/sv.po +++ b/addons/stock_location/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/th.po b/addons/stock_location/i18n/th.po index c1070c45e4a..ed4d4478cd5 100644 --- a/addons/stock_location/i18n/th.po +++ b/addons/stock_location/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/tlh.po b/addons/stock_location/i18n/tlh.po index b40dab83da8..1bb39bb8673 100644 --- a/addons/stock_location/i18n/tlh.po +++ b/addons/stock_location/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/tr.po b/addons/stock_location/i18n/tr.po index 3578e03998c..89c4540526b 100644 --- a/addons/stock_location/i18n/tr.po +++ b/addons/stock_location/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/uk.po b/addons/stock_location/i18n/uk.po index fea183389bd..8129c570c41 100644 --- a/addons/stock_location/i18n/uk.po +++ b/addons/stock_location/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/vi.po b/addons/stock_location/i18n/vi.po index 41464b0abba..a1a9812b42b 100644 --- a/addons/stock_location/i18n/vi.po +++ b/addons/stock_location/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/zh_CN.po b/addons/stock_location/i18n/zh_CN.po index 3f7a774f2ce..4619e373fdf 100644 --- a/addons/stock_location/i18n/zh_CN.po +++ b/addons/stock_location/i18n/zh_CN.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-11 07:02+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-12 06:35+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/zh_TW.po b/addons/stock_location/i18n/zh_TW.po index efabe5b5075..dd3e17f14f4 100644 --- a/addons/stock_location/i18n/zh_TW.po +++ b/addons/stock_location/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_no_autopicking/i18n/ar.po b/addons/stock_no_autopicking/i18n/ar.po index 38c62b89bc1..056b72c41be 100644 --- a/addons/stock_no_autopicking/i18n/ar.po +++ b/addons/stock_no_autopicking/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/bg.po b/addons/stock_no_autopicking/i18n/bg.po index fa9d69cf39e..a7f7a12ff1f 100644 --- a/addons/stock_no_autopicking/i18n/bg.po +++ b/addons/stock_no_autopicking/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/bs.po b/addons/stock_no_autopicking/i18n/bs.po index c70585f13cd..54c24a998ca 100644 --- a/addons/stock_no_autopicking/i18n/bs.po +++ b/addons/stock_no_autopicking/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ca.po b/addons/stock_no_autopicking/i18n/ca.po index 6f03fce83a8..6f932144326 100644 --- a/addons/stock_no_autopicking/i18n/ca.po +++ b/addons/stock_no_autopicking/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/cs.po b/addons/stock_no_autopicking/i18n/cs.po index 84d8c9e86aa..f9a5be4cb6f 100644 --- a/addons/stock_no_autopicking/i18n/cs.po +++ b/addons/stock_no_autopicking/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/da.po b/addons/stock_no_autopicking/i18n/da.po index 5a54a0521d2..957589e1b8d 100644 --- a/addons/stock_no_autopicking/i18n/da.po +++ b/addons/stock_no_autopicking/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/de.po b/addons/stock_no_autopicking/i18n/de.po index 6e34e4c6fd7..c40faf0581f 100644 --- a/addons/stock_no_autopicking/i18n/de.po +++ b/addons/stock_no_autopicking/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-23 05:33+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/el.po b/addons/stock_no_autopicking/i18n/el.po index 9b17c3b7a2c..c990ee0fca1 100644 --- a/addons/stock_no_autopicking/i18n/el.po +++ b/addons/stock_no_autopicking/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/stock_no_autopicking/i18n/es.po b/addons/stock_no_autopicking/i18n/es.po index 069ba859345..4f46e746d9c 100644 --- a/addons/stock_no_autopicking/i18n/es.po +++ b/addons/stock_no_autopicking/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/es_AR.po b/addons/stock_no_autopicking/i18n/es_AR.po index 742638cba5f..2db956f7c4e 100644 --- a/addons/stock_no_autopicking/i18n/es_AR.po +++ b/addons/stock_no_autopicking/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/es_CL.po b/addons/stock_no_autopicking/i18n/es_CL.po index cdafc60929e..981726adf82 100644 --- a/addons/stock_no_autopicking/i18n/es_CL.po +++ b/addons/stock_no_autopicking/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/es_CR.po b/addons/stock_no_autopicking/i18n/es_CR.po index 493fa64c871..24149de2832 100644 --- a/addons/stock_no_autopicking/i18n/es_CR.po +++ b/addons/stock_no_autopicking/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/et.po b/addons/stock_no_autopicking/i18n/et.po index ba2aa0e6132..991a5fbee37 100644 --- a/addons/stock_no_autopicking/i18n/et.po +++ b/addons/stock_no_autopicking/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/fi.po b/addons/stock_no_autopicking/i18n/fi.po index 7ad3ccd255b..3d15267a48c 100644 --- a/addons/stock_no_autopicking/i18n/fi.po +++ b/addons/stock_no_autopicking/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/fr.po b/addons/stock_no_autopicking/i18n/fr.po index 2105534dacc..5f38988f284 100644 --- a/addons/stock_no_autopicking/i18n/fr.po +++ b/addons/stock_no_autopicking/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/gl.po b/addons/stock_no_autopicking/i18n/gl.po index 7e38fb1bd2e..ed1cd653d21 100644 --- a/addons/stock_no_autopicking/i18n/gl.po +++ b/addons/stock_no_autopicking/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/hr.po b/addons/stock_no_autopicking/i18n/hr.po index 9a9a7b99450..ecefa731852 100644 --- a/addons/stock_no_autopicking/i18n/hr.po +++ b/addons/stock_no_autopicking/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/hu.po b/addons/stock_no_autopicking/i18n/hu.po index 96c43959e95..3b24cf1c266 100644 --- a/addons/stock_no_autopicking/i18n/hu.po +++ b/addons/stock_no_autopicking/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/id.po b/addons/stock_no_autopicking/i18n/id.po index 9d6626ef831..39f85abf5c7 100644 --- a/addons/stock_no_autopicking/i18n/id.po +++ b/addons/stock_no_autopicking/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/it.po b/addons/stock_no_autopicking/i18n/it.po index 41c10a2380d..c0991762ec9 100644 --- a/addons/stock_no_autopicking/i18n/it.po +++ b/addons/stock_no_autopicking/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ja.po b/addons/stock_no_autopicking/i18n/ja.po index 48ad35b37df..bb2e1aabdf7 100644 --- a/addons/stock_no_autopicking/i18n/ja.po +++ b/addons/stock_no_autopicking/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ko.po b/addons/stock_no_autopicking/i18n/ko.po index 4ed6346c79b..a955aeb6e49 100644 --- a/addons/stock_no_autopicking/i18n/ko.po +++ b/addons/stock_no_autopicking/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/lt.po b/addons/stock_no_autopicking/i18n/lt.po index 3401d71eb28..bcb02af9970 100644 --- a/addons/stock_no_autopicking/i18n/lt.po +++ b/addons/stock_no_autopicking/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/lv.po b/addons/stock_no_autopicking/i18n/lv.po index b9bfdf0d68c..ebe8e131c40 100644 --- a/addons/stock_no_autopicking/i18n/lv.po +++ b/addons/stock_no_autopicking/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/mk.po b/addons/stock_no_autopicking/i18n/mk.po index b29a20ff25a..3815501bbc5 100644 --- a/addons/stock_no_autopicking/i18n/mk.po +++ b/addons/stock_no_autopicking/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/mn.po b/addons/stock_no_autopicking/i18n/mn.po index 7625824c1f8..a9bbfa7b587 100644 --- a/addons/stock_no_autopicking/i18n/mn.po +++ b/addons/stock_no_autopicking/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/nl.po b/addons/stock_no_autopicking/i18n/nl.po index fbef3d75368..5f891587a3a 100644 --- a/addons/stock_no_autopicking/i18n/nl.po +++ b/addons/stock_no_autopicking/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/nl_BE.po b/addons/stock_no_autopicking/i18n/nl_BE.po index 012fda079b6..b13e3b9a9b3 100644 --- a/addons/stock_no_autopicking/i18n/nl_BE.po +++ b/addons/stock_no_autopicking/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/oc.po b/addons/stock_no_autopicking/i18n/oc.po index 72091db4d75..ff7f213e7b7 100644 --- a/addons/stock_no_autopicking/i18n/oc.po +++ b/addons/stock_no_autopicking/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/pl.po b/addons/stock_no_autopicking/i18n/pl.po index 153f4de6e5c..c1353fdbb69 100644 --- a/addons/stock_no_autopicking/i18n/pl.po +++ b/addons/stock_no_autopicking/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/pt.po b/addons/stock_no_autopicking/i18n/pt.po index b453cb66ec8..4574634bc15 100644 --- a/addons/stock_no_autopicking/i18n/pt.po +++ b/addons/stock_no_autopicking/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/pt_BR.po b/addons/stock_no_autopicking/i18n/pt_BR.po index 49019d7765c..7e3fc3a7f83 100644 --- a/addons/stock_no_autopicking/i18n/pt_BR.po +++ b/addons/stock_no_autopicking/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ro.po b/addons/stock_no_autopicking/i18n/ro.po index 87839cb2153..52bd4fa6d1d 100644 --- a/addons/stock_no_autopicking/i18n/ro.po +++ b/addons/stock_no_autopicking/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-23 07:49+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ru.po b/addons/stock_no_autopicking/i18n/ru.po index 729fe152d2d..5ce2f8876b3 100644 --- a/addons/stock_no_autopicking/i18n/ru.po +++ b/addons/stock_no_autopicking/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sl.po b/addons/stock_no_autopicking/i18n/sl.po index 537d1d875d9..83acfb98a1f 100644 --- a/addons/stock_no_autopicking/i18n/sl.po +++ b/addons/stock_no_autopicking/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sq.po b/addons/stock_no_autopicking/i18n/sq.po index c4670787510..8135af7f222 100644 --- a/addons/stock_no_autopicking/i18n/sq.po +++ b/addons/stock_no_autopicking/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sr@latin.po b/addons/stock_no_autopicking/i18n/sr@latin.po index 431c75dc361..6b7b7b45d98 100644 --- a/addons/stock_no_autopicking/i18n/sr@latin.po +++ b/addons/stock_no_autopicking/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sv.po b/addons/stock_no_autopicking/i18n/sv.po index a736167e867..d5bc605273e 100644 --- a/addons/stock_no_autopicking/i18n/sv.po +++ b/addons/stock_no_autopicking/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/tlh.po b/addons/stock_no_autopicking/i18n/tlh.po index 02b7c6d9559..ae1f2482aff 100644 --- a/addons/stock_no_autopicking/i18n/tlh.po +++ b/addons/stock_no_autopicking/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/tr.po b/addons/stock_no_autopicking/i18n/tr.po index fa9c6947693..f452d13bd08 100644 --- a/addons/stock_no_autopicking/i18n/tr.po +++ b/addons/stock_no_autopicking/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/uk.po b/addons/stock_no_autopicking/i18n/uk.po index d306284d323..1a990b165d0 100644 --- a/addons/stock_no_autopicking/i18n/uk.po +++ b/addons/stock_no_autopicking/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/vi.po b/addons/stock_no_autopicking/i18n/vi.po index b6ab3aaa41d..3ba23a6fdbe 100644 --- a/addons/stock_no_autopicking/i18n/vi.po +++ b/addons/stock_no_autopicking/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/zh_CN.po b/addons/stock_no_autopicking/i18n/zh_CN.po index 7674d1e2b35..479b5dbbcf8 100644 --- a/addons/stock_no_autopicking/i18n/zh_CN.po +++ b/addons/stock_no_autopicking/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/zh_TW.po b/addons/stock_no_autopicking/i18n/zh_TW.po index 4d9226bab0e..753b93ac00a 100644 --- a/addons/stock_no_autopicking/i18n/zh_TW.po +++ b/addons/stock_no_autopicking/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/subscription/i18n/ar.po b/addons/subscription/i18n/ar.po index 01c3e572ea9..46754b65365 100644 --- a/addons/subscription/i18n/ar.po +++ b/addons/subscription/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/bg.po b/addons/subscription/i18n/bg.po index dedd85f1bb5..ec9748deb86 100644 --- a/addons/subscription/i18n/bg.po +++ b/addons/subscription/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/bs.po b/addons/subscription/i18n/bs.po index 30c0b855a79..450040de69d 100644 --- a/addons/subscription/i18n/bs.po +++ b/addons/subscription/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ca.po b/addons/subscription/i18n/ca.po index a2932a68281..20df85d32fb 100644 --- a/addons/subscription/i18n/ca.po +++ b/addons/subscription/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/cs.po b/addons/subscription/i18n/cs.po index 16cc4c9d521..b94ade33589 100644 --- a/addons/subscription/i18n/cs.po +++ b/addons/subscription/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/da.po b/addons/subscription/i18n/da.po index c3017930c76..242b1aa6bb2 100644 --- a/addons/subscription/i18n/da.po +++ b/addons/subscription/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/de.po b/addons/subscription/i18n/de.po index 5b9105a7dfa..454888add89 100644 --- a/addons/subscription/i18n/de.po +++ b/addons/subscription/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/es.po b/addons/subscription/i18n/es.po index a2fb7c243c1..73ef8e81d85 100644 --- a/addons/subscription/i18n/es.po +++ b/addons/subscription/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/es_AR.po b/addons/subscription/i18n/es_AR.po index 3486c608603..5bf5dd2ef22 100644 --- a/addons/subscription/i18n/es_AR.po +++ b/addons/subscription/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/es_CR.po b/addons/subscription/i18n/es_CR.po index 2f47daa403c..c7509b8f956 100644 --- a/addons/subscription/i18n/es_CR.po +++ b/addons/subscription/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/et.po b/addons/subscription/i18n/et.po index 1fd8864e973..8255ec32a20 100644 --- a/addons/subscription/i18n/et.po +++ b/addons/subscription/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/fi.po b/addons/subscription/i18n/fi.po index 107828dca53..2a936b2c7ef 100644 --- a/addons/subscription/i18n/fi.po +++ b/addons/subscription/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/fr.po b/addons/subscription/i18n/fr.po index 7e0e2145356..31ad4a8310f 100644 --- a/addons/subscription/i18n/fr.po +++ b/addons/subscription/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/gl.po b/addons/subscription/i18n/gl.po index 6b4b276c4f7..c27ef53c5c4 100644 --- a/addons/subscription/i18n/gl.po +++ b/addons/subscription/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/hr.po b/addons/subscription/i18n/hr.po index 85551e07183..c8228aa56c4 100644 --- a/addons/subscription/i18n/hr.po +++ b/addons/subscription/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/hu.po b/addons/subscription/i18n/hu.po index cd4c05b9f38..46ce9f08e92 100644 --- a/addons/subscription/i18n/hu.po +++ b/addons/subscription/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/id.po b/addons/subscription/i18n/id.po index 0fd214b57e3..4200ab54943 100644 --- a/addons/subscription/i18n/id.po +++ b/addons/subscription/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/it.po b/addons/subscription/i18n/it.po index fc307e07566..a5de22b5d72 100644 --- a/addons/subscription/i18n/it.po +++ b/addons/subscription/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ja.po b/addons/subscription/i18n/ja.po index aaacdac364b..ef3fdb03d4f 100644 --- a/addons/subscription/i18n/ja.po +++ b/addons/subscription/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ko.po b/addons/subscription/i18n/ko.po index 9b69674ee89..9b8df5d7f74 100644 --- a/addons/subscription/i18n/ko.po +++ b/addons/subscription/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/lt.po b/addons/subscription/i18n/lt.po index 593ed115f7b..9610aa47ec1 100644 --- a/addons/subscription/i18n/lt.po +++ b/addons/subscription/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/mk.po b/addons/subscription/i18n/mk.po index 378c1e1173d..b88cd9b001f 100644 --- a/addons/subscription/i18n/mk.po +++ b/addons/subscription/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: subscription diff --git a/addons/subscription/i18n/nl.po b/addons/subscription/i18n/nl.po index ab40646f35a..248021dacc2 100644 --- a/addons/subscription/i18n/nl.po +++ b/addons/subscription/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/nl_BE.po b/addons/subscription/i18n/nl_BE.po index 1fc2d8d3549..2c4f72650a2 100644 --- a/addons/subscription/i18n/nl_BE.po +++ b/addons/subscription/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/pl.po b/addons/subscription/i18n/pl.po index 235f5fcbd06..c1b7776c0d2 100644 --- a/addons/subscription/i18n/pl.po +++ b/addons/subscription/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/pt.po b/addons/subscription/i18n/pt.po index 0108687d11f..9fd8f65f3fe 100644 --- a/addons/subscription/i18n/pt.po +++ b/addons/subscription/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/pt_BR.po b/addons/subscription/i18n/pt_BR.po index 23a798fa9b2..9c4b7b135ed 100644 --- a/addons/subscription/i18n/pt_BR.po +++ b/addons/subscription/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ro.po b/addons/subscription/i18n/ro.po index 746a8a79d65..9d7fbeac38a 100644 --- a/addons/subscription/i18n/ro.po +++ b/addons/subscription/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-12 15:23+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ru.po b/addons/subscription/i18n/ru.po index 98d322ef210..c8e7a92ca55 100644 --- a/addons/subscription/i18n/ru.po +++ b/addons/subscription/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/sl.po b/addons/subscription/i18n/sl.po index 5d9d35039c8..83ba0e70a70 100644 --- a/addons/subscription/i18n/sl.po +++ b/addons/subscription/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/sq.po b/addons/subscription/i18n/sq.po index ecefb5f1632..4bcb60f6b76 100644 --- a/addons/subscription/i18n/sq.po +++ b/addons/subscription/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/sv.po b/addons/subscription/i18n/sv.po index 4bf719d4818..f5e7a86bdd7 100644 --- a/addons/subscription/i18n/sv.po +++ b/addons/subscription/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/tlh.po b/addons/subscription/i18n/tlh.po index 24fa2d69e7b..7af2de8fec1 100644 --- a/addons/subscription/i18n/tlh.po +++ b/addons/subscription/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/tr.po b/addons/subscription/i18n/tr.po index 3768abf737e..55fdf920f3f 100644 --- a/addons/subscription/i18n/tr.po +++ b/addons/subscription/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-11 05:00+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/uk.po b/addons/subscription/i18n/uk.po index 2f8f6b8e2f0..8bc59e90f28 100644 --- a/addons/subscription/i18n/uk.po +++ b/addons/subscription/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/vi.po b/addons/subscription/i18n/vi.po index f2b5775d145..b8a3745a1e5 100644 --- a/addons/subscription/i18n/vi.po +++ b/addons/subscription/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/zh_CN.po b/addons/subscription/i18n/zh_CN.po index 555f8ed4bf3..bf9c85403c8 100644 --- a/addons/subscription/i18n/zh_CN.po +++ b/addons/subscription/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/zh_TW.po b/addons/subscription/i18n/zh_TW.po index 90f57938d4c..ea64fc51bb3 100644 --- a/addons/subscription/i18n/zh_TW.po +++ b/addons/subscription/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/survey/i18n/ar.po b/addons/survey/i18n/ar.po index 22db3ffaf4f..16d1c8a2648 100644 --- a/addons/survey/i18n/ar.po +++ b/addons/survey/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/bg.po b/addons/survey/i18n/bg.po index d68888bd4a9..2ddd273fc52 100644 --- a/addons/survey/i18n/bg.po +++ b/addons/survey/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ca.po b/addons/survey/i18n/ca.po index 54860b05e99..af16e419bb0 100644 --- a/addons/survey/i18n/ca.po +++ b/addons/survey/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/cs.po b/addons/survey/i18n/cs.po index 6e7557ee4c3..42d92266c6f 100644 --- a/addons/survey/i18n/cs.po +++ b/addons/survey/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/da.po b/addons/survey/i18n/da.po index 010c1b03bdb..61f18d45a8a 100644 --- a/addons/survey/i18n/da.po +++ b/addons/survey/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/de.po b/addons/survey/i18n/de.po index 1d5c0fbd7fe..bf333564ed7 100644 --- a/addons/survey/i18n/de.po +++ b/addons/survey/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/es.po b/addons/survey/i18n/es.po index 7cef85656b9..eb91dc47e90 100644 --- a/addons/survey/i18n/es.po +++ b/addons/survey/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/es_CR.po b/addons/survey/i18n/es_CR.po index cb4154c3f1e..35d294c6e35 100644 --- a/addons/survey/i18n/es_CR.po +++ b/addons/survey/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/et.po b/addons/survey/i18n/et.po index 2724a56e09d..91f7d59cce0 100644 --- a/addons/survey/i18n/et.po +++ b/addons/survey/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/fi.po b/addons/survey/i18n/fi.po index c9de3ea2fbf..b2ff5bfa2c1 100644 --- a/addons/survey/i18n/fi.po +++ b/addons/survey/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/fr.po b/addons/survey/i18n/fr.po index 272464fa595..56747efb4c0 100644 --- a/addons/survey/i18n/fr.po +++ b/addons/survey/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-14 02:16+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-15 05:13+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/gl.po b/addons/survey/i18n/gl.po index 2813a44c51c..e5cb8d3310d 100644 --- a/addons/survey/i18n/gl.po +++ b/addons/survey/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/hr.po b/addons/survey/i18n/hr.po index cbc3e387ec9..d77b7ecb62c 100644 --- a/addons/survey/i18n/hr.po +++ b/addons/survey/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/hu.po b/addons/survey/i18n/hu.po index 7b8c075f85f..012e5426e64 100644 --- a/addons/survey/i18n/hu.po +++ b/addons/survey/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/it.po b/addons/survey/i18n/it.po index ee1818f8272..1726d640bbe 100644 --- a/addons/survey/i18n/it.po +++ b/addons/survey/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ja.po b/addons/survey/i18n/ja.po index 4d44a91656f..6303bdd5e1d 100644 --- a/addons/survey/i18n/ja.po +++ b/addons/survey/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/mk.po b/addons/survey/i18n/mk.po index db6b137b5d1..f8833242f04 100644 --- a/addons/survey/i18n/mk.po +++ b/addons/survey/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: survey diff --git a/addons/survey/i18n/mn.po b/addons/survey/i18n/mn.po index 6f43b940db0..1b24c977611 100644 --- a/addons/survey/i18n/mn.po +++ b/addons/survey/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/nl.po b/addons/survey/i18n/nl.po index 6c18f5db681..eb6c59784a9 100644 --- a/addons/survey/i18n/nl.po +++ b/addons/survey/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:37+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/pl.po b/addons/survey/i18n/pl.po index 880f988ed55..9365333dab7 100644 --- a/addons/survey/i18n/pl.po +++ b/addons/survey/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/pt.po b/addons/survey/i18n/pt.po index 182cca09fbe..708417c3066 100644 --- a/addons/survey/i18n/pt.po +++ b/addons/survey/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/pt_BR.po b/addons/survey/i18n/pt_BR.po index d78e7777f9a..290c62c04d8 100644 --- a/addons/survey/i18n/pt_BR.po +++ b/addons/survey/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ro.po b/addons/survey/i18n/ro.po index 8490f080b11..3401ae2cb03 100644 --- a/addons/survey/i18n/ro.po +++ b/addons/survey/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-03-07 17:44+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ru.po b/addons/survey/i18n/ru.po index 65b10a0a9fb..95ea5bec798 100644 --- a/addons/survey/i18n/ru.po +++ b/addons/survey/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sl.po b/addons/survey/i18n/sl.po index 0d586b338f8..c952eec345e 100644 --- a/addons/survey/i18n/sl.po +++ b/addons/survey/i18n/sl.po @@ -8,19 +8,19 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-09-19 15:19+0000\n" -"Last-Translator: Dušan Laznik (Mentis) \n" +"PO-Revision-Date: 2013-11-20 22:40+0000\n" +"Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-20 06:01+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 msgid "Single Textboxes" -msgstr "" +msgstr "En besedilni okvirček" #. module: survey #: code:addons/survey/survey.py:471 @@ -53,7 +53,7 @@ msgstr "Odgovori:" #: view:survey:0 #: field:survey,invited_user_ids:0 msgid "Invited User" -msgstr "" +msgstr "Povabljen Uporabnik" #. module: survey #: model:survey.type,name:survey.survey_type1 @@ -103,7 +103,7 @@ msgstr "Območje" #. module: survey #: view:survey.response.line:0 msgid "Table Answer" -msgstr "" +msgstr "odgovor v tabeli" #. module: survey #: field:survey.history,date:0 @@ -113,7 +113,7 @@ msgstr "Datum začetka" #. module: survey #: field:survey,history:0 msgid "History Lines" -msgstr "" +msgstr "Vrstice zgodovine" #. module: survey #: view:survey:0 @@ -122,7 +122,7 @@ msgstr "" #: field:survey.question,descriptive_text:0 #: selection:survey.question,type:0 msgid "Descriptive Text" -msgstr "" +msgstr "Opisno besedilo" #. module: survey #: field:survey.send.invitation,mail:0 @@ -132,7 +132,7 @@ msgstr "Vsebina" #. module: survey #: field:survey.question,allow_comment:0 msgid "Allow Comment Field" -msgstr "" +msgstr "Dovoli komentar" #. module: survey #: selection:survey.print,paper_size:0 @@ -195,7 +195,7 @@ msgstr "Skupni odgovor" #. module: survey #: field:survey.tbl.column.heading,name:0 msgid "Row Number" -msgstr "" +msgstr "Številka vrstice" #. module: survey #: model:ir.model,name:survey.model_survey_name_wiz @@ -210,17 +210,19 @@ msgid "" "your maximum is greater than the number of answer. " " Please use a number that is smaller than %d." msgstr "" +"Maksimalno zahtevano število odgovorov, ki ste jih vnesli za vaš maksimum, " +"presega število odgovorov. Prosimo, uporabite število, manjše od %d." #. module: survey #: selection:survey.question,type:0 msgid "Matrix of Choices (Only One Answers Per Row)" -msgstr "" +msgstr "Matrika izbir (samo en odgovor na vrstico)" #. module: survey #: view:survey.send.invitation:0 #: field:survey.send.invitation,send_mail_existing:0 msgid "Send Reminder for Existing User" -msgstr "" +msgstr "Pošlji opomnik obstoječemu uporabniku" #. module: survey #: code:addons/survey/survey.py:525 @@ -236,18 +238,18 @@ msgstr "" #: view:survey.page:0 #: view:survey.question:0 msgid "Survey Question" -msgstr "" +msgstr "Vprašanje ankete" #. module: survey #: view:survey.question.column.heading:0 msgid "Use if question type is rating_scale" -msgstr "" +msgstr "Uporabite, če je vprašanje tipa bonitetne lestvice" #. module: survey #: field:survey.print,page_number:0 #: field:survey.print.answer,page_number:0 msgid "Include Page Number" -msgstr "" +msgstr "Vključi številko strani" #. module: survey #: view:survey.page:0 @@ -263,7 +265,7 @@ msgstr "Naslov strani" #. module: survey #: model:ir.model,name:survey.model_survey_history msgid "Survey History" -msgstr "" +msgstr "Zgodovina ankete" #. module: survey #: field:survey.response.answer,comment:0 @@ -275,7 +277,7 @@ msgstr "Beležke" #: view:survey:0 #: view:survey.request:0 msgid "Search Survey" -msgstr "" +msgstr "Iskanje ankete" #. module: survey #: field:survey.response.answer,answer:0 @@ -286,18 +288,18 @@ msgstr "Vrednost" #. module: survey #: field:survey.question,column_heading_ids:0 msgid " Column heading" -msgstr "" +msgstr " Naziv stolpca" #. module: survey #: code:addons/survey/wizard/survey_send_invitation.py:71 #, python-format msgid "The following surveys are not in open state: %s" -msgstr "" +msgstr "Naslednje ankete niso v statusu Odprto: %s" #. module: survey #: field:survey,tot_comp_survey:0 msgid "Total Completed Survey" -msgstr "" +msgstr "Skupno zaključenih anket" #. module: survey #: view:survey.response.answer:0 @@ -307,7 +309,7 @@ msgstr "" #. module: survey #: model:ir.actions.report.xml,name:survey.survey_analysis msgid "Survey Statistics" -msgstr "" +msgstr "Statistika anket" #. module: survey #: selection:survey,state:0 @@ -318,7 +320,7 @@ msgstr "Preklicano" #. module: survey #: selection:survey.question,type:0 msgid "Rating Scale" -msgstr "" +msgstr "bonitetna lestvica" #. module: survey #: code:addons/survey/survey.py:152 @@ -328,27 +330,29 @@ msgid "" "This survey has no question defined. Please define the questions and answers " "first." msgstr "" +"Ta anketa nima definiranih vprašanj. Prosimo določite vprašanja in možne " +"odgovore." #. module: survey #: field:survey.question,comment_field_type:0 msgid "Comment Field Type" -msgstr "" +msgstr "Polje tipa komentar" #. module: survey #: selection:survey.question,comment_field_type:0 msgid "Single Line Of Text" -msgstr "" +msgstr "Ena vrstica besedila" #. module: survey #: field:survey,date_open:0 msgid "Survey Open Date" -msgstr "" +msgstr "Datum začetka ankete" #. module: survey #: code:addons/survey/wizard/survey_answer.py:800 #, python-format msgid "You cannot select the same answer more than one time." -msgstr "" +msgstr "Ne morete izbrati istega odgovora večkrat." #. module: survey #: field:survey,color:0 @@ -358,24 +362,24 @@ msgstr "Barvvni index" #. module: survey #: selection:survey.question,type:0 msgid "Multiple Choice (Multiple Answer)" -msgstr "" +msgstr "Več možnosti (več odgovorov)" #. module: survey #: view:survey:0 msgid "Edit Survey" -msgstr "" +msgstr "Uredi anketo" #. module: survey #: code:addons/survey/wizard/survey_answer.py:766 #: code:addons/survey/wizard/survey_answer.py:961 #, python-format msgid "Please enter an integer value." -msgstr "" +msgstr "Prosimo, vnesite celo število" #. module: survey #: field:survey.question.column.heading,menu_choice:0 msgid "Menu Choice" -msgstr "" +msgstr "Izbira na meniju" #. module: survey #: code:addons/survey/survey.py:493 @@ -383,7 +387,7 @@ msgstr "" msgid "" "You must enter one or more menu choices in " "column heading." -msgstr "" +msgstr "Vnesti morate eno ali več menijskih izbir v naziv kolone." #. module: survey #: selection:survey.question,required_type:0 @@ -394,12 +398,12 @@ msgstr "Največ" #: view:survey:0 #: view:survey.request:0 msgid "My Survey(s)" -msgstr "" +msgstr "Moje ankete" #. module: survey #: view:survey.response.line:0 msgid "Survey Answer Line" -msgstr "" +msgstr "Anketna vrstica za odgovor" #. module: survey #: code:addons/survey/wizard/survey_send_invitation.py:72 @@ -423,6 +427,22 @@ msgid "" "\n" "Thanks," msgstr "" +"\n" +"Pozdravljeni %%(name)s, \n" +"\n" +"\n" +"Prosimo za nekaj vašega časa, da izpolnite našo anketo: \n" +"%s\n" +"\n" +"Za prijavo v anekto uporabite naslednje parametre:\n" +"URL: %s\n" +"Vaše uporabniško ime: %%(login)s\n" +"Vaše geslo: %%(passwd)s\n" +"\n" +"\n" +"\n" +"\n" +"Hvala," #. module: survey #: field:survey.response.line,single_text:0 @@ -438,7 +458,7 @@ msgstr "Urejanje ..." #: selection:survey.print,paper_size:0 #: selection:survey.print.answer,paper_size:0 msgid "Letter (8.5\" x 11\")" -msgstr "" +msgstr "Pismo (8.5\" x 11\")" #. module: survey #: view:survey:0 @@ -461,7 +481,7 @@ msgstr "Zadeva" #: field:survey.question,comment_maximum_float:0 #: field:survey.question,validation_maximum_float:0 msgid "Maximum decimal number" -msgstr "" +msgstr "Maksimalno decimalno število" #. module: survey #: model:ir.model,name:survey.model_survey_tbl_column_heading @@ -472,7 +492,7 @@ msgstr "survey.tbl.column.heading" #: view:survey.send.invitation:0 #: field:survey.send.invitation,send_mail:0 msgid "Send Mail for New User" -msgstr "" +msgstr "Pošlji e-sporočilo za novega uporabnika" #. module: survey #: field:survey.send.invitation,mail_from:0 @@ -482,25 +502,25 @@ msgstr "Pošiljatelj" #. module: survey #: view:survey:0 msgid "Cancel Survey" -msgstr "" +msgstr "Prekliči anketo" #. module: survey #: selection:survey.question,comment_valid_type:0 #: selection:survey.question,validation_type:0 msgid "Don't Validate Comment Text." -msgstr "" +msgstr "Ne potrjujte teksta v komentarju" #. module: survey #: code:addons/survey/survey.py:532 #, python-format msgid "You must enter one or more menu choices in column heading." -msgstr "" +msgstr "Vnesti morate enega ali več menijskih izbir v naslovu kolone." #. module: survey #: selection:survey.question,comment_valid_type:0 #: selection:survey.question,validation_type:0 msgid "Must Be A Whole Number" -msgstr "" +msgstr "Mora biti celo število" #. module: survey #: field:survey.answer,question_id:0 @@ -514,7 +534,7 @@ msgstr "Vprašanje" #. module: survey #: view:survey.page:0 msgid "Search Survey Page" -msgstr "" +msgstr "Iskanje strani ankete" #. module: survey #: field:survey.question.wiz,name:0 @@ -524,7 +544,7 @@ msgstr "Številka" #. module: survey #: view:survey.request:0 msgid "Evaluation Plan Phase" -msgstr "" +msgstr "Faza načrta ovrednotenja" #. module: survey #: code:addons/survey/wizard/survey_send_invitation.py:185 @@ -556,7 +576,7 @@ msgstr "Novo" #. module: survey #: field:survey.question,make_comment_field:0 msgid "Make Comment Field an Answer Choice" -msgstr "" +msgstr "Omogočite polje komentarja kot možni odgovor" #. module: survey #: view:survey:0 @@ -575,7 +595,7 @@ msgstr "Email" #: view:survey.page:0 #: view:survey.question:0 msgid "Required Answer" -msgstr "" +msgstr "Zahtevan odgovor" #. module: survey #: code:addons/survey/survey.py:96 @@ -587,23 +607,25 @@ msgstr "%s (kopija)" #. module: survey #: selection:survey.response,state:0 msgid "Not Finished" -msgstr "" +msgstr "Ni končano" #. module: survey #: view:survey.print:0 msgid "Survey Print" -msgstr "" +msgstr "Tiskanje ankete" #. module: survey #: view:survey.send.invitation:0 msgid "Select Partner" -msgstr "" +msgstr "Izberite partnerja" #. module: survey #: code:addons/survey/survey.py:527 #, python-format msgid "Maximum Required Answer is greater than Minimum Required Answer." msgstr "" +"Maksimalno zahtevano število odgovorov je večje kot minimalno zahtevanih " +"odgovorov." #. module: survey #: model:ir.ui.menu,name:survey.menu_reporting @@ -625,27 +647,27 @@ msgstr "Povezava" #: model:ir.model,name:survey.model_survey_type #: view:survey.type:0 msgid "Survey Type" -msgstr "" +msgstr "Tip ankete" #. module: survey #: field:survey.page,sequence:0 msgid "Page Nr" -msgstr "" +msgstr "Stran št." #. module: survey #: model:ir.ui.menu,name:survey.menu_print_survey_form msgid "Print Surveys" -msgstr "" +msgstr "Tisk anket" #. module: survey #: field:survey.question.column.heading,in_visible_menu_choice:0 msgid "Is Menu Choice Invisible??" -msgstr "" +msgstr "Ali je menijska izbira nevidna??" #. module: survey #: field:survey.question,minimum_req_ans:0 msgid "Minimum Required Answer" -msgstr "" +msgstr "Minimalni zahtevan odgovor" #. module: survey #: field:survey.question,req_error_msg:0 @@ -656,18 +678,18 @@ msgstr "Sporočilo napake" #: code:addons/survey/wizard/survey_answer.py:124 #, python-format msgid "You cannot answer this survey more than %s times." -msgstr "" +msgstr "Te ankete ne morete izpolniti več kot %s krat." #. module: survey #: field:survey.request,date_deadline:0 msgid "Deadline date" -msgstr "" +msgstr "Končni rok" #. module: survey #: selection:survey.question,comment_valid_type:0 #: selection:survey.question,validation_type:0 msgid "Must Be A Date" -msgstr "" +msgstr "Mora biti datum" #. module: survey #: model:ir.model,name:survey.model_survey_print @@ -679,25 +701,25 @@ msgstr "survey.print" #: view:survey.page:0 #: field:survey.question,page_id:0 msgid "Survey Page" -msgstr "" +msgstr "Stran ankete" #. module: survey #: view:survey.question.column.heading:0 #: field:survey.question.column.heading,title:0 msgid "Column Heading" -msgstr "" +msgstr "Naziv stolpca" #. module: survey #: field:survey.question,is_require_answer:0 msgid "Require Answer to Question" -msgstr "" +msgstr "Zahtevaj odgovor na vprašanje" #. module: survey #: model:ir.actions.act_window,name:survey.act_survey_request #: model:ir.actions.act_window,name:survey.action_survey_request_tree #: model:ir.ui.menu,name:survey.menu_survey_type_form1 msgid "Survey Requests" -msgstr "" +msgstr "Zahteva anekete" #. module: survey #: model:ir.model,name:survey.model_survey_browse_answer @@ -707,7 +729,7 @@ msgstr "survey.browse.answer" #. module: survey #: selection:survey.question,comment_field_type:0 msgid "Paragraph of Text" -msgstr "" +msgstr "Odstavek besedila" #. module: survey #: code:addons/survey/survey.py:477 @@ -717,18 +739,20 @@ msgid "" "your maximum is greater than the number of answer. " " Please use a number that is smaller than %d." msgstr "" +"Maksimalni zahtevan odgovor, ki ste ga vnesli kot vaš maksimum, je večji kot " +"število odgovorov. Prosimo, uporabite število, ki je manjše kot %d." #. module: survey #: view:survey:0 msgid "Survey description..." -msgstr "" +msgstr "Opis ankete..." #. module: survey #: view:survey:0 #: view:survey.page:0 #: view:survey.question:0 msgid "When the question is not answered, display this error message:" -msgstr "" +msgstr "Če na vprašanje ni odgovora, izpiši to besedilo o napaki:" #. module: survey #: view:survey:0 @@ -742,6 +766,7 @@ msgstr "Možnosti" #, python-format msgid "You must enter one or more Answers for question \"%s\" of page %s." msgstr "" +"Vnesti morate enega ali več odgovorov na vprašanje \"%s\" na strani %s." #. module: survey #: view:survey:0 @@ -762,7 +787,7 @@ msgstr "Komentar" #: view:survey.response.answer:0 #: view:survey.response.line:0 msgid "Survey Answer" -msgstr "" +msgstr "Odgovor ankete" #. module: survey #: selection:survey.answer,type:0 @@ -773,14 +798,14 @@ msgstr "Izbor" #: model:ir.actions.act_window,name:survey.action_browse_survey_response #: view:survey:0 msgid "Answer Survey" -msgstr "" +msgstr "Odgovor ankete" #. module: survey #: view:survey:0 #: view:survey.page:0 #: view:survey.question:0 msgid "Comment Field" -msgstr "" +msgstr "Polje komentarja" #. module: survey #: selection:survey.response,response_type:0 @@ -795,7 +820,7 @@ msgstr "_Pošlji" #. module: survey #: help:survey,responsible_id:0 msgid "User responsible for survey" -msgstr "" +msgstr "Uporabnik, odgovoren za anketo" #. module: survey #: field:survey,page_ids:0 @@ -808,7 +833,7 @@ msgstr "Stran" #. module: survey #: field:survey.question,comment_column:0 msgid "Add comment column in matrix" -msgstr "" +msgstr "Dodaj kolono za komentar v matriko" #. module: survey #: field:survey.answer,response:0 diff --git a/addons/survey/i18n/sr.po b/addons/survey/i18n/sr.po index fb0683b3c98..32742002e89 100644 --- a/addons/survey/i18n/sr.po +++ b/addons/survey/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:25+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sr@latin.po b/addons/survey/i18n/sr@latin.po index a81f1ca64d9..96677da6a18 100644 --- a/addons/survey/i18n/sr@latin.po +++ b/addons/survey/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sv.po b/addons/survey/i18n/sv.po index 9d1ac3c4072..3f9d6e9cfed 100644 --- a/addons/survey/i18n/sv.po +++ b/addons/survey/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/tr.po b/addons/survey/i18n/tr.po index 5f87632b432..a8b8347a499 100644 --- a/addons/survey/i18n/tr.po +++ b/addons/survey/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-05 06:00+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/zh_CN.po b/addons/survey/i18n/zh_CN.po index b0a4e838d03..76d19955983 100644 --- a/addons/survey/i18n/zh_CN.po +++ b/addons/survey/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-11 06:56+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-12 06:35+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: survey #: view:survey.response.line:0 @@ -419,6 +419,23 @@ msgid "" "\n" "Thanks," msgstr "" +"\n" +"Hello %%(name)s, \n" +"\n" +"\n" +"恳请您花费一些时间帮助我们做一下调查。: \n" +"%s\n" +"\n" +"您能通过下列参数访问此次调查:\n" +" URL: %s\n" +"您的注册 ID: %%(login)s\n" +"\n" +"您的密码: %%(passwd)s\n" +"\n" +"\n" +"\n" +"\n" +"再次感谢," #. module: survey #: field:survey.response.line,single_text:0 @@ -919,6 +936,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击创建新调查。 \n" +"

\n" +" 可以为不同目的创建新调查。比如招聘面试,\n" +" 员工定期评估,市场营销等。\n" +"

\n" +" 调查由数页不同种类问题组成,包括文本,选项等。\n" +"

\n" +" " #. module: survey #: field:survey,date_close:0 diff --git a/addons/warning/i18n/ar.po b/addons/warning/i18n/ar.po index fe5146203ac..36a1eb69e56 100644 --- a/addons/warning/i18n/ar.po +++ b/addons/warning/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/bg.po b/addons/warning/i18n/bg.po index 03da717d2db..2fb43fc3deb 100644 --- a/addons/warning/i18n/bg.po +++ b/addons/warning/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/bs.po b/addons/warning/i18n/bs.po index 7b9c38fd12c..a582a89425b 100644 --- a/addons/warning/i18n/bs.po +++ b/addons/warning/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-28 05:42+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ca.po b/addons/warning/i18n/ca.po index 616da478def..6fde6c12926 100644 --- a/addons/warning/i18n/ca.po +++ b/addons/warning/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/cs.po b/addons/warning/i18n/cs.po index d7b1286a47d..73bd07acfb2 100644 --- a/addons/warning/i18n/cs.po +++ b/addons/warning/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/da.po b/addons/warning/i18n/da.po index 77e31e88c8e..5cf8aa0c4c6 100644 --- a/addons/warning/i18n/da.po +++ b/addons/warning/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-13 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/de.po b/addons/warning/i18n/de.po index cf83291a431..c49d7af531f 100644 --- a/addons/warning/i18n/de.po +++ b/addons/warning/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/el.po b/addons/warning/i18n/el.po index a966e00c3fa..b3f4cb7d0ae 100644 --- a/addons/warning/i18n/el.po +++ b/addons/warning/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/es.po b/addons/warning/i18n/es.po index da70eb3fa2a..f457cef2a28 100644 --- a/addons/warning/i18n/es.po +++ b/addons/warning/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/es_AR.po b/addons/warning/i18n/es_AR.po index b2fbef9e272..27eaf6cc621 100644 --- a/addons/warning/i18n/es_AR.po +++ b/addons/warning/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/es_CR.po b/addons/warning/i18n/es_CR.po index 720c915d5ae..f60b8d1f51b 100644 --- a/addons/warning/i18n/es_CR.po +++ b/addons/warning/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/et.po b/addons/warning/i18n/et.po index 41a09eed988..8f660595400 100644 --- a/addons/warning/i18n/et.po +++ b/addons/warning/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/fi.po b/addons/warning/i18n/fi.po index 622c66c6ea7..5cd939dc428 100644 --- a/addons/warning/i18n/fi.po +++ b/addons/warning/i18n/fi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: warning diff --git a/addons/warning/i18n/fr.po b/addons/warning/i18n/fr.po index 1d0c7ff7cc1..d870801bc59 100644 --- a/addons/warning/i18n/fr.po +++ b/addons/warning/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/gl.po b/addons/warning/i18n/gl.po index 1dac9a755b1..e37d5eb7693 100644 --- a/addons/warning/i18n/gl.po +++ b/addons/warning/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/hr.po b/addons/warning/i18n/hr.po index bd51987f1ab..366d5c40f20 100644 --- a/addons/warning/i18n/hr.po +++ b/addons/warning/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-19 05:28+0000\n" -"X-Generator: Launchpad (build 16807)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: hr\n" #. module: warning diff --git a/addons/warning/i18n/hu.po b/addons/warning/i18n/hu.po index 18abc5e4bb7..8f608bef820 100644 --- a/addons/warning/i18n/hu.po +++ b/addons/warning/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/id.po b/addons/warning/i18n/id.po index eb71eb6be46..6ec93bc78ef 100644 --- a/addons/warning/i18n/id.po +++ b/addons/warning/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/it.po b/addons/warning/i18n/it.po index 178b8975a4b..83b3344caf6 100644 --- a/addons/warning/i18n/it.po +++ b/addons/warning/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ja.po b/addons/warning/i18n/ja.po index 2a68aa902f3..156e645017a 100644 --- a/addons/warning/i18n/ja.po +++ b/addons/warning/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ko.po b/addons/warning/i18n/ko.po index 065e1ad28a1..3be650e5c82 100644 --- a/addons/warning/i18n/ko.po +++ b/addons/warning/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/lt.po b/addons/warning/i18n/lt.po index de1805d3f45..d225418401e 100644 --- a/addons/warning/i18n/lt.po +++ b/addons/warning/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/mk.po b/addons/warning/i18n/mk.po index 3a3be75d1ea..5ac8ce99f49 100644 --- a/addons/warning/i18n/mk.po +++ b/addons/warning/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: warning diff --git a/addons/warning/i18n/mn.po b/addons/warning/i18n/mn.po index 094ae8eb33a..67ab8133a2d 100644 --- a/addons/warning/i18n/mn.po +++ b/addons/warning/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/nb.po b/addons/warning/i18n/nb.po index 72f7f7972f7..3a3d39db011 100644 --- a/addons/warning/i18n/nb.po +++ b/addons/warning/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/nl.po b/addons/warning/i18n/nl.po index 45f2a2d6af0..55d421ad2c7 100644 --- a/addons/warning/i18n/nl.po +++ b/addons/warning/i18n/nl.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-31 14:22+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/nl_BE.po b/addons/warning/i18n/nl_BE.po index 70c25e42295..9a055481855 100644 --- a/addons/warning/i18n/nl_BE.po +++ b/addons/warning/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/pl.po b/addons/warning/i18n/pl.po index e6ad884b039..e275426c422 100644 --- a/addons/warning/i18n/pl.po +++ b/addons/warning/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/pt.po b/addons/warning/i18n/pt.po index 744c446ae5b..9f747902504 100644 --- a/addons/warning/i18n/pt.po +++ b/addons/warning/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/pt_BR.po b/addons/warning/i18n/pt_BR.po index 8f60f64dd9a..ab1f0873973 100644 --- a/addons/warning/i18n/pt_BR.po +++ b/addons/warning/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ro.po b/addons/warning/i18n/ro.po index 7b6c5f4a0e2..7e46c50695c 100644 --- a/addons/warning/i18n/ro.po +++ b/addons/warning/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ru.po b/addons/warning/i18n/ru.po index cfe59119e2c..0621c60857b 100644 --- a/addons/warning/i18n/ru.po +++ b/addons/warning/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sl.po b/addons/warning/i18n/sl.po index 4b3bf262677..2a8492c4f07 100644 --- a/addons/warning/i18n/sl.po +++ b/addons/warning/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-22 05:34+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sq.po b/addons/warning/i18n/sq.po index bdbca3d91a1..8e3ada32aba 100644 --- a/addons/warning/i18n/sq.po +++ b/addons/warning/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sr.po b/addons/warning/i18n/sr.po index 8833276db12..fbe15cb74c5 100644 --- a/addons/warning/i18n/sr.po +++ b/addons/warning/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sr@latin.po b/addons/warning/i18n/sr@latin.po index a9b1274eb33..1450b4651d2 100644 --- a/addons/warning/i18n/sr@latin.po +++ b/addons/warning/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sv.po b/addons/warning/i18n/sv.po index 5e7ccaebc3e..61ace31da26 100644 --- a/addons/warning/i18n/sv.po +++ b/addons/warning/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/th.po b/addons/warning/i18n/th.po index 641963a491c..3ec3de1dc4e 100644 --- a/addons/warning/i18n/th.po +++ b/addons/warning/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/tlh.po b/addons/warning/i18n/tlh.po index 6cd02d93974..f02c17d8a94 100644 --- a/addons/warning/i18n/tlh.po +++ b/addons/warning/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/tr.po b/addons/warning/i18n/tr.po index c9e93173365..8bb3ab4cc17 100644 --- a/addons/warning/i18n/tr.po +++ b/addons/warning/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/uk.po b/addons/warning/i18n/uk.po index 1a36b8f63c5..ff44b2aa8bb 100644 --- a/addons/warning/i18n/uk.po +++ b/addons/warning/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/vi.po b/addons/warning/i18n/vi.po index d22ff53dc7c..7884f2ad3f5 100644 --- a/addons/warning/i18n/vi.po +++ b/addons/warning/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/zh_CN.po b/addons/warning/i18n/zh_CN.po index 1f7c0d3bb7f..d32aba72a66 100644 --- a/addons/warning/i18n/zh_CN.po +++ b/addons/warning/i18n/zh_CN.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-08-10 13:39+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-11 05:00+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/zh_TW.po b/addons/warning/i18n/zh_TW.po index 21bdbb8caf2..344e9ddec15 100644 --- a/addons/warning/i18n/zh_TW.po +++ b/addons/warning/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/web_linkedin/i18n/cs.po b/addons/web_linkedin/i18n/cs.po index b98b03cd7d0..819367039d5 100644 --- a/addons/web_linkedin/i18n/cs.po +++ b/addons/web_linkedin/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/de.po b/addons/web_linkedin/i18n/de.po index 6f6dcf0e8e8..a4374cf7711 100644 --- a/addons/web_linkedin/i18n/de.po +++ b/addons/web_linkedin/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/es.po b/addons/web_linkedin/i18n/es.po index b79868feb2a..df990537aac 100644 --- a/addons/web_linkedin/i18n/es.po +++ b/addons/web_linkedin/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/fr.po b/addons/web_linkedin/i18n/fr.po index 3d79071e4c7..c85d28762db 100644 --- a/addons/web_linkedin/i18n/fr.po +++ b/addons/web_linkedin/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-24 05:20+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/hr.po b/addons/web_linkedin/i18n/hr.po index b6eae03235f..4693e2b3da0 100644 --- a/addons/web_linkedin/i18n/hr.po +++ b/addons/web_linkedin/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/hu.po b/addons/web_linkedin/i18n/hu.po index 1d50c39888e..49e443ddb04 100644 --- a/addons/web_linkedin/i18n/hu.po +++ b/addons/web_linkedin/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-13 05:38+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/it.po b/addons/web_linkedin/i18n/it.po index 1dd8db711f6..f6cda8a613e 100644 --- a/addons/web_linkedin/i18n/it.po +++ b/addons/web_linkedin/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/mk.po b/addons/web_linkedin/i18n/mk.po index 4d902b35768..3991e1ae095 100644 --- a/addons/web_linkedin/i18n/mk.po +++ b/addons/web_linkedin/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" "Language: mk\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/mn.po b/addons/web_linkedin/i18n/mn.po index 0fc102aacd3..86b44ea247e 100644 --- a/addons/web_linkedin/i18n/mn.po +++ b/addons/web_linkedin/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/nl.po b/addons/web_linkedin/i18n/nl.po index 3deab8ebe8a..5fe86bef9d9 100644 --- a/addons/web_linkedin/i18n/nl.po +++ b/addons/web_linkedin/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-13 06:08+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/pl.po b/addons/web_linkedin/i18n/pl.po index e2279dc2951..089bf629754 100644 --- a/addons/web_linkedin/i18n/pl.po +++ b/addons/web_linkedin/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/pt.po b/addons/web_linkedin/i18n/pt.po index 24fb402d9aa..e8af6b73bd0 100644 --- a/addons/web_linkedin/i18n/pt.po +++ b/addons/web_linkedin/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-15 05:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/pt_BR.po b/addons/web_linkedin/i18n/pt_BR.po index e6dd2c448fe..285262ff436 100644 --- a/addons/web_linkedin/i18n/pt_BR.po +++ b/addons/web_linkedin/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-18 20:55+0000\n" -"Last-Translator: Claudio de Araujo Santos \n" +"Last-Translator: Claudio de Araujo Santos \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-19 06:36+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/ro.po b/addons/web_linkedin/i18n/ro.po index b353c3753c2..df0c14fb9e0 100644 --- a/addons/web_linkedin/i18n/ro.po +++ b/addons/web_linkedin/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-11 12:42+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/sl.po b/addons/web_linkedin/i18n/sl.po index 39441b13de0..b6dbc50c724 100644 --- a/addons/web_linkedin/i18n/sl.po +++ b/addons/web_linkedin/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/tr.po b/addons/web_linkedin/i18n/tr.po index 7df37cef94f..3c49bf387bb 100644 --- a/addons/web_linkedin/i18n/tr.po +++ b/addons/web_linkedin/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_linkedin/i18n/zh_CN.po b/addons/web_linkedin/i18n/zh_CN.po index 37d223242f4..97877d459d3 100644 --- a/addons/web_linkedin/i18n/zh_CN.po +++ b/addons/web_linkedin/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-11 06:59+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-12 06:35+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_linkedin #. openerp-web diff --git a/addons/web_shortcuts/i18n/bs.po b/addons/web_shortcuts/i18n/bs.po index ad7c5628abe..1192b92933f 100644 --- a/addons/web_shortcuts/i18n/bs.po +++ b/addons/web_shortcuts/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 06:13+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/cs.po b/addons/web_shortcuts/i18n/cs.po index 2dd0c370c36..c470b1bb168 100644 --- a/addons/web_shortcuts/i18n/cs.po +++ b/addons/web_shortcuts/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/da.po b/addons/web_shortcuts/i18n/da.po index b3180ea2a5e..8ca1fccbf09 100644 --- a/addons/web_shortcuts/i18n/da.po +++ b/addons/web_shortcuts/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/de.po b/addons/web_shortcuts/i18n/de.po index 7b5b076f6f3..926b73f6aca 100644 --- a/addons/web_shortcuts/i18n/de.po +++ b/addons/web_shortcuts/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/el.po b/addons/web_shortcuts/i18n/el.po index 3c7aca3df9e..ddd90295d8e 100644 --- a/addons/web_shortcuts/i18n/el.po +++ b/addons/web_shortcuts/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-01 05:39+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/en_GB.po b/addons/web_shortcuts/i18n/en_GB.po index 91534b01ea8..abb0ddc3cab 100644 --- a/addons/web_shortcuts/i18n/en_GB.po +++ b/addons/web_shortcuts/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-24 05:35+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/es.po b/addons/web_shortcuts/i18n/es.po index 0af8eb59c2b..3167b349651 100644 --- a/addons/web_shortcuts/i18n/es.po +++ b/addons/web_shortcuts/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/fi.po b/addons/web_shortcuts/i18n/fi.po index ebbcbb0e688..61b303faecd 100644 --- a/addons/web_shortcuts/i18n/fi.po +++ b/addons/web_shortcuts/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 06:45+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/fr.po b/addons/web_shortcuts/i18n/fr.po index cdc83fb538d..4c22712f452 100644 --- a/addons/web_shortcuts/i18n/fr.po +++ b/addons/web_shortcuts/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/hr.po b/addons/web_shortcuts/i18n/hr.po index eb49dea1d61..3bf7a37541d 100644 --- a/addons/web_shortcuts/i18n/hr.po +++ b/addons/web_shortcuts/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/hu.po b/addons/web_shortcuts/i18n/hu.po index e290a83f554..9fad2e369ce 100644 --- a/addons/web_shortcuts/i18n/hu.po +++ b/addons/web_shortcuts/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/it.po b/addons/web_shortcuts/i18n/it.po index 76be405a296..8a7d2d0e2e2 100644 --- a/addons/web_shortcuts/i18n/it.po +++ b/addons/web_shortcuts/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/lt.po b/addons/web_shortcuts/i18n/lt.po index f99c50ebd97..ae6c868dade 100644 --- a/addons/web_shortcuts/i18n/lt.po +++ b/addons/web_shortcuts/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/mk.po b/addons/web_shortcuts/i18n/mk.po index 304948cc481..ec0c16b9a40 100644 --- a/addons/web_shortcuts/i18n/mk.po +++ b/addons/web_shortcuts/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/mn.po b/addons/web_shortcuts/i18n/mn.po index d9c17e1801d..559d3edf191 100644 --- a/addons/web_shortcuts/i18n/mn.po +++ b/addons/web_shortcuts/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/nl.po b/addons/web_shortcuts/i18n/nl.po index 3b258e273dd..655f634a8c4 100644 --- a/addons/web_shortcuts/i18n/nl.po +++ b/addons/web_shortcuts/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/pl.po b/addons/web_shortcuts/i18n/pl.po index 39ed852c323..4c08366bc7d 100644 --- a/addons/web_shortcuts/i18n/pl.po +++ b/addons/web_shortcuts/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/pt.po b/addons/web_shortcuts/i18n/pt.po index 8fbd3451695..92d27cb7af5 100644 --- a/addons/web_shortcuts/i18n/pt.po +++ b/addons/web_shortcuts/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/pt_BR.po b/addons/web_shortcuts/i18n/pt_BR.po index 25336522c7e..4b71460aead 100644 --- a/addons/web_shortcuts/i18n/pt_BR.po +++ b/addons/web_shortcuts/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-22 05:59+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/ro.po b/addons/web_shortcuts/i18n/ro.po index b6b98d3cac7..8373282761e 100644 --- a/addons/web_shortcuts/i18n/ro.po +++ b/addons/web_shortcuts/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-11 12:29+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/ru.po b/addons/web_shortcuts/i18n/ru.po index c1ca0229d48..88cdc97a2d6 100644 --- a/addons/web_shortcuts/i18n/ru.po +++ b/addons/web_shortcuts/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/sl.po b/addons/web_shortcuts/i18n/sl.po index c23f1faa4e0..47f764b0ac3 100644 --- a/addons/web_shortcuts/i18n/sl.po +++ b/addons/web_shortcuts/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/sv.po b/addons/web_shortcuts/i18n/sv.po index 6b3506ac57b..559b58f82de 100644 --- a/addons/web_shortcuts/i18n/sv.po +++ b/addons/web_shortcuts/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/th.po b/addons/web_shortcuts/i18n/th.po index c0103eff1a6..546a300c5ab 100644 --- a/addons/web_shortcuts/i18n/th.po +++ b/addons/web_shortcuts/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/tr.po b/addons/web_shortcuts/i18n/tr.po index afb1d610291..5db7dc1f6b3 100644 --- a/addons/web_shortcuts/i18n/tr.po +++ b/addons/web_shortcuts/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/vi.po b/addons/web_shortcuts/i18n/vi.po index efcf70f3878..a593830c2bc 100644 --- a/addons/web_shortcuts/i18n/vi.po +++ b/addons/web_shortcuts/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/zh_CN.po b/addons/web_shortcuts/i18n/zh_CN.po index 829df3a7b7d..d100b714522 100644 --- a/addons/web_shortcuts/i18n/zh_CN.po +++ b/addons/web_shortcuts/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-07-24 13:35+0000\n" -"Last-Translator: 盈通 ccdos \n" +"Last-Translator: 盈通 ccdos \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-25 05:44+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/zh_TW.po b/addons/web_shortcuts/i18n/zh_TW.po index 35ed8e49995..d41e0ef6914 100644 --- a/addons/web_shortcuts/i18n/zh_TW.po +++ b/addons/web_shortcuts/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-11 06:26+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-11-21 06:38+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_shortcuts #. openerp-web diff --git a/openerp/addons/base/i18n/ja.po b/openerp/addons/base/i18n/ja.po index b347cf70c77..07f4cdd96c0 100644 --- a/openerp/addons/base/i18n/ja.po +++ b/openerp/addons/base/i18n/ja.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:35+0000\n" -"PO-Revision-Date: 2013-11-16 09:49+0000\n" +"PO-Revision-Date: 2013-11-21 02:13+0000\n" "Last-Translator: Yoshi Tashiro \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-17 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-11-21 05:48+0000\n" "X-Generator: Launchpad (build 16831)\n" #. module: base @@ -1106,7 +1106,7 @@ msgstr "他のOSI認証ライセンス" #. module: base #: model:ir.module.module,shortdesc:base.module_web_gantt msgid "Web Gantt" -msgstr "" +msgstr "ウェブガント" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -4860,7 +4860,7 @@ msgstr "赤道ギニア" #. module: base #: model:ir.module.module,shortdesc:base.module_web_api msgid "OpenERP Web API" -msgstr "" +msgstr "OpenERPウェブAPI" #. module: base #: model:ir.module.module,description:base.module_l10n_fr_rib @@ -5979,7 +5979,7 @@ msgstr "" #: model:ir.module.module,shortdesc:base.module_web #: report:ir.module.reference:0 msgid "Web" -msgstr "" +msgstr "ウェブ" #. module: base #: model:ir.module.module,shortdesc:base.module_lunch @@ -8466,7 +8466,7 @@ msgstr "フィンランド" #. module: base #: model:ir.module.module,shortdesc:base.module_web_shortcuts msgid "Web Shortcuts" -msgstr "" +msgstr "ウェブショートカット" #. module: base #: view:res.partner:0 @@ -15394,7 +15394,7 @@ msgstr "チリ" #. module: base #: model:ir.module.module,shortdesc:base.module_web_view_editor msgid "View Editor" -msgstr "" +msgstr "ビューエディタ" #. module: base #: view:ir.cron:0 From 1761086ad716061abae13339aee67f77ab3c1610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Wed, 20 Nov 2013 16:43:20 +0100 Subject: [PATCH 25/28] [FIX] mail: auto_subscribe: fix subscription, could have subtypes linked to another model than the current model bzr revid: tde@openerp.com-20131120154320-gf67wbv3en2f7ral --- addons/mail/mail_thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mail/mail_thread.py b/addons/mail/mail_thread.py index 256f6c9a7f7..5f3ac13d7c7 100644 --- a/addons/mail/mail_thread.py +++ b/addons/mail/mail_thread.py @@ -1311,7 +1311,7 @@ class mail_thread(osv.AbstractModel): ) for header_follower in follower_obj.browse(cr, SUPERUSER_ID, header_follower_ids, context=context): for subtype in header_follower.subtype_ids: - if subtype.res_model and subtype.parent_id: + if subtype.parent_id and subtype.parent_id.res_model == self._name: new_followers.setdefault(header_follower.partner_id.id, set()).add(subtype.parent_id.id) elif subtype.res_model is False: new_followers.setdefault(header_follower.partner_id.id, set()).add(subtype.id) From 58080c65691a7716e4c57dde8ec15a7e36ae75f5 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Thu, 21 Nov 2013 14:23:05 +0100 Subject: [PATCH 26/28] [FIX] ir, ir_translation: it was not possible to empty the source of a translation, or this is sometime something that we want bzr revid: dle@openerp.com-20131121132305-qjlclgz5v9tze1fr --- openerp/addons/base/ir/ir_translation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openerp/addons/base/ir/ir_translation.py b/openerp/addons/base/ir/ir_translation.py index a00656e3a63..cdbec59c65c 100644 --- a/openerp/addons/base/ir/ir_translation.py +++ b/openerp/addons/base/ir/ir_translation.py @@ -184,7 +184,7 @@ class ir_translation(osv.osv): if context is None: context = {} record = self.browse(cr, uid, id, context=context) - if value and record.type == 'model': + if record.type == 'model': model_name, field = record.name.split(',') model = self.pool.get(model_name) #We need to take the context without the language information, because we want to write on the From c3063778ce389b7b186a4683faaed5635163a8d7 Mon Sep 17 00:00:00 2001 From: Martin Trigaux Date: Thu, 21 Nov 2013 16:13:05 +0100 Subject: [PATCH 27/28] [FIX] email.template: add safe filter over email address to allow emails to be sent in the format 'Name ' and avoid escaping bzr revid: mat@openerp.com-20131121151305-t5je12s4w5uctu0k --- addons/account/edi/invoice_action_data.xml | 2 +- .../account_analytic_analysis_cron.xml | 4 ++-- .../account_followup/account_followup_data.xml | 16 ++++++++-------- addons/auth_signup/auth_signup_data.xml | 8 ++++---- addons/event/email_template.xml | 8 ++++---- .../marketing_campaign_demo.xml | 6 +++--- addons/portal_sale/portal_sale_data.xml | 4 ++-- .../purchase/edi/purchase_order_action_data.xml | 2 +- addons/sale/edi/sale_order_action_data.xml | 2 +- 9 files changed, 26 insertions(+), 26 deletions(-) diff --git a/addons/account/edi/invoice_action_data.xml b/addons/account/edi/invoice_action_data.xml index 18ac71f55ce..4b62ef16faf 100644 --- a/addons/account/edi/invoice_action_data.xml +++ b/addons/account/edi/invoice_action_data.xml @@ -22,7 +22,7 @@ Invoice - Send by Email - ${object.user_id.email or object.company_id.email or 'noreply@localhost'} + ${object.user_id.email or object.company_id.email or 'noreply@localhost'|safe} ${object.company_id.name} Invoice (Ref ${object.number or 'n/a'}) ${object.partner_id.id} diff --git a/addons/account_analytic_analysis/account_analytic_analysis_cron.xml b/addons/account_analytic_analysis/account_analytic_analysis_cron.xml index 4a9cf457c3f..c8368bc51f7 100644 --- a/addons/account_analytic_analysis/account_analytic_analysis_cron.xml +++ b/addons/account_analytic_analysis/account_analytic_analysis_cron.xml @@ -4,9 +4,9 @@ Contract expiration reminder - ${object.email or ''} + ${object.email or ''|safe} Contract expiration reminder ${user.company_id.name} - ${object.email} + ${object.email|safe} ${object.lang} diff --git a/addons/account_followup/account_followup_data.xml b/addons/account_followup/account_followup_data.xml index 1a11db5e5f7..7dfc5dc0851 100644 --- a/addons/account_followup/account_followup_data.xml +++ b/addons/account_followup/account_followup_data.xml @@ -6,9 +6,9 @@ First polite payment follow-up reminder email - ${user.email or ''} + ${user.email or ''|safe} ${user.company_id.name} Payment Reminder - ${object.email} + ${object.email|safe} ${object.lang} @@ -45,9 +45,9 @@ ${object.get_followup_table_html() | safe} A bit urging second payment follow-up reminder email - ${user.email or ''} + ${user.email or ''|safe} ${user.company_id.name} Payment Reminder - ${object.email} + ${object.email|safe} ${object.lang} @@ -85,9 +85,9 @@ ${object.get_followup_table_html() | safe} Urging payment follow-up reminder email - ${user.email or ''} + ${user.email or ''|safe} ${user.company_id.name} Payment Reminder - ${object.email} + ${object.email|safe} ${object.lang} @@ -122,9 +122,9 @@ ${object.get_followup_table_html() | safe} Default payment follow-up reminder e-mail - ${user.email or ''} + ${user.email or ''|safe} ${user.company_id.name} Payment Reminder - ${object.email} + ${object.email|safe} ${object.lang} diff --git a/addons/auth_signup/auth_signup_data.xml b/addons/auth_signup/auth_signup_data.xml index 1b4e3e05502..dc34e4d8117 100644 --- a/addons/auth_signup/auth_signup_data.xml +++ b/addons/auth_signup/auth_signup_data.xml @@ -22,8 +22,8 @@ Reset Password - ]]> - ${object.email} + ]]> + ${object.email|safe} Password reset A password reset was requested for the OpenERP account linked to this email.

@@ -37,8 +37,8 @@ OpenERP Enterprise Connection - ]]> - ${object.email} + ]]> + ${object.email|safe} Confirmation of the Event - ${object.user_id.email or object.company_id.email or 'noreply@' + object.company_id.name + '.com'} - ${object.email} + ${object.user_id.email or object.company_id.email or 'noreply@' + object.company_id.name + '.com'|safe} + ${object.email|safe} Your registration at ${object.event_id.name} Hello ${object.name},

@@ -21,8 +21,8 @@ Confirmation of the Registration - ${object.user_id.email or object.company_id.email or 'noreply@' + object.company_id.name + '.com'} - ${object.email} + ${object.user_id.email or object.company_id.email or 'noreply@' + object.company_id.name + '.com'|safe} + ${object.email|safe} Your registration at ${object.event_id.name} Hello ${object.name},

diff --git a/addons/marketing_campaign/marketing_campaign_demo.xml b/addons/marketing_campaign/marketing_campaign_demo.xml index 92443fe987d..9b246286a5f 100644 --- a/addons/marketing_campaign/marketing_campaign_demo.xml +++ b/addons/marketing_campaign/marketing_campaign_demo.xml @@ -6,7 +6,7 @@ welcome new partner info@openerp.com Welcome to the OpenERP Partner Channel! - ${object.email or ''} + ${object.email or ''|safe} Hello, you will receive your welcome pack via email shortly.
@@ -14,7 +14,7 @@ congrats silver partner info@openerp.com Congratulations! You are now a Silver Partner! - ${object.email or ''} + ${object.email or ''|safe} Hi, we are delighted to welcome you among our Silver Partners as of today!
@@ -23,7 +23,7 @@ congrats gold partner info@openerp.com Congratulations! You are now one of our Gold Partners! - ${object.email or ''} + ${object.email or ''|safe} Hi, we are delighted to let you know that you have entered the select circle of our Gold Partners
diff --git a/addons/portal_sale/portal_sale_data.xml b/addons/portal_sale/portal_sale_data.xml index 31a2f19ef28..778f2d4f129 100644 --- a/addons/portal_sale/portal_sale_data.xml +++ b/addons/portal_sale/portal_sale_data.xml @@ -6,7 +6,7 @@ Sales Order - Send by Email (Portal) - ${object.user_id.email or ''} + ${object.user_id.email or ''|safe} ${object.company_id.name} ${object.state in ('draft', 'sent') and 'Quotation' or 'Order'} (Ref ${object.name or 'n/a' }) ${object.partner_invoice_id.id} @@ -95,7 +95,7 @@ Invoice - Send by Email (Portal) - ${object.user_id.email or object.company_id.email or 'noreply@localhost'} + ${object.user_id.email or object.company_id.email or 'noreply@localhost'|safe} ${object.company_id.name} Invoice (Ref ${object.number or 'n/a' }) ${object.partner_id.id} diff --git a/addons/purchase/edi/purchase_order_action_data.xml b/addons/purchase/edi/purchase_order_action_data.xml index 3b02be574ef..19b4d14b2be 100644 --- a/addons/purchase/edi/purchase_order_action_data.xml +++ b/addons/purchase/edi/purchase_order_action_data.xml @@ -19,7 +19,7 @@ Purchase Order - Send by mail - ${object.validator.email or ''} + ${object.validator.email or ''|safe} ${object.company_id.name} Order (Ref ${object.name or 'n/a' }) ${object.partner_id.id} diff --git a/addons/sale/edi/sale_order_action_data.xml b/addons/sale/edi/sale_order_action_data.xml index 16712532285..fe289559584 100644 --- a/addons/sale/edi/sale_order_action_data.xml +++ b/addons/sale/edi/sale_order_action_data.xml @@ -20,7 +20,7 @@ Sales Order - Send by Email - ${object.user_id.email or ''} + ${object.user_id.email or ''|safe} ${object.company_id.name} ${object.state in ('draft', 'sent') and 'Quotation' or 'Order'} (Ref ${object.name or 'n/a' }) ${object.partner_invoice_id.id} From 17144e9914eb21e42dcd287b794813ec1cb5ad20 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Thu, 21 Nov 2013 16:32:30 +0100 Subject: [PATCH 28/28] [FIX] stock.picking.in: typo in default_get implementation bzr revid: odo@openerp.com-20131121153230-keie85rmes2zh2o8 --- addons/stock/stock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/stock/stock.py b/addons/stock/stock.py index 5894e3c274c..26ea1775871 100644 --- a/addons/stock/stock.py +++ b/addons/stock/stock.py @@ -3050,7 +3050,7 @@ class stock_picking_in(osv.osv): def default_get(self, cr, uid, fields_list, context=None): # merge defaults from stock.picking with possible defaults defined on stock.picking.in defaults = self.pool['stock.picking'].default_get(cr, uid, fields_list, context=context) - out_defaults = super(stock_picking_in, self).default_get(cr, uid, fields_list, context=context) + in_defaults = super(stock_picking_in, self).default_get(cr, uid, fields_list, context=context) defaults.update(in_defaults) return defaults