From 914a97f329485074c428830c5bfc0f93ac867f52 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Fri, 15 Mar 2013 12:31:20 +0100 Subject: [PATCH 1/3] [FIX] account_analytic_analysis: remove duplicate method kept by mistake while porting 7.0 fixes to trunk in rev.8620 bzr revid: odo@openerp.com-20130315113120-xsmfoxw6a6kaylzm --- .../account_analytic_analysis.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/addons/account_analytic_analysis/account_analytic_analysis.py b/addons/account_analytic_analysis/account_analytic_analysis.py index fe47b5d293b..0a56c80766b 100644 --- a/addons/account_analytic_analysis/account_analytic_analysis.py +++ b/addons/account_analytic_analysis/account_analytic_analysis.py @@ -714,17 +714,6 @@ class account_analytic_account(osv.osv): self.write(cr, uid, [contract.id], {'recurring_next_date': new_date.strftime('%Y-%m-%d')}, context=context) return True - def onchange_invoice_on_timesheets(self, cr, uid, ids, invoice_on_timesheets, context=None): - if not invoice_on_timesheets: - return {} - result = {'value': {'use_timesheets': True}} - try: - to_invoice = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'hr_timesheet_invoice', 'timesheet_invoice_factor1') - result['value']['to_invoice'] = to_invoice[1] - except ValueError: - pass - return result - class account_analytic_account_summary_user(osv.osv): _name = "account_analytic_analysis.summary.user" _description = "Hours Summary by User" From 9494f21ea857e2682778df9de47e1123e53b872b Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Fri, 15 Mar 2013 12:53:02 +0100 Subject: [PATCH 2/3] [FIX] __getattr__ implementation on BaseModel object has no __getattr__, in the usual case super(BaseModel, self).__getattr__ will blow up with an AttributeError (but the wrong one). On the other hand, if a BaseModel descendant class is used in MI alongside a non-BM descendant (e.g. res_partner inheriting from Model and format_address) and the non-BM descendant also implements __getattr__, we want to forward the failed attr search to the other __getattr__ implementation. So check if super() has a __getattr__, call it if it does otherwise AttributeError right there. bzr revid: xmo@openerp.com-20130315115302-z7jla334gb9a5e43 --- openerp/osv/orm.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/openerp/osv/orm.py b/openerp/osv/orm.py index 1efc9bea489..dd3a8ca64cf 100644 --- a/openerp/osv/orm.py +++ b/openerp/osv/orm.py @@ -5278,7 +5278,10 @@ class BaseModel(object): assert signal_name return (lambda *args, **kwargs: self.signal_workflow(*args, signal=signal_name, **kwargs)) - return super(BaseModel, self).__getattr__(name) + get = getattr(super(BaseModel, self), '__getattr__', None) + if get is not None: return get(name) + raise AttributeError( + "'%s' object has no attribute '%s'" % (type(self).__name__, name)) # keep this import here, at top it will cause dependency cycle errors import expression From 4ce8d2697d47f5fef279985a78059e34bee6f3ba Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Mon, 18 Mar 2013 04:46:40 +0000 Subject: [PATCH 3/3] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130316055338-ogfw01ap8fh1hlaj bzr revid: launchpad_translations_on_behalf_of_openerp-20130317045918-zi1230lgxjbkqw3x bzr revid: launchpad_translations_on_behalf_of_openerp-20130318044640-ts2tr31y2gl25rev --- addons/account/i18n/ar.po | 2 +- addons/account/i18n/bg.po | 2 +- addons/account/i18n/br.po | 2 +- addons/account/i18n/bs.po | 2 +- addons/account/i18n/ca.po | 2 +- addons/account/i18n/cs.po | 2 +- addons/account/i18n/da.po | 2 +- addons/account/i18n/de.po | 2 +- addons/account/i18n/el.po | 2 +- addons/account/i18n/en_GB.po | 2 +- addons/account/i18n/en_US.po | 2 +- addons/account/i18n/es.po | 2 +- addons/account/i18n/es_AR.po | 2 +- addons/account/i18n/es_CL.po | 2 +- addons/account/i18n/es_CR.po | 2 +- addons/account/i18n/es_DO.po | 2 +- addons/account/i18n/es_EC.po | 2 +- addons/account/i18n/es_MX.po | 2 +- addons/account/i18n/es_PY.po | 2 +- addons/account/i18n/es_UY.po | 2 +- addons/account/i18n/es_VE.po | 2 +- addons/account/i18n/et.po | 2 +- addons/account/i18n/eu.po | 2 +- addons/account/i18n/fa.po | 2 +- addons/account/i18n/fa_AF.po | 2 +- addons/account/i18n/fi.po | 2 +- addons/account/i18n/fr.po | 2 +- addons/account/i18n/fr_BE.po | 2 +- addons/account/i18n/gl.po | 2 +- addons/account/i18n/gu.po | 2 +- addons/account/i18n/he.po | 2 +- addons/account/i18n/hi.po | 2 +- addons/account/i18n/hr.po | 2 +- addons/account/i18n/hu.po | 2 +- addons/account/i18n/id.po | 2 +- addons/account/i18n/it.po | 2 +- addons/account/i18n/ja.po | 2 +- addons/account/i18n/kab.po | 2 +- addons/account/i18n/kk.po | 2 +- addons/account/i18n/ko.po | 2 +- addons/account/i18n/lo.po | 2 +- addons/account/i18n/lt.po | 2 +- addons/account/i18n/lv.po | 2 +- addons/account/i18n/mk.po | 2 +- addons/account/i18n/mn.po | 2 +- addons/account/i18n/nb.po | 2 +- addons/account/i18n/nl.po | 6 +- addons/account/i18n/nl_BE.po | 2 +- addons/account/i18n/oc.po | 2 +- addons/account/i18n/pl.po | 2 +- addons/account/i18n/pt.po | 2 +- addons/account/i18n/pt_BR.po | 2 +- addons/account/i18n/ro.po | 2 +- addons/account/i18n/ru.po | 2 +- addons/account/i18n/si.po | 2 +- addons/account/i18n/sk.po | 2 +- addons/account/i18n/sl.po | 2 +- addons/account/i18n/sq.po | 2 +- addons/account/i18n/sr.po | 2 +- addons/account/i18n/sr@latin.po | 2 +- addons/account/i18n/sv.po | 2 +- addons/account/i18n/ta.po | 2 +- addons/account/i18n/te.po | 2 +- addons/account/i18n/th.po | 2 +- addons/account/i18n/tlh.po | 2 +- addons/account/i18n/tr.po | 2 +- addons/account/i18n/ug.po | 2 +- addons/account/i18n/uk.po | 2 +- addons/account/i18n/ur.po | 2 +- addons/account/i18n/vi.po | 2 +- addons/account/i18n/zh_CN.po | 2 +- addons/account/i18n/zh_HK.po | 2 +- addons/account/i18n/zh_TW.po | 2 +- addons/account_accountant/i18n/ar.po | 2 +- addons/account_accountant/i18n/az.po | 2 +- addons/account_accountant/i18n/bg.po | 2 +- addons/account_accountant/i18n/bn.po | 2 +- addons/account_accountant/i18n/bs.po | 2 +- addons/account_accountant/i18n/ca.po | 2 +- addons/account_accountant/i18n/cs.po | 2 +- addons/account_accountant/i18n/da.po | 2 +- addons/account_accountant/i18n/de.po | 2 +- addons/account_accountant/i18n/el.po | 2 +- addons/account_accountant/i18n/en_GB.po | 2 +- addons/account_accountant/i18n/es.po | 2 +- addons/account_accountant/i18n/es_CO.po | 2 +- addons/account_accountant/i18n/es_CR.po | 2 +- addons/account_accountant/i18n/es_DO.po | 2 +- addons/account_accountant/i18n/es_EC.po | 2 +- addons/account_accountant/i18n/es_MX.po | 2 +- addons/account_accountant/i18n/es_PY.po | 2 +- addons/account_accountant/i18n/et.po | 2 +- addons/account_accountant/i18n/fa.po | 2 +- addons/account_accountant/i18n/fi.po | 2 +- addons/account_accountant/i18n/fr.po | 2 +- addons/account_accountant/i18n/gl.po | 2 +- addons/account_accountant/i18n/he.po | 2 +- addons/account_accountant/i18n/hi.po | 2 +- addons/account_accountant/i18n/hr.po | 2 +- addons/account_accountant/i18n/hu.po | 2 +- addons/account_accountant/i18n/id.po | 2 +- addons/account_accountant/i18n/it.po | 2 +- addons/account_accountant/i18n/ja.po | 2 +- addons/account_accountant/i18n/ko.po | 2 +- addons/account_accountant/i18n/lo.po | 2 +- addons/account_accountant/i18n/lt.po | 2 +- addons/account_accountant/i18n/lv.po | 2 +- addons/account_accountant/i18n/mk.po | 2 +- addons/account_accountant/i18n/mn.po | 2 +- addons/account_accountant/i18n/nb.po | 2 +- addons/account_accountant/i18n/nl.po | 2 +- addons/account_accountant/i18n/nl_BE.po | 2 +- addons/account_accountant/i18n/oc.po | 2 +- addons/account_accountant/i18n/pl.po | 2 +- addons/account_accountant/i18n/pt.po | 2 +- addons/account_accountant/i18n/pt_BR.po | 2 +- addons/account_accountant/i18n/ro.po | 2 +- addons/account_accountant/i18n/ru.po | 2 +- addons/account_accountant/i18n/sk.po | 2 +- addons/account_accountant/i18n/sl.po | 2 +- addons/account_accountant/i18n/sq.po | 2 +- addons/account_accountant/i18n/sr.po | 2 +- addons/account_accountant/i18n/sr@latin.po | 2 +- addons/account_accountant/i18n/sv.po | 2 +- addons/account_accountant/i18n/ta.po | 2 +- addons/account_accountant/i18n/th.po | 2 +- addons/account_accountant/i18n/tr.po | 2 +- addons/account_accountant/i18n/uk.po | 2 +- addons/account_accountant/i18n/vi.po | 2 +- addons/account_accountant/i18n/zh_CN.po | 2 +- addons/account_accountant/i18n/zh_TW.po | 2 +- addons/account_analytic_analysis/i18n/ar.po | 2 +- addons/account_analytic_analysis/i18n/bg.po | 2 +- addons/account_analytic_analysis/i18n/bs.po | 2 +- addons/account_analytic_analysis/i18n/ca.po | 2 +- addons/account_analytic_analysis/i18n/cs.po | 2 +- addons/account_analytic_analysis/i18n/da.po | 2 +- addons/account_analytic_analysis/i18n/de.po | 2 +- addons/account_analytic_analysis/i18n/el.po | 2 +- .../account_analytic_analysis/i18n/en_GB.po | 2 +- addons/account_analytic_analysis/i18n/es.po | 2 +- .../account_analytic_analysis/i18n/es_AR.po | 2 +- .../account_analytic_analysis/i18n/es_CR.po | 2 +- .../account_analytic_analysis/i18n/es_EC.po | 2 +- .../account_analytic_analysis/i18n/es_MX.po | 2 +- .../account_analytic_analysis/i18n/es_PY.po | 2 +- addons/account_analytic_analysis/i18n/et.po | 2 +- addons/account_analytic_analysis/i18n/fa.po | 2 +- addons/account_analytic_analysis/i18n/fi.po | 2 +- addons/account_analytic_analysis/i18n/fr.po | 2 +- addons/account_analytic_analysis/i18n/gl.po | 2 +- addons/account_analytic_analysis/i18n/gu.po | 2 +- addons/account_analytic_analysis/i18n/hr.po | 2 +- addons/account_analytic_analysis/i18n/hu.po | 2 +- addons/account_analytic_analysis/i18n/id.po | 2 +- addons/account_analytic_analysis/i18n/it.po | 2 +- addons/account_analytic_analysis/i18n/ja.po | 2 +- addons/account_analytic_analysis/i18n/ko.po | 2 +- addons/account_analytic_analysis/i18n/lt.po | 2 +- addons/account_analytic_analysis/i18n/lv.po | 2 +- addons/account_analytic_analysis/i18n/mk.po | 2 +- addons/account_analytic_analysis/i18n/mn.po | 2 +- addons/account_analytic_analysis/i18n/nb.po | 2 +- addons/account_analytic_analysis/i18n/nl.po | 2 +- .../account_analytic_analysis/i18n/nl_BE.po | 2 +- addons/account_analytic_analysis/i18n/oc.po | 2 +- addons/account_analytic_analysis/i18n/pl.po | 2 +- addons/account_analytic_analysis/i18n/pt.po | 2 +- .../account_analytic_analysis/i18n/pt_BR.po | 6 +- addons/account_analytic_analysis/i18n/ro.po | 2 +- addons/account_analytic_analysis/i18n/ru.po | 2 +- addons/account_analytic_analysis/i18n/sl.po | 2 +- addons/account_analytic_analysis/i18n/sq.po | 2 +- addons/account_analytic_analysis/i18n/sr.po | 2 +- .../i18n/sr@latin.po | 2 +- addons/account_analytic_analysis/i18n/sv.po | 2 +- addons/account_analytic_analysis/i18n/tlh.po | 2 +- addons/account_analytic_analysis/i18n/tr.po | 2 +- addons/account_analytic_analysis/i18n/uk.po | 2 +- addons/account_analytic_analysis/i18n/vi.po | 2 +- .../account_analytic_analysis/i18n/zh_CN.po | 2 +- .../account_analytic_analysis/i18n/zh_TW.po | 2 +- addons/account_analytic_default/i18n/ar.po | 2 +- addons/account_analytic_default/i18n/bg.po | 2 +- addons/account_analytic_default/i18n/bs.po | 2 +- addons/account_analytic_default/i18n/ca.po | 2 +- addons/account_analytic_default/i18n/cs.po | 2 +- addons/account_analytic_default/i18n/da.po | 2 +- addons/account_analytic_default/i18n/de.po | 2 +- addons/account_analytic_default/i18n/el.po | 2 +- addons/account_analytic_default/i18n/en_GB.po | 2 +- addons/account_analytic_default/i18n/es.po | 2 +- addons/account_analytic_default/i18n/es_AR.po | 2 +- addons/account_analytic_default/i18n/es_CR.po | 2 +- addons/account_analytic_default/i18n/es_EC.po | 2 +- addons/account_analytic_default/i18n/es_MX.po | 2 +- addons/account_analytic_default/i18n/es_PY.po | 2 +- addons/account_analytic_default/i18n/et.po | 2 +- addons/account_analytic_default/i18n/fa.po | 2 +- addons/account_analytic_default/i18n/fi.po | 2 +- addons/account_analytic_default/i18n/fr.po | 2 +- addons/account_analytic_default/i18n/gl.po | 2 +- addons/account_analytic_default/i18n/gu.po | 2 +- addons/account_analytic_default/i18n/hr.po | 2 +- addons/account_analytic_default/i18n/hu.po | 2 +- addons/account_analytic_default/i18n/id.po | 2 +- addons/account_analytic_default/i18n/it.po | 2 +- addons/account_analytic_default/i18n/ja.po | 2 +- addons/account_analytic_default/i18n/ko.po | 2 +- addons/account_analytic_default/i18n/lt.po | 2 +- addons/account_analytic_default/i18n/lv.po | 2 +- addons/account_analytic_default/i18n/mk.po | 2 +- addons/account_analytic_default/i18n/mn.po | 2 +- addons/account_analytic_default/i18n/nb.po | 2 +- addons/account_analytic_default/i18n/nl.po | 2 +- addons/account_analytic_default/i18n/nl_BE.po | 2 +- addons/account_analytic_default/i18n/oc.po | 2 +- addons/account_analytic_default/i18n/pl.po | 2 +- addons/account_analytic_default/i18n/pt.po | 2 +- addons/account_analytic_default/i18n/pt_BR.po | 4 +- addons/account_analytic_default/i18n/ro.po | 2 +- addons/account_analytic_default/i18n/ru.po | 2 +- addons/account_analytic_default/i18n/sk.po | 2 +- addons/account_analytic_default/i18n/sl.po | 2 +- addons/account_analytic_default/i18n/sq.po | 2 +- addons/account_analytic_default/i18n/sr.po | 2 +- .../account_analytic_default/i18n/sr@latin.po | 2 +- addons/account_analytic_default/i18n/sv.po | 2 +- addons/account_analytic_default/i18n/tlh.po | 2 +- addons/account_analytic_default/i18n/tr.po | 2 +- addons/account_analytic_default/i18n/uk.po | 2 +- addons/account_analytic_default/i18n/vi.po | 2 +- addons/account_analytic_default/i18n/zh_CN.po | 2 +- addons/account_analytic_default/i18n/zh_TW.po | 2 +- addons/account_analytic_plans/i18n/ar.po | 2 +- addons/account_analytic_plans/i18n/bg.po | 2 +- addons/account_analytic_plans/i18n/bs.po | 2 +- addons/account_analytic_plans/i18n/ca.po | 2 +- addons/account_analytic_plans/i18n/cs.po | 2 +- addons/account_analytic_plans/i18n/da.po | 2 +- addons/account_analytic_plans/i18n/de.po | 2 +- addons/account_analytic_plans/i18n/el.po | 2 +- addons/account_analytic_plans/i18n/en_GB.po | 2 +- addons/account_analytic_plans/i18n/es.po | 2 +- addons/account_analytic_plans/i18n/es_AR.po | 2 +- addons/account_analytic_plans/i18n/es_CR.po | 2 +- addons/account_analytic_plans/i18n/es_EC.po | 2 +- addons/account_analytic_plans/i18n/es_MX.po | 2 +- addons/account_analytic_plans/i18n/es_PY.po | 2 +- addons/account_analytic_plans/i18n/et.po | 2 +- addons/account_analytic_plans/i18n/fa.po | 2 +- addons/account_analytic_plans/i18n/fi.po | 2 +- addons/account_analytic_plans/i18n/fr.po | 2 +- addons/account_analytic_plans/i18n/gl.po | 2 +- addons/account_analytic_plans/i18n/gu.po | 2 +- addons/account_analytic_plans/i18n/hr.po | 2 +- addons/account_analytic_plans/i18n/hu.po | 2 +- addons/account_analytic_plans/i18n/id.po | 2 +- addons/account_analytic_plans/i18n/it.po | 2 +- addons/account_analytic_plans/i18n/ja.po | 2 +- addons/account_analytic_plans/i18n/ko.po | 2 +- addons/account_analytic_plans/i18n/lt.po | 2 +- addons/account_analytic_plans/i18n/lv.po | 2 +- addons/account_analytic_plans/i18n/mk.po | 2 +- addons/account_analytic_plans/i18n/mn.po | 2 +- addons/account_analytic_plans/i18n/nb.po | 2 +- addons/account_analytic_plans/i18n/nl.po | 2 +- addons/account_analytic_plans/i18n/nl_BE.po | 2 +- addons/account_analytic_plans/i18n/oc.po | 2 +- addons/account_analytic_plans/i18n/pl.po | 2 +- addons/account_analytic_plans/i18n/pt.po | 2 +- addons/account_analytic_plans/i18n/pt_BR.po | 6 +- addons/account_analytic_plans/i18n/ro.po | 2 +- addons/account_analytic_plans/i18n/ru.po | 2 +- addons/account_analytic_plans/i18n/sl.po | 2 +- addons/account_analytic_plans/i18n/sq.po | 2 +- addons/account_analytic_plans/i18n/sr.po | 2 +- .../account_analytic_plans/i18n/sr@latin.po | 2 +- addons/account_analytic_plans/i18n/sv.po | 2 +- addons/account_analytic_plans/i18n/tlh.po | 2 +- addons/account_analytic_plans/i18n/tr.po | 2 +- addons/account_analytic_plans/i18n/uk.po | 2 +- addons/account_analytic_plans/i18n/vi.po | 2 +- addons/account_analytic_plans/i18n/zh_CN.po | 2 +- addons/account_analytic_plans/i18n/zh_TW.po | 2 +- addons/account_anglo_saxon/i18n/ar.po | 2 +- addons/account_anglo_saxon/i18n/bg.po | 2 +- addons/account_anglo_saxon/i18n/ca.po | 2 +- addons/account_anglo_saxon/i18n/cs.po | 2 +- addons/account_anglo_saxon/i18n/da.po | 2 +- addons/account_anglo_saxon/i18n/de.po | 2 +- addons/account_anglo_saxon/i18n/el.po | 2 +- addons/account_anglo_saxon/i18n/en_GB.po | 2 +- addons/account_anglo_saxon/i18n/es.po | 2 +- addons/account_anglo_saxon/i18n/es_CR.po | 2 +- addons/account_anglo_saxon/i18n/es_EC.po | 2 +- addons/account_anglo_saxon/i18n/es_MX.po | 2 +- addons/account_anglo_saxon/i18n/es_PY.po | 2 +- addons/account_anglo_saxon/i18n/et.po | 2 +- addons/account_anglo_saxon/i18n/fa.po | 2 +- addons/account_anglo_saxon/i18n/fi.po | 2 +- addons/account_anglo_saxon/i18n/fr.po | 2 +- addons/account_anglo_saxon/i18n/gl.po | 2 +- addons/account_anglo_saxon/i18n/gu.po | 2 +- addons/account_anglo_saxon/i18n/hi.po | 2 +- addons/account_anglo_saxon/i18n/hr.po | 2 +- addons/account_anglo_saxon/i18n/hu.po | 2 +- addons/account_anglo_saxon/i18n/id.po | 2 +- addons/account_anglo_saxon/i18n/it.po | 2 +- addons/account_anglo_saxon/i18n/ja.po | 2 +- addons/account_anglo_saxon/i18n/lv.po | 2 +- addons/account_anglo_saxon/i18n/mk.po | 2 +- addons/account_anglo_saxon/i18n/mn.po | 2 +- addons/account_anglo_saxon/i18n/nb.po | 2 +- addons/account_anglo_saxon/i18n/nl.po | 2 +- addons/account_anglo_saxon/i18n/nl_BE.po | 2 +- addons/account_anglo_saxon/i18n/oc.po | 2 +- addons/account_anglo_saxon/i18n/pl.po | 2 +- addons/account_anglo_saxon/i18n/pt.po | 2 +- addons/account_anglo_saxon/i18n/pt_BR.po | 4 +- addons/account_anglo_saxon/i18n/ro.po | 2 +- addons/account_anglo_saxon/i18n/ru.po | 2 +- addons/account_anglo_saxon/i18n/sl.po | 2 +- addons/account_anglo_saxon/i18n/sq.po | 2 +- addons/account_anglo_saxon/i18n/sr@latin.po | 2 +- addons/account_anglo_saxon/i18n/sv.po | 2 +- addons/account_anglo_saxon/i18n/ta.po | 2 +- addons/account_anglo_saxon/i18n/tr.po | 2 +- addons/account_anglo_saxon/i18n/zh_CN.po | 2 +- addons/account_anglo_saxon/i18n/zh_TW.po | 2 +- addons/account_asset/i18n/ar.po | 2 +- addons/account_asset/i18n/ca.po | 2 +- addons/account_asset/i18n/cs.po | 2 +- addons/account_asset/i18n/da.po | 2 +- addons/account_asset/i18n/de.po | 2 +- addons/account_asset/i18n/en_GB.po | 2 +- addons/account_asset/i18n/es.po | 2 +- addons/account_asset/i18n/es_AR.po | 2 +- addons/account_asset/i18n/es_CR.po | 2 +- addons/account_asset/i18n/es_EC.po | 2 +- addons/account_asset/i18n/es_MX.po | 2 +- addons/account_asset/i18n/et.po | 2 +- addons/account_asset/i18n/fi.po | 2 +- addons/account_asset/i18n/fr.po | 2 +- addons/account_asset/i18n/gu.po | 2 +- addons/account_asset/i18n/hr.po | 2 +- addons/account_asset/i18n/id.po | 2 +- addons/account_asset/i18n/it.po | 2 +- addons/account_asset/i18n/ja.po | 2 +- addons/account_asset/i18n/ko.po | 741 ++++++++++++++++++ addons/account_asset/i18n/lt.po | 2 +- addons/account_asset/i18n/mk.po | 2 +- addons/account_asset/i18n/mn.po | 2 +- addons/account_asset/i18n/nb.po | 2 +- addons/account_asset/i18n/nl.po | 2 +- addons/account_asset/i18n/nl_BE.po | 2 +- addons/account_asset/i18n/pl.po | 2 +- addons/account_asset/i18n/pt.po | 2 +- addons/account_asset/i18n/pt_BR.po | 2 +- addons/account_asset/i18n/ro.po | 2 +- addons/account_asset/i18n/ru.po | 2 +- addons/account_asset/i18n/sl.po | 2 +- addons/account_asset/i18n/sr@latin.po | 2 +- addons/account_asset/i18n/sv.po | 2 +- addons/account_asset/i18n/tr.po | 2 +- addons/account_asset/i18n/vi.po | 2 +- addons/account_asset/i18n/zh_CN.po | 2 +- addons/account_asset/i18n/zh_TW.po | 2 +- .../i18n/ar.po | 2 +- .../i18n/de.po | 2 +- .../i18n/en_GB.po | 2 +- .../i18n/es.po | 2 +- .../i18n/es_CR.po | 2 +- .../i18n/es_EC.po | 2 +- .../i18n/es_MX.po | 2 +- .../i18n/fi.po | 2 +- .../i18n/fr.po | 2 +- .../i18n/gu.po | 2 +- .../i18n/hr.po | 2 +- .../i18n/it.po | 2 +- .../i18n/ja.po | 2 +- .../i18n/mk.po | 2 +- .../i18n/mn.po | 2 +- .../i18n/nb.po | 2 +- .../i18n/nl.po | 2 +- .../i18n/pl.po | 2 +- .../i18n/pt.po | 2 +- .../i18n/pt_BR.po | 2 +- .../i18n/ro.po | 2 +- .../i18n/sl.po | 2 +- .../i18n/sr@latin.po | 2 +- .../i18n/sv.po | 2 +- .../i18n/tr.po | 2 +- .../i18n/zh_CN.po | 2 +- .../i18n/zh_TW.po | 2 +- addons/account_budget/i18n/ar.po | 2 +- addons/account_budget/i18n/bg.po | 2 +- addons/account_budget/i18n/bs.po | 2 +- addons/account_budget/i18n/ca.po | 2 +- addons/account_budget/i18n/cs.po | 2 +- addons/account_budget/i18n/da.po | 2 +- addons/account_budget/i18n/de.po | 2 +- addons/account_budget/i18n/el.po | 2 +- addons/account_budget/i18n/en_GB.po | 2 +- addons/account_budget/i18n/es.po | 2 +- addons/account_budget/i18n/es_AR.po | 2 +- addons/account_budget/i18n/es_CR.po | 2 +- addons/account_budget/i18n/es_EC.po | 2 +- addons/account_budget/i18n/es_MX.po | 2 +- addons/account_budget/i18n/es_PY.po | 2 +- addons/account_budget/i18n/et.po | 2 +- addons/account_budget/i18n/fa.po | 2 +- addons/account_budget/i18n/fi.po | 2 +- addons/account_budget/i18n/fr.po | 2 +- addons/account_budget/i18n/gl.po | 2 +- addons/account_budget/i18n/gu.po | 2 +- addons/account_budget/i18n/he.po | 2 +- addons/account_budget/i18n/hi.po | 2 +- addons/account_budget/i18n/hr.po | 2 +- addons/account_budget/i18n/hu.po | 2 +- addons/account_budget/i18n/id.po | 2 +- addons/account_budget/i18n/it.po | 2 +- addons/account_budget/i18n/ja.po | 2 +- addons/account_budget/i18n/ko.po | 2 +- addons/account_budget/i18n/lo.po | 2 +- addons/account_budget/i18n/lt.po | 2 +- addons/account_budget/i18n/lv.po | 2 +- addons/account_budget/i18n/mk.po | 2 +- addons/account_budget/i18n/mn.po | 2 +- addons/account_budget/i18n/nb.po | 2 +- addons/account_budget/i18n/nl.po | 2 +- addons/account_budget/i18n/nl_BE.po | 2 +- addons/account_budget/i18n/oc.po | 2 +- addons/account_budget/i18n/pl.po | 2 +- addons/account_budget/i18n/pt.po | 2 +- addons/account_budget/i18n/pt_BR.po | 2 +- addons/account_budget/i18n/ro.po | 2 +- addons/account_budget/i18n/ru.po | 2 +- addons/account_budget/i18n/sl.po | 2 +- addons/account_budget/i18n/sq.po | 2 +- addons/account_budget/i18n/sr.po | 2 +- addons/account_budget/i18n/sr@latin.po | 2 +- addons/account_budget/i18n/sv.po | 2 +- addons/account_budget/i18n/tlh.po | 2 +- addons/account_budget/i18n/tr.po | 2 +- addons/account_budget/i18n/uk.po | 2 +- addons/account_budget/i18n/vi.po | 2 +- addons/account_budget/i18n/zh_CN.po | 2 +- addons/account_budget/i18n/zh_TW.po | 2 +- addons/account_cancel/i18n/ar.po | 2 +- addons/account_cancel/i18n/bg.po | 2 +- addons/account_cancel/i18n/bn.po | 2 +- addons/account_cancel/i18n/br.po | 2 +- addons/account_cancel/i18n/bs.po | 2 +- addons/account_cancel/i18n/ca.po | 2 +- addons/account_cancel/i18n/cs.po | 2 +- addons/account_cancel/i18n/da.po | 2 +- addons/account_cancel/i18n/de.po | 2 +- addons/account_cancel/i18n/el.po | 2 +- addons/account_cancel/i18n/en_GB.po | 2 +- addons/account_cancel/i18n/es.po | 2 +- addons/account_cancel/i18n/es_CL.po | 2 +- addons/account_cancel/i18n/es_CR.po | 2 +- addons/account_cancel/i18n/es_EC.po | 2 +- addons/account_cancel/i18n/es_MX.po | 2 +- addons/account_cancel/i18n/es_PY.po | 2 +- addons/account_cancel/i18n/fa.po | 2 +- addons/account_cancel/i18n/fi.po | 2 +- addons/account_cancel/i18n/fr.po | 2 +- addons/account_cancel/i18n/gl.po | 2 +- addons/account_cancel/i18n/gu.po | 2 +- addons/account_cancel/i18n/hi.po | 2 +- addons/account_cancel/i18n/hr.po | 2 +- addons/account_cancel/i18n/hu.po | 2 +- addons/account_cancel/i18n/id.po | 2 +- addons/account_cancel/i18n/it.po | 2 +- addons/account_cancel/i18n/ja.po | 2 +- addons/account_cancel/i18n/kk.po | 2 +- addons/account_cancel/i18n/lo.po | 2 +- addons/account_cancel/i18n/lt.po | 2 +- addons/account_cancel/i18n/lv.po | 2 +- addons/account_cancel/i18n/mk.po | 2 +- addons/account_cancel/i18n/mn.po | 2 +- addons/account_cancel/i18n/nb.po | 2 +- addons/account_cancel/i18n/nl.po | 2 +- addons/account_cancel/i18n/nl_BE.po | 2 +- addons/account_cancel/i18n/oc.po | 2 +- addons/account_cancel/i18n/pl.po | 2 +- addons/account_cancel/i18n/pt.po | 2 +- addons/account_cancel/i18n/pt_BR.po | 2 +- addons/account_cancel/i18n/ro.po | 2 +- addons/account_cancel/i18n/ru.po | 2 +- addons/account_cancel/i18n/sl.po | 2 +- addons/account_cancel/i18n/sq.po | 2 +- addons/account_cancel/i18n/sr.po | 2 +- addons/account_cancel/i18n/sr@latin.po | 2 +- addons/account_cancel/i18n/sv.po | 2 +- addons/account_cancel/i18n/ta.po | 2 +- addons/account_cancel/i18n/tr.po | 2 +- addons/account_cancel/i18n/vi.po | 2 +- addons/account_cancel/i18n/zh_CN.po | 2 +- addons/account_cancel/i18n/zh_TW.po | 2 +- addons/account_chart/i18n/ar.po | 2 +- addons/account_chart/i18n/bg.po | 2 +- addons/account_chart/i18n/bs.po | 2 +- addons/account_chart/i18n/ca.po | 2 +- addons/account_chart/i18n/cs.po | 2 +- addons/account_chart/i18n/da.po | 2 +- addons/account_chart/i18n/de.po | 2 +- addons/account_chart/i18n/el.po | 2 +- addons/account_chart/i18n/en_GB.po | 2 +- addons/account_chart/i18n/es.po | 2 +- addons/account_chart/i18n/es_AR.po | 2 +- addons/account_chart/i18n/es_CL.po | 2 +- addons/account_chart/i18n/es_CR.po | 2 +- addons/account_chart/i18n/es_EC.po | 2 +- addons/account_chart/i18n/es_MX.po | 2 +- addons/account_chart/i18n/es_PY.po | 2 +- addons/account_chart/i18n/et.po | 2 +- addons/account_chart/i18n/eu.po | 2 +- addons/account_chart/i18n/fa.po | 2 +- addons/account_chart/i18n/fi.po | 2 +- addons/account_chart/i18n/fr.po | 2 +- addons/account_chart/i18n/gl.po | 2 +- addons/account_chart/i18n/gu.po | 2 +- addons/account_chart/i18n/hi.po | 2 +- addons/account_chart/i18n/hr.po | 2 +- addons/account_chart/i18n/hu.po | 2 +- addons/account_chart/i18n/id.po | 2 +- addons/account_chart/i18n/it.po | 2 +- addons/account_chart/i18n/ja.po | 2 +- addons/account_chart/i18n/ko.po | 2 +- addons/account_chart/i18n/lo.po | 2 +- addons/account_chart/i18n/lt.po | 2 +- addons/account_chart/i18n/lv.po | 2 +- addons/account_chart/i18n/mk.po | 2 +- addons/account_chart/i18n/mn.po | 2 +- addons/account_chart/i18n/nb.po | 2 +- addons/account_chart/i18n/nl.po | 2 +- addons/account_chart/i18n/nl_BE.po | 2 +- addons/account_chart/i18n/oc.po | 2 +- addons/account_chart/i18n/pl.po | 2 +- addons/account_chart/i18n/pt.po | 2 +- addons/account_chart/i18n/pt_BR.po | 2 +- addons/account_chart/i18n/ro.po | 2 +- addons/account_chart/i18n/ru.po | 2 +- addons/account_chart/i18n/sk.po | 2 +- addons/account_chart/i18n/sl.po | 2 +- addons/account_chart/i18n/sq.po | 2 +- addons/account_chart/i18n/sr.po | 2 +- addons/account_chart/i18n/sr@latin.po | 2 +- addons/account_chart/i18n/sv.po | 2 +- addons/account_chart/i18n/ta.po | 2 +- addons/account_chart/i18n/th.po | 2 +- addons/account_chart/i18n/tr.po | 2 +- addons/account_chart/i18n/uk.po | 2 +- addons/account_chart/i18n/vi.po | 2 +- addons/account_chart/i18n/zh_CN.po | 2 +- addons/account_chart/i18n/zh_TW.po | 2 +- addons/account_check_writing/i18n/ar.po | 2 +- addons/account_check_writing/i18n/cs.po | 2 +- addons/account_check_writing/i18n/de.po | 2 +- addons/account_check_writing/i18n/en_GB.po | 2 +- addons/account_check_writing/i18n/es.po | 2 +- addons/account_check_writing/i18n/es_CR.po | 2 +- addons/account_check_writing/i18n/es_EC.po | 2 +- addons/account_check_writing/i18n/es_MX.po | 2 +- addons/account_check_writing/i18n/fi.po | 2 +- addons/account_check_writing/i18n/fr.po | 2 +- addons/account_check_writing/i18n/gu.po | 2 +- addons/account_check_writing/i18n/hr.po | 2 +- addons/account_check_writing/i18n/ja.po | 2 +- addons/account_check_writing/i18n/lt.po | 2 +- addons/account_check_writing/i18n/mk.po | 2 +- addons/account_check_writing/i18n/mn.po | 2 +- addons/account_check_writing/i18n/nb.po | 2 +- addons/account_check_writing/i18n/nl.po | 2 +- addons/account_check_writing/i18n/pl.po | 2 +- addons/account_check_writing/i18n/pt.po | 2 +- addons/account_check_writing/i18n/pt_BR.po | 8 +- addons/account_check_writing/i18n/ro.po | 2 +- addons/account_check_writing/i18n/ru.po | 2 +- addons/account_check_writing/i18n/sl.po | 2 +- addons/account_check_writing/i18n/sr@latin.po | 2 +- addons/account_check_writing/i18n/sv.po | 2 +- addons/account_check_writing/i18n/tr.po | 2 +- addons/account_check_writing/i18n/zh_CN.po | 2 +- addons/account_check_writing/i18n/zh_TW.po | 2 +- addons/account_followup/i18n/ar.po | 2 +- addons/account_followup/i18n/bg.po | 2 +- addons/account_followup/i18n/bs.po | 2 +- addons/account_followup/i18n/ca.po | 2 +- addons/account_followup/i18n/cs.po | 2 +- addons/account_followup/i18n/da.po | 2 +- addons/account_followup/i18n/de.po | 2 +- addons/account_followup/i18n/el.po | 2 +- addons/account_followup/i18n/en_GB.po | 2 +- addons/account_followup/i18n/es.po | 2 +- addons/account_followup/i18n/es_AR.po | 2 +- addons/account_followup/i18n/es_CR.po | 2 +- addons/account_followup/i18n/es_EC.po | 2 +- addons/account_followup/i18n/es_PY.po | 2 +- addons/account_followup/i18n/et.po | 2 +- addons/account_followup/i18n/fa.po | 2 +- addons/account_followup/i18n/fi.po | 2 +- addons/account_followup/i18n/fr.po | 2 +- addons/account_followup/i18n/gl.po | 2 +- addons/account_followup/i18n/hr.po | 2 +- addons/account_followup/i18n/hu.po | 2 +- addons/account_followup/i18n/id.po | 2 +- addons/account_followup/i18n/it.po | 2 +- addons/account_followup/i18n/ja.po | 2 +- addons/account_followup/i18n/ko.po | 2 +- addons/account_followup/i18n/lt.po | 2 +- addons/account_followup/i18n/mk.po | 2 +- addons/account_followup/i18n/mn.po | 2 +- addons/account_followup/i18n/nb.po | 2 +- addons/account_followup/i18n/nl.po | 4 +- addons/account_followup/i18n/nl_BE.po | 2 +- addons/account_followup/i18n/oc.po | 2 +- addons/account_followup/i18n/pl.po | 2 +- addons/account_followup/i18n/pt.po | 2 +- addons/account_followup/i18n/pt_BR.po | 2 +- addons/account_followup/i18n/ro.po | 2 +- addons/account_followup/i18n/ru.po | 2 +- addons/account_followup/i18n/sl.po | 2 +- addons/account_followup/i18n/sq.po | 2 +- addons/account_followup/i18n/sr.po | 2 +- addons/account_followup/i18n/sr@latin.po | 2 +- addons/account_followup/i18n/sv.po | 2 +- addons/account_followup/i18n/tlh.po | 2 +- addons/account_followup/i18n/tr.po | 2 +- addons/account_followup/i18n/uk.po | 2 +- addons/account_followup/i18n/vi.po | 2 +- addons/account_followup/i18n/zh_CN.po | 2 +- addons/account_followup/i18n/zh_TW.po | 2 +- addons/account_payment/i18n/am.po | 2 +- addons/account_payment/i18n/ar.po | 2 +- addons/account_payment/i18n/bg.po | 2 +- addons/account_payment/i18n/bs.po | 2 +- addons/account_payment/i18n/ca.po | 2 +- addons/account_payment/i18n/cs.po | 2 +- addons/account_payment/i18n/da.po | 2 +- addons/account_payment/i18n/de.po | 2 +- addons/account_payment/i18n/el.po | 2 +- addons/account_payment/i18n/en_GB.po | 2 +- addons/account_payment/i18n/es.po | 2 +- addons/account_payment/i18n/es_AR.po | 2 +- addons/account_payment/i18n/es_CL.po | 2 +- addons/account_payment/i18n/es_CR.po | 2 +- addons/account_payment/i18n/es_EC.po | 2 +- addons/account_payment/i18n/es_PY.po | 2 +- addons/account_payment/i18n/et.po | 2 +- addons/account_payment/i18n/fa.po | 2 +- addons/account_payment/i18n/fi.po | 2 +- addons/account_payment/i18n/fr.po | 2 +- addons/account_payment/i18n/gl.po | 2 +- addons/account_payment/i18n/hi.po | 2 +- addons/account_payment/i18n/hr.po | 2 +- addons/account_payment/i18n/hu.po | 2 +- addons/account_payment/i18n/id.po | 2 +- addons/account_payment/i18n/it.po | 2 +- addons/account_payment/i18n/ja.po | 2 +- addons/account_payment/i18n/ko.po | 2 +- addons/account_payment/i18n/lt.po | 2 +- addons/account_payment/i18n/lv.po | 2 +- addons/account_payment/i18n/mk.po | 2 +- addons/account_payment/i18n/mn.po | 2 +- addons/account_payment/i18n/nb.po | 2 +- addons/account_payment/i18n/nl.po | 2 +- addons/account_payment/i18n/nl_BE.po | 2 +- addons/account_payment/i18n/oc.po | 2 +- addons/account_payment/i18n/pl.po | 2 +- addons/account_payment/i18n/pt.po | 2 +- addons/account_payment/i18n/pt_BR.po | 2 +- addons/account_payment/i18n/ro.po | 2 +- addons/account_payment/i18n/ru.po | 2 +- addons/account_payment/i18n/sl.po | 2 +- addons/account_payment/i18n/sq.po | 2 +- addons/account_payment/i18n/sr.po | 2 +- addons/account_payment/i18n/sr@latin.po | 2 +- addons/account_payment/i18n/sv.po | 2 +- addons/account_payment/i18n/tlh.po | 2 +- addons/account_payment/i18n/tr.po | 2 +- addons/account_payment/i18n/uk.po | 2 +- addons/account_payment/i18n/vi.po | 2 +- addons/account_payment/i18n/zh_CN.po | 2 +- addons/account_payment/i18n/zh_TW.po | 2 +- addons/account_sequence/i18n/ar.po | 2 +- addons/account_sequence/i18n/bg.po | 2 +- addons/account_sequence/i18n/ca.po | 2 +- addons/account_sequence/i18n/da.po | 2 +- addons/account_sequence/i18n/de.po | 2 +- addons/account_sequence/i18n/el.po | 2 +- addons/account_sequence/i18n/en_GB.po | 2 +- addons/account_sequence/i18n/es.po | 2 +- addons/account_sequence/i18n/es_CR.po | 2 +- addons/account_sequence/i18n/es_EC.po | 2 +- addons/account_sequence/i18n/es_PY.po | 2 +- addons/account_sequence/i18n/fa.po | 2 +- addons/account_sequence/i18n/fr.po | 2 +- addons/account_sequence/i18n/gl.po | 2 +- addons/account_sequence/i18n/hr.po | 2 +- addons/account_sequence/i18n/hu.po | 2 +- addons/account_sequence/i18n/id.po | 2 +- addons/account_sequence/i18n/it.po | 2 +- addons/account_sequence/i18n/ja.po | 2 +- addons/account_sequence/i18n/lv.po | 2 +- addons/account_sequence/i18n/mk.po | 2 +- addons/account_sequence/i18n/mn.po | 2 +- addons/account_sequence/i18n/nb.po | 2 +- addons/account_sequence/i18n/nl.po | 2 +- addons/account_sequence/i18n/nl_BE.po | 2 +- addons/account_sequence/i18n/pl.po | 2 +- addons/account_sequence/i18n/pt.po | 2 +- addons/account_sequence/i18n/pt_BR.po | 2 +- addons/account_sequence/i18n/ro.po | 2 +- addons/account_sequence/i18n/ru.po | 2 +- addons/account_sequence/i18n/sl.po | 2 +- addons/account_sequence/i18n/sq.po | 2 +- addons/account_sequence/i18n/sr@latin.po | 2 +- addons/account_sequence/i18n/sv.po | 2 +- addons/account_sequence/i18n/tr.po | 2 +- addons/account_sequence/i18n/vi.po | 2 +- addons/account_sequence/i18n/zh_CN.po | 2 +- addons/account_sequence/i18n/zh_TW.po | 2 +- addons/account_test/i18n/ar.po | 2 +- addons/account_test/i18n/en_GB.po | 2 +- addons/account_test/i18n/es.po | 2 +- addons/account_test/i18n/fr.po | 2 +- addons/account_test/i18n/hr.po | 2 +- addons/account_test/i18n/it.po | 2 +- addons/account_test/i18n/mk.po | 2 +- addons/account_test/i18n/mn.po | 2 +- addons/account_test/i18n/nb.po | 2 +- addons/account_test/i18n/nl.po | 2 +- addons/account_test/i18n/pt.po | 2 +- addons/account_test/i18n/pt_BR.po | 2 +- addons/account_test/i18n/ro.po | 2 +- addons/account_test/i18n/sl.po | 2 +- addons/account_test/i18n/tr.po | 2 +- addons/account_voucher/i18n/ar.po | 2 +- addons/account_voucher/i18n/bg.po | 2 +- addons/account_voucher/i18n/bs.po | 2 +- addons/account_voucher/i18n/ca.po | 2 +- addons/account_voucher/i18n/cs.po | 2 +- addons/account_voucher/i18n/da.po | 2 +- addons/account_voucher/i18n/de.po | 2 +- addons/account_voucher/i18n/el.po | 2 +- addons/account_voucher/i18n/en_GB.po | 2 +- addons/account_voucher/i18n/es.po | 2 +- addons/account_voucher/i18n/es_AR.po | 2 +- addons/account_voucher/i18n/es_CR.po | 2 +- addons/account_voucher/i18n/es_EC.po | 2 +- addons/account_voucher/i18n/es_PY.po | 2 +- addons/account_voucher/i18n/et.po | 2 +- addons/account_voucher/i18n/fa.po | 2 +- addons/account_voucher/i18n/fr.po | 2 +- addons/account_voucher/i18n/gl.po | 2 +- addons/account_voucher/i18n/gu.po | 2 +- addons/account_voucher/i18n/hi.po | 2 +- addons/account_voucher/i18n/hr.po | 2 +- addons/account_voucher/i18n/hu.po | 2 +- addons/account_voucher/i18n/id.po | 2 +- addons/account_voucher/i18n/it.po | 2 +- addons/account_voucher/i18n/ja.po | 2 +- addons/account_voucher/i18n/ko.po | 2 +- addons/account_voucher/i18n/lt.po | 2 +- addons/account_voucher/i18n/mk.po | 2 +- addons/account_voucher/i18n/mn.po | 2 +- addons/account_voucher/i18n/nb.po | 2 +- addons/account_voucher/i18n/nl.po | 6 +- addons/account_voucher/i18n/nl_BE.po | 2 +- addons/account_voucher/i18n/oc.po | 2 +- addons/account_voucher/i18n/pl.po | 2 +- addons/account_voucher/i18n/pt.po | 2 +- addons/account_voucher/i18n/pt_BR.po | 2 +- addons/account_voucher/i18n/ro.po | 2 +- addons/account_voucher/i18n/ru.po | 2 +- addons/account_voucher/i18n/sl.po | 2 +- addons/account_voucher/i18n/sq.po | 2 +- addons/account_voucher/i18n/sr.po | 2 +- addons/account_voucher/i18n/sr@latin.po | 2 +- addons/account_voucher/i18n/sv.po | 2 +- addons/account_voucher/i18n/tlh.po | 2 +- addons/account_voucher/i18n/tr.po | 2 +- addons/account_voucher/i18n/uk.po | 2 +- addons/account_voucher/i18n/vi.po | 2 +- addons/account_voucher/i18n/zh_CN.po | 2 +- addons/account_voucher/i18n/zh_TW.po | 2 +- addons/analytic/i18n/ar.po | 2 +- addons/analytic/i18n/bg.po | 2 +- addons/analytic/i18n/bs.po | 2 +- addons/analytic/i18n/ca.po | 2 +- addons/analytic/i18n/cs.po | 2 +- addons/analytic/i18n/da.po | 2 +- addons/analytic/i18n/de.po | 2 +- addons/analytic/i18n/el.po | 2 +- addons/analytic/i18n/en_GB.po | 2 +- addons/analytic/i18n/es.po | 2 +- addons/analytic/i18n/es_CR.po | 2 +- addons/analytic/i18n/es_EC.po | 2 +- addons/analytic/i18n/es_PY.po | 2 +- addons/analytic/i18n/et.po | 2 +- addons/analytic/i18n/fa.po | 2 +- addons/analytic/i18n/fi.po | 2 +- addons/analytic/i18n/fr.po | 2 +- addons/analytic/i18n/gl.po | 2 +- addons/analytic/i18n/hr.po | 2 +- addons/analytic/i18n/hu.po | 2 +- addons/analytic/i18n/it.po | 2 +- addons/analytic/i18n/ja.po | 2 +- addons/analytic/i18n/lv.po | 2 +- addons/analytic/i18n/mk.po | 2 +- addons/analytic/i18n/mn.po | 2 +- addons/analytic/i18n/nb.po | 2 +- addons/analytic/i18n/nl.po | 2 +- addons/analytic/i18n/nl_BE.po | 2 +- addons/analytic/i18n/pl.po | 2 +- addons/analytic/i18n/pt.po | 2 +- addons/analytic/i18n/pt_BR.po | 26 +- addons/analytic/i18n/ro.po | 2 +- addons/analytic/i18n/ru.po | 2 +- addons/analytic/i18n/sl.po | 2 +- addons/analytic/i18n/sq.po | 2 +- addons/analytic/i18n/sr.po | 2 +- addons/analytic/i18n/sr@latin.po | 2 +- addons/analytic/i18n/sv.po | 2 +- addons/analytic/i18n/tr.po | 2 +- addons/analytic/i18n/vi.po | 2 +- addons/analytic/i18n/zh_CN.po | 2 +- addons/analytic/i18n/zh_TW.po | 2 +- .../analytic_contract_hr_expense/i18n/ar.po | 2 +- .../analytic_contract_hr_expense/i18n/de.po | 2 +- .../i18n/en_GB.po | 2 +- .../analytic_contract_hr_expense/i18n/es.po | 2 +- .../analytic_contract_hr_expense/i18n/fr.po | 2 +- .../analytic_contract_hr_expense/i18n/hr.po | 2 +- .../analytic_contract_hr_expense/i18n/it.po | 2 +- .../analytic_contract_hr_expense/i18n/mk.po | 2 +- .../analytic_contract_hr_expense/i18n/mn.po | 2 +- .../analytic_contract_hr_expense/i18n/nb.po | 2 +- .../analytic_contract_hr_expense/i18n/nl.po | 2 +- .../analytic_contract_hr_expense/i18n/pl.po | 2 +- .../analytic_contract_hr_expense/i18n/pt.po | 2 +- .../i18n/pt_BR.po | 2 +- .../analytic_contract_hr_expense/i18n/ro.po | 2 +- .../analytic_contract_hr_expense/i18n/sl.po | 2 +- .../analytic_contract_hr_expense/i18n/tr.po | 2 +- .../i18n/zh_CN.po | 2 +- addons/analytic_user_function/i18n/ar.po | 2 +- addons/analytic_user_function/i18n/bg.po | 2 +- addons/analytic_user_function/i18n/bs.po | 2 +- addons/analytic_user_function/i18n/ca.po | 2 +- addons/analytic_user_function/i18n/cs.po | 2 +- addons/analytic_user_function/i18n/da.po | 2 +- addons/analytic_user_function/i18n/de.po | 2 +- addons/analytic_user_function/i18n/el.po | 2 +- addons/analytic_user_function/i18n/en_GB.po | 2 +- addons/analytic_user_function/i18n/es.po | 2 +- addons/analytic_user_function/i18n/es_AR.po | 2 +- addons/analytic_user_function/i18n/es_CR.po | 2 +- addons/analytic_user_function/i18n/es_EC.po | 2 +- addons/analytic_user_function/i18n/es_PY.po | 2 +- addons/analytic_user_function/i18n/et.po | 2 +- addons/analytic_user_function/i18n/fa.po | 2 +- addons/analytic_user_function/i18n/fi.po | 2 +- addons/analytic_user_function/i18n/fr.po | 2 +- addons/analytic_user_function/i18n/gl.po | 2 +- addons/analytic_user_function/i18n/gu.po | 2 +- addons/analytic_user_function/i18n/hr.po | 2 +- addons/analytic_user_function/i18n/hu.po | 2 +- addons/analytic_user_function/i18n/id.po | 2 +- addons/analytic_user_function/i18n/it.po | 2 +- addons/analytic_user_function/i18n/ja.po | 2 +- addons/analytic_user_function/i18n/ko.po | 2 +- addons/analytic_user_function/i18n/lt.po | 2 +- addons/analytic_user_function/i18n/mk.po | 2 +- addons/analytic_user_function/i18n/mn.po | 2 +- addons/analytic_user_function/i18n/nb.po | 2 +- addons/analytic_user_function/i18n/nl.po | 2 +- addons/analytic_user_function/i18n/nl_BE.po | 2 +- addons/analytic_user_function/i18n/oc.po | 2 +- addons/analytic_user_function/i18n/pl.po | 2 +- addons/analytic_user_function/i18n/pt.po | 2 +- addons/analytic_user_function/i18n/pt_BR.po | 19 +- addons/analytic_user_function/i18n/ro.po | 2 +- addons/analytic_user_function/i18n/ru.po | 2 +- addons/analytic_user_function/i18n/sk.po | 2 +- addons/analytic_user_function/i18n/sl.po | 2 +- addons/analytic_user_function/i18n/sq.po | 2 +- addons/analytic_user_function/i18n/sr.po | 2 +- .../analytic_user_function/i18n/sr@latin.po | 2 +- addons/analytic_user_function/i18n/sv.po | 2 +- addons/analytic_user_function/i18n/tlh.po | 2 +- addons/analytic_user_function/i18n/tr.po | 2 +- addons/analytic_user_function/i18n/uk.po | 2 +- addons/analytic_user_function/i18n/vi.po | 2 +- addons/analytic_user_function/i18n/zh_CN.po | 2 +- addons/analytic_user_function/i18n/zh_TW.po | 2 +- addons/anonymization/i18n/ar.po | 2 +- addons/anonymization/i18n/bg.po | 2 +- addons/anonymization/i18n/ca.po | 2 +- addons/anonymization/i18n/da.po | 2 +- addons/anonymization/i18n/de.po | 2 +- addons/anonymization/i18n/en_GB.po | 2 +- addons/anonymization/i18n/es.po | 2 +- addons/anonymization/i18n/es_CR.po | 2 +- addons/anonymization/i18n/es_EC.po | 2 +- addons/anonymization/i18n/es_PY.po | 2 +- addons/anonymization/i18n/et.po | 2 +- addons/anonymization/i18n/fa.po | 2 +- addons/anonymization/i18n/fi.po | 2 +- addons/anonymization/i18n/fr.po | 2 +- addons/anonymization/i18n/gl.po | 2 +- addons/anonymization/i18n/hr.po | 2 +- addons/anonymization/i18n/it.po | 2 +- addons/anonymization/i18n/ja.po | 2 +- addons/anonymization/i18n/lv.po | 2 +- addons/anonymization/i18n/mk.po | 2 +- addons/anonymization/i18n/mn.po | 2 +- addons/anonymization/i18n/nb.po | 2 +- addons/anonymization/i18n/nl.po | 2 +- addons/anonymization/i18n/pl.po | 2 +- addons/anonymization/i18n/pt.po | 2 +- addons/anonymization/i18n/pt_BR.po | 2 +- addons/anonymization/i18n/ro.po | 2 +- addons/anonymization/i18n/ru.po | 2 +- addons/anonymization/i18n/sl.po | 2 +- addons/anonymization/i18n/sq.po | 2 +- addons/anonymization/i18n/sr@latin.po | 2 +- addons/anonymization/i18n/sv.po | 2 +- addons/anonymization/i18n/tr.po | 2 +- addons/anonymization/i18n/zh_CN.po | 2 +- addons/anonymization/i18n/zh_TW.po | 2 +- addons/association/i18n/ar.po | 2 +- addons/association/i18n/bg.po | 2 +- addons/association/i18n/bs.po | 2 +- addons/association/i18n/ca.po | 2 +- addons/association/i18n/cs.po | 2 +- addons/association/i18n/da.po | 2 +- addons/association/i18n/de.po | 2 +- addons/association/i18n/el.po | 2 +- addons/association/i18n/en_GB.po | 2 +- addons/association/i18n/es.po | 2 +- addons/association/i18n/es_CR.po | 2 +- addons/association/i18n/es_EC.po | 2 +- addons/association/i18n/es_PY.po | 2 +- addons/association/i18n/et.po | 2 +- addons/association/i18n/fa.po | 2 +- addons/association/i18n/fi.po | 2 +- addons/association/i18n/fr.po | 2 +- addons/association/i18n/gl.po | 2 +- addons/association/i18n/gu.po | 2 +- addons/association/i18n/hr.po | 2 +- addons/association/i18n/hu.po | 2 +- addons/association/i18n/id.po | 2 +- addons/association/i18n/it.po | 2 +- addons/association/i18n/ja.po | 2 +- addons/association/i18n/ko.po | 2 +- addons/association/i18n/lo.po | 2 +- addons/association/i18n/lt.po | 2 +- addons/association/i18n/lv.po | 2 +- addons/association/i18n/mk.po | 2 +- addons/association/i18n/mn.po | 2 +- addons/association/i18n/nb.po | 2 +- addons/association/i18n/nl.po | 2 +- addons/association/i18n/pl.po | 2 +- addons/association/i18n/pt.po | 2 +- addons/association/i18n/pt_BR.po | 2 +- addons/association/i18n/ro.po | 2 +- addons/association/i18n/ru.po | 2 +- addons/association/i18n/sl.po | 2 +- addons/association/i18n/sq.po | 2 +- addons/association/i18n/sr.po | 2 +- addons/association/i18n/sr@latin.po | 2 +- addons/association/i18n/sv.po | 2 +- addons/association/i18n/tlh.po | 2 +- addons/association/i18n/tr.po | 2 +- addons/association/i18n/uk.po | 2 +- addons/association/i18n/vi.po | 2 +- addons/association/i18n/zh_CN.po | 2 +- addons/association/i18n/zh_TW.po | 2 +- addons/audittrail/i18n/ar.po | 2 +- addons/audittrail/i18n/bg.po | 2 +- addons/audittrail/i18n/bs.po | 2 +- addons/audittrail/i18n/ca.po | 2 +- addons/audittrail/i18n/cs.po | 2 +- addons/audittrail/i18n/da.po | 2 +- addons/audittrail/i18n/de.po | 2 +- addons/audittrail/i18n/el.po | 2 +- addons/audittrail/i18n/es.po | 2 +- addons/audittrail/i18n/es_AR.po | 2 +- addons/audittrail/i18n/es_CR.po | 2 +- addons/audittrail/i18n/es_EC.po | 2 +- addons/audittrail/i18n/es_PY.po | 2 +- addons/audittrail/i18n/et.po | 2 +- addons/audittrail/i18n/fa.po | 2 +- addons/audittrail/i18n/fa_AF.po | 2 +- addons/audittrail/i18n/fi.po | 2 +- addons/audittrail/i18n/fr.po | 2 +- addons/audittrail/i18n/gl.po | 2 +- addons/audittrail/i18n/gu.po | 2 +- addons/audittrail/i18n/hr.po | 2 +- addons/audittrail/i18n/hu.po | 2 +- addons/audittrail/i18n/id.po | 2 +- addons/audittrail/i18n/it.po | 2 +- addons/audittrail/i18n/ja.po | 2 +- addons/audittrail/i18n/ko.po | 2 +- addons/audittrail/i18n/lt.po | 2 +- addons/audittrail/i18n/lv.po | 2 +- addons/audittrail/i18n/mk.po | 2 +- addons/audittrail/i18n/mn.po | 2 +- addons/audittrail/i18n/nb.po | 2 +- addons/audittrail/i18n/nl.po | 2 +- addons/audittrail/i18n/nl_BE.po | 2 +- addons/audittrail/i18n/oc.po | 2 +- addons/audittrail/i18n/pl.po | 2 +- addons/audittrail/i18n/pt.po | 2 +- addons/audittrail/i18n/pt_BR.po | 2 +- addons/audittrail/i18n/ro.po | 2 +- addons/audittrail/i18n/ru.po | 2 +- addons/audittrail/i18n/sl.po | 2 +- addons/audittrail/i18n/sq.po | 2 +- addons/audittrail/i18n/sr@latin.po | 2 +- addons/audittrail/i18n/sv.po | 2 +- addons/audittrail/i18n/tlh.po | 2 +- addons/audittrail/i18n/tr.po | 2 +- addons/audittrail/i18n/uk.po | 2 +- addons/audittrail/i18n/vi.po | 2 +- addons/audittrail/i18n/zh_CN.po | 2 +- addons/audittrail/i18n/zh_TW.po | 2 +- addons/auth_crypt/i18n/ar.po | 2 +- addons/auth_crypt/i18n/de.po | 2 +- addons/auth_crypt/i18n/en_GB.po | 2 +- addons/auth_crypt/i18n/es.po | 2 +- addons/auth_crypt/i18n/fr.po | 2 +- addons/auth_crypt/i18n/hr.po | 2 +- addons/auth_crypt/i18n/it.po | 2 +- addons/auth_crypt/i18n/mk.po | 2 +- addons/auth_crypt/i18n/mn.po | 2 +- addons/auth_crypt/i18n/nl.po | 2 +- addons/auth_crypt/i18n/pt.po | 2 +- addons/auth_crypt/i18n/pt_BR.po | 2 +- addons/auth_crypt/i18n/ro.po | 2 +- addons/auth_crypt/i18n/ru.po | 2 +- addons/auth_crypt/i18n/sl.po | 2 +- addons/auth_crypt/i18n/sv.po | 2 +- addons/auth_crypt/i18n/tr.po | 2 +- addons/auth_crypt/i18n/zh_CN.po | 2 +- addons/auth_ldap/i18n/ar.po | 2 +- addons/auth_ldap/i18n/bg.po | 2 +- addons/auth_ldap/i18n/ca.po | 2 +- addons/auth_ldap/i18n/da.po | 2 +- addons/auth_ldap/i18n/de.po | 2 +- addons/auth_ldap/i18n/en_GB.po | 2 +- addons/auth_ldap/i18n/es.po | 2 +- addons/auth_ldap/i18n/es_CR.po | 2 +- addons/auth_ldap/i18n/fi.po | 2 +- addons/auth_ldap/i18n/fr.po | 2 +- addons/auth_ldap/i18n/gl.po | 2 +- addons/auth_ldap/i18n/hr.po | 2 +- addons/auth_ldap/i18n/hu.po | 2 +- addons/auth_ldap/i18n/it.po | 2 +- addons/auth_ldap/i18n/ja.po | 2 +- addons/auth_ldap/i18n/mk.po | 2 +- addons/auth_ldap/i18n/mn.po | 2 +- addons/auth_ldap/i18n/nb.po | 2 +- addons/auth_ldap/i18n/nl.po | 2 +- addons/auth_ldap/i18n/pl.po | 2 +- addons/auth_ldap/i18n/pt.po | 2 +- addons/auth_ldap/i18n/pt_BR.po | 2 +- addons/auth_ldap/i18n/ro.po | 2 +- addons/auth_ldap/i18n/ru.po | 2 +- addons/auth_ldap/i18n/sl.po | 2 +- addons/auth_ldap/i18n/sv.po | 2 +- addons/auth_ldap/i18n/tr.po | 2 +- addons/auth_ldap/i18n/zh_CN.po | 2 +- addons/auth_oauth/i18n/ar.po | 2 +- addons/auth_oauth/i18n/de.po | 2 +- addons/auth_oauth/i18n/en_GB.po | 2 +- addons/auth_oauth/i18n/es.po | 2 +- addons/auth_oauth/i18n/fr.po | 2 +- addons/auth_oauth/i18n/hr.po | 2 +- addons/auth_oauth/i18n/it.po | 2 +- addons/auth_oauth/i18n/mk.po | 2 +- addons/auth_oauth/i18n/nb.po | 2 +- addons/auth_oauth/i18n/nl.po | 2 +- addons/auth_oauth/i18n/pl.po | 2 +- addons/auth_oauth/i18n/pt.po | 2 +- addons/auth_oauth/i18n/pt_BR.po | 2 +- addons/auth_oauth/i18n/ro.po | 2 +- addons/auth_oauth/i18n/sl.po | 2 +- addons/auth_oauth/i18n/sv.po | 2 +- addons/auth_oauth/i18n/zh_CN.po | 2 +- addons/auth_oauth_signup/i18n/de.po | 2 +- addons/auth_oauth_signup/i18n/en_GB.po | 2 +- addons/auth_oauth_signup/i18n/es.po | 2 +- addons/auth_oauth_signup/i18n/fr.po | 2 +- addons/auth_oauth_signup/i18n/hr.po | 2 +- addons/auth_oauth_signup/i18n/it.po | 2 +- addons/auth_oauth_signup/i18n/mk.po | 2 +- addons/auth_oauth_signup/i18n/mn.po | 2 +- addons/auth_oauth_signup/i18n/nl.po | 2 +- addons/auth_oauth_signup/i18n/pt.po | 2 +- addons/auth_oauth_signup/i18n/pt_BR.po | 2 +- addons/auth_oauth_signup/i18n/ro.po | 2 +- addons/auth_oauth_signup/i18n/ru.po | 2 +- addons/auth_oauth_signup/i18n/sl.po | 2 +- addons/auth_oauth_signup/i18n/sv.po | 2 +- addons/auth_oauth_signup/i18n/tr.po | 2 +- addons/auth_oauth_signup/i18n/zh_CN.po | 2 +- addons/auth_oauth_signup/i18n/zh_TW.po | 2 +- addons/auth_openid/i18n/ar.po | 2 +- addons/auth_openid/i18n/de.po | 2 +- addons/auth_openid/i18n/en_GB.po | 2 +- addons/auth_openid/i18n/es.po | 2 +- addons/auth_openid/i18n/es_CR.po | 2 +- addons/auth_openid/i18n/fi.po | 2 +- addons/auth_openid/i18n/fr.po | 2 +- addons/auth_openid/i18n/gu.po | 2 +- addons/auth_openid/i18n/hr.po | 2 +- addons/auth_openid/i18n/it.po | 2 +- addons/auth_openid/i18n/ja.po | 2 +- addons/auth_openid/i18n/mk.po | 2 +- addons/auth_openid/i18n/mn.po | 2 +- addons/auth_openid/i18n/nb.po | 2 +- addons/auth_openid/i18n/nl.po | 2 +- addons/auth_openid/i18n/pl.po | 2 +- addons/auth_openid/i18n/pt.po | 2 +- addons/auth_openid/i18n/pt_BR.po | 2 +- addons/auth_openid/i18n/ro.po | 2 +- addons/auth_openid/i18n/sk.po | 2 +- addons/auth_openid/i18n/sl.po | 2 +- addons/auth_openid/i18n/sr@latin.po | 2 +- addons/auth_openid/i18n/sv.po | 2 +- addons/auth_openid/i18n/tr.po | 2 +- addons/auth_openid/i18n/zh_CN.po | 2 +- addons/auth_signup/i18n/ar.po | 2 +- addons/auth_signup/i18n/de.po | 2 +- addons/auth_signup/i18n/en_GB.po | 2 +- addons/auth_signup/i18n/es.po | 2 +- addons/auth_signup/i18n/fr.po | 2 +- addons/auth_signup/i18n/hr.po | 2 +- addons/auth_signup/i18n/hu.po | 2 +- addons/auth_signup/i18n/it.po | 2 +- addons/auth_signup/i18n/mk.po | 2 +- addons/auth_signup/i18n/mn.po | 2 +- addons/auth_signup/i18n/nb.po | 2 +- addons/auth_signup/i18n/nl.po | 2 +- addons/auth_signup/i18n/pl.po | 2 +- addons/auth_signup/i18n/pt.po | 2 +- addons/auth_signup/i18n/pt_BR.po | 2 +- addons/auth_signup/i18n/ro.po | 2 +- addons/auth_signup/i18n/ru.po | 2 +- addons/auth_signup/i18n/sl.po | 2 +- addons/auth_signup/i18n/tr.po | 2 +- addons/auth_signup/i18n/zh_CN.po | 2 +- addons/base_action_rule/i18n/ar.po | 2 +- addons/base_action_rule/i18n/bg.po | 2 +- addons/base_action_rule/i18n/bs.po | 2 +- addons/base_action_rule/i18n/ca.po | 2 +- addons/base_action_rule/i18n/cs.po | 2 +- addons/base_action_rule/i18n/da.po | 2 +- addons/base_action_rule/i18n/de.po | 2 +- addons/base_action_rule/i18n/el.po | 2 +- addons/base_action_rule/i18n/es.po | 2 +- addons/base_action_rule/i18n/es_CR.po | 2 +- addons/base_action_rule/i18n/es_EC.po | 2 +- addons/base_action_rule/i18n/es_PY.po | 2 +- addons/base_action_rule/i18n/fa.po | 2 +- addons/base_action_rule/i18n/fi.po | 2 +- addons/base_action_rule/i18n/fr.po | 2 +- addons/base_action_rule/i18n/gl.po | 2 +- addons/base_action_rule/i18n/gu.po | 2 +- addons/base_action_rule/i18n/hr.po | 2 +- addons/base_action_rule/i18n/hu.po | 2 +- addons/base_action_rule/i18n/it.po | 2 +- addons/base_action_rule/i18n/ja.po | 2 +- addons/base_action_rule/i18n/lt.po | 2 +- addons/base_action_rule/i18n/lv.po | 2 +- addons/base_action_rule/i18n/mk.po | 2 +- addons/base_action_rule/i18n/mn.po | 2 +- addons/base_action_rule/i18n/nb.po | 2 +- addons/base_action_rule/i18n/nl.po | 2 +- addons/base_action_rule/i18n/pl.po | 2 +- addons/base_action_rule/i18n/pt.po | 2 +- addons/base_action_rule/i18n/pt_BR.po | 2 +- addons/base_action_rule/i18n/ro.po | 2 +- addons/base_action_rule/i18n/ru.po | 2 +- addons/base_action_rule/i18n/sl.po | 2 +- addons/base_action_rule/i18n/sq.po | 2 +- addons/base_action_rule/i18n/sr.po | 2 +- addons/base_action_rule/i18n/sr@latin.po | 2 +- addons/base_action_rule/i18n/sv.po | 2 +- addons/base_action_rule/i18n/tr.po | 2 +- addons/base_action_rule/i18n/zh_CN.po | 2 +- addons/base_action_rule/i18n/zh_TW.po | 2 +- addons/base_calendar/i18n/af.po | 2 +- addons/base_calendar/i18n/ar.po | 2 +- addons/base_calendar/i18n/bg.po | 2 +- addons/base_calendar/i18n/bn.po | 2 +- addons/base_calendar/i18n/bs.po | 2 +- addons/base_calendar/i18n/ca.po | 2 +- addons/base_calendar/i18n/cs.po | 2 +- addons/base_calendar/i18n/da.po | 2 +- addons/base_calendar/i18n/de.po | 2 +- addons/base_calendar/i18n/el.po | 2 +- addons/base_calendar/i18n/es.po | 2 +- addons/base_calendar/i18n/es_CR.po | 2 +- addons/base_calendar/i18n/es_EC.po | 2 +- addons/base_calendar/i18n/es_PY.po | 2 +- addons/base_calendar/i18n/et.po | 2 +- addons/base_calendar/i18n/fa.po | 2 +- addons/base_calendar/i18n/fi.po | 2 +- addons/base_calendar/i18n/fr.po | 2 +- addons/base_calendar/i18n/gl.po | 2 +- addons/base_calendar/i18n/hr.po | 2 +- addons/base_calendar/i18n/hu.po | 159 ++-- addons/base_calendar/i18n/id.po | 2 +- addons/base_calendar/i18n/it.po | 2 +- addons/base_calendar/i18n/ja.po | 2 +- addons/base_calendar/i18n/ln.po | 2 +- addons/base_calendar/i18n/lt.po | 2 +- addons/base_calendar/i18n/lv.po | 2 +- addons/base_calendar/i18n/mk.po | 2 +- addons/base_calendar/i18n/mn.po | 2 +- addons/base_calendar/i18n/nb.po | 2 +- addons/base_calendar/i18n/nl.po | 2 +- addons/base_calendar/i18n/pl.po | 2 +- addons/base_calendar/i18n/pt.po | 2 +- addons/base_calendar/i18n/pt_BR.po | 2 +- addons/base_calendar/i18n/ro.po | 2 +- addons/base_calendar/i18n/ru.po | 2 +- addons/base_calendar/i18n/sk.po | 2 +- addons/base_calendar/i18n/sl.po | 2 +- addons/base_calendar/i18n/sq.po | 2 +- addons/base_calendar/i18n/sr.po | 2 +- addons/base_calendar/i18n/sr@latin.po | 2 +- addons/base_calendar/i18n/sv.po | 2 +- addons/base_calendar/i18n/th.po | 2 +- addons/base_calendar/i18n/tr.po | 2 +- addons/base_calendar/i18n/zh_CN.po | 2 +- addons/base_calendar/i18n/zh_TW.po | 2 +- addons/base_crypt/i18n/ar.po | 2 +- addons/base_crypt/i18n/bg.po | 2 +- addons/base_crypt/i18n/ca.po | 2 +- addons/base_crypt/i18n/cs.po | 2 +- addons/base_crypt/i18n/da.po | 2 +- addons/base_crypt/i18n/de.po | 2 +- addons/base_crypt/i18n/el.po | 2 +- addons/base_crypt/i18n/en_GB.po | 2 +- addons/base_crypt/i18n/es.po | 2 +- addons/base_crypt/i18n/es_CL.po | 2 +- addons/base_crypt/i18n/es_CR.po | 2 +- addons/base_crypt/i18n/es_PY.po | 2 +- addons/base_crypt/i18n/et.po | 2 +- addons/base_crypt/i18n/fa.po | 2 +- addons/base_crypt/i18n/fi.po | 2 +- addons/base_crypt/i18n/fr.po | 2 +- addons/base_crypt/i18n/gl.po | 2 +- addons/base_crypt/i18n/gu.po | 2 +- addons/base_crypt/i18n/hr.po | 2 +- addons/base_crypt/i18n/hu.po | 23 + addons/base_crypt/i18n/id.po | 2 +- addons/base_crypt/i18n/it.po | 2 +- addons/base_crypt/i18n/ja.po | 2 +- addons/base_crypt/i18n/lv.po | 2 +- addons/base_crypt/i18n/mn.po | 2 +- addons/base_crypt/i18n/nb.po | 2 +- addons/base_crypt/i18n/nl.po | 2 +- addons/base_crypt/i18n/nl_BE.po | 2 +- addons/base_crypt/i18n/oc.po | 2 +- addons/base_crypt/i18n/pl.po | 2 +- addons/base_crypt/i18n/pt.po | 2 +- addons/base_crypt/i18n/pt_BR.po | 2 +- addons/base_crypt/i18n/ro.po | 2 +- addons/base_crypt/i18n/ru.po | 2 +- addons/base_crypt/i18n/sk.po | 2 +- addons/base_crypt/i18n/sl.po | 2 +- addons/base_crypt/i18n/sq.po | 2 +- addons/base_crypt/i18n/sr@latin.po | 2 +- addons/base_crypt/i18n/sv.po | 2 +- addons/base_crypt/i18n/tr.po | 2 +- addons/base_crypt/i18n/vi.po | 2 +- addons/base_crypt/i18n/zh_CN.po | 2 +- addons/base_crypt/i18n/zh_TW.po | 2 +- addons/base_gengo/i18n/ar.po | 2 +- addons/base_gengo/i18n/de.po | 2 +- addons/base_gengo/i18n/es.po | 2 +- addons/base_gengo/i18n/fr.po | 2 +- addons/base_gengo/i18n/hr.po | 2 +- addons/base_gengo/i18n/hu.po | 265 +++++++ addons/base_gengo/i18n/it.po | 2 +- addons/base_gengo/i18n/mk.po | 2 +- addons/base_gengo/i18n/mn.po | 2 +- addons/base_gengo/i18n/nb.po | 2 +- addons/base_gengo/i18n/nl.po | 2 +- addons/base_gengo/i18n/pt.po | 2 +- addons/base_gengo/i18n/pt_BR.po | 2 +- addons/base_gengo/i18n/ro.po | 2 +- addons/base_gengo/i18n/sl.po | 2 +- addons/base_gengo/i18n/tr.po | 2 +- addons/base_gengo/i18n/zh_CN.po | 2 +- addons/base_iban/i18n/ar.po | 2 +- addons/base_iban/i18n/bg.po | 2 +- addons/base_iban/i18n/bs.po | 2 +- addons/base_iban/i18n/ca.po | 2 +- addons/base_iban/i18n/cs.po | 2 +- addons/base_iban/i18n/da.po | 2 +- addons/base_iban/i18n/de.po | 2 +- addons/base_iban/i18n/el.po | 2 +- addons/base_iban/i18n/en_GB.po | 2 +- addons/base_iban/i18n/es.po | 2 +- addons/base_iban/i18n/es_AR.po | 2 +- addons/base_iban/i18n/es_CR.po | 2 +- addons/base_iban/i18n/es_EC.po | 2 +- addons/base_iban/i18n/es_PY.po | 2 +- addons/base_iban/i18n/et.po | 2 +- addons/base_iban/i18n/eu.po | 2 +- addons/base_iban/i18n/fa.po | 2 +- addons/base_iban/i18n/fi.po | 2 +- addons/base_iban/i18n/fr.po | 2 +- addons/base_iban/i18n/gl.po | 2 +- addons/base_iban/i18n/gu.po | 2 +- addons/base_iban/i18n/hr.po | 2 +- addons/base_iban/i18n/hu.po | 19 +- addons/base_iban/i18n/id.po | 2 +- addons/base_iban/i18n/it.po | 2 +- addons/base_iban/i18n/ja.po | 2 +- addons/base_iban/i18n/ko.po | 2 +- addons/base_iban/i18n/lt.po | 2 +- addons/base_iban/i18n/lv.po | 2 +- addons/base_iban/i18n/mk.po | 2 +- addons/base_iban/i18n/mn.po | 2 +- addons/base_iban/i18n/nb.po | 2 +- addons/base_iban/i18n/nl.po | 2 +- addons/base_iban/i18n/nl_BE.po | 2 +- addons/base_iban/i18n/oc.po | 2 +- addons/base_iban/i18n/pl.po | 2 +- addons/base_iban/i18n/pt.po | 2 +- addons/base_iban/i18n/pt_BR.po | 2 +- addons/base_iban/i18n/ro.po | 2 +- addons/base_iban/i18n/ru.po | 2 +- addons/base_iban/i18n/sk.po | 2 +- addons/base_iban/i18n/sl.po | 2 +- addons/base_iban/i18n/sq.po | 2 +- addons/base_iban/i18n/sr.po | 2 +- addons/base_iban/i18n/sr@latin.po | 2 +- addons/base_iban/i18n/sv.po | 2 +- addons/base_iban/i18n/ta.po | 2 +- addons/base_iban/i18n/tlh.po | 2 +- addons/base_iban/i18n/tr.po | 2 +- addons/base_iban/i18n/uk.po | 2 +- addons/base_iban/i18n/vi.po | 2 +- addons/base_iban/i18n/zh_CN.po | 2 +- addons/base_iban/i18n/zh_TW.po | 2 +- addons/base_import/i18n/ar.po | 2 +- addons/base_import/i18n/de.po | 2 +- addons/base_import/i18n/es.po | 2 +- addons/base_import/i18n/et.po | 2 +- addons/base_import/i18n/fr.po | 2 +- addons/base_import/i18n/hr.po | 2 +- addons/base_import/i18n/hu.po | 125 ++- addons/base_import/i18n/it.po | 2 +- addons/base_import/i18n/mk.po | 2 +- addons/base_import/i18n/mn.po | 2 +- addons/base_import/i18n/nb.po | 2 +- addons/base_import/i18n/nl.po | 2 +- addons/base_import/i18n/pl.po | 2 +- addons/base_import/i18n/pt.po | 2 +- addons/base_import/i18n/pt_BR.po | 2 +- addons/base_import/i18n/ro.po | 2 +- addons/base_import/i18n/ru.po | 2 +- addons/base_import/i18n/sl.po | 2 +- addons/base_import/i18n/tr.po | 2 +- addons/base_import/i18n/zh_CN.po | 2 +- addons/base_report_designer/i18n/ar.po | 2 +- addons/base_report_designer/i18n/bg.po | 2 +- addons/base_report_designer/i18n/bs.po | 2 +- addons/base_report_designer/i18n/ca.po | 2 +- addons/base_report_designer/i18n/cs.po | 2 +- addons/base_report_designer/i18n/da.po | 2 +- addons/base_report_designer/i18n/de.po | 2 +- addons/base_report_designer/i18n/el.po | 2 +- addons/base_report_designer/i18n/en_GB.po | 2 +- addons/base_report_designer/i18n/es.po | 2 +- addons/base_report_designer/i18n/es_AR.po | 2 +- addons/base_report_designer/i18n/es_CR.po | 2 +- addons/base_report_designer/i18n/es_EC.po | 2 +- addons/base_report_designer/i18n/es_PY.po | 2 +- addons/base_report_designer/i18n/et.po | 2 +- addons/base_report_designer/i18n/fa.po | 2 +- addons/base_report_designer/i18n/fi.po | 2 +- addons/base_report_designer/i18n/fr.po | 2 +- addons/base_report_designer/i18n/gl.po | 2 +- addons/base_report_designer/i18n/hr.po | 2 +- addons/base_report_designer/i18n/hu.po | 18 +- addons/base_report_designer/i18n/id.po | 2 +- addons/base_report_designer/i18n/it.po | 2 +- addons/base_report_designer/i18n/ja.po | 2 +- addons/base_report_designer/i18n/ko.po | 2 +- addons/base_report_designer/i18n/lt.po | 2 +- addons/base_report_designer/i18n/mk.po | 2 +- addons/base_report_designer/i18n/mn.po | 2 +- addons/base_report_designer/i18n/nb.po | 2 +- addons/base_report_designer/i18n/nl.po | 2 +- addons/base_report_designer/i18n/nl_BE.po | 2 +- addons/base_report_designer/i18n/pl.po | 2 +- addons/base_report_designer/i18n/pt.po | 2 +- addons/base_report_designer/i18n/pt_BR.po | 2 +- addons/base_report_designer/i18n/ro.po | 2 +- addons/base_report_designer/i18n/ru.po | 2 +- addons/base_report_designer/i18n/sk.po | 2 +- addons/base_report_designer/i18n/sl.po | 2 +- addons/base_report_designer/i18n/sq.po | 2 +- addons/base_report_designer/i18n/sr.po | 2 +- addons/base_report_designer/i18n/sr@latin.po | 2 +- addons/base_report_designer/i18n/sv.po | 2 +- addons/base_report_designer/i18n/tlh.po | 2 +- addons/base_report_designer/i18n/tr.po | 2 +- addons/base_report_designer/i18n/uk.po | 2 +- addons/base_report_designer/i18n/vi.po | 2 +- addons/base_report_designer/i18n/zh_CN.po | 2 +- addons/base_report_designer/i18n/zh_TW.po | 2 +- addons/base_setup/i18n/ar.po | 2 +- addons/base_setup/i18n/bg.po | 2 +- addons/base_setup/i18n/bs.po | 2 +- addons/base_setup/i18n/ca.po | 2 +- addons/base_setup/i18n/cs.po | 2 +- addons/base_setup/i18n/da.po | 2 +- addons/base_setup/i18n/de.po | 2 +- addons/base_setup/i18n/el.po | 2 +- addons/base_setup/i18n/en_GB.po | 2 +- addons/base_setup/i18n/es.po | 2 +- addons/base_setup/i18n/es_AR.po | 2 +- addons/base_setup/i18n/es_CL.po | 2 +- addons/base_setup/i18n/es_CR.po | 2 +- addons/base_setup/i18n/es_EC.po | 2 +- addons/base_setup/i18n/es_MX.po | 2 +- addons/base_setup/i18n/es_PY.po | 2 +- addons/base_setup/i18n/et.po | 2 +- addons/base_setup/i18n/fa.po | 2 +- addons/base_setup/i18n/fi.po | 2 +- addons/base_setup/i18n/fr.po | 2 +- addons/base_setup/i18n/gl.po | 2 +- addons/base_setup/i18n/gu.po | 2 +- addons/base_setup/i18n/hr.po | 2 +- addons/base_setup/i18n/hu.po | 2 +- addons/base_setup/i18n/id.po | 2 +- addons/base_setup/i18n/it.po | 2 +- addons/base_setup/i18n/ja.po | 2 +- addons/base_setup/i18n/ko.po | 2 +- addons/base_setup/i18n/lt.po | 2 +- addons/base_setup/i18n/lv.po | 2 +- addons/base_setup/i18n/mk.po | 2 +- addons/base_setup/i18n/mn.po | 2 +- addons/base_setup/i18n/nb.po | 2 +- addons/base_setup/i18n/nl.po | 4 +- addons/base_setup/i18n/nl_BE.po | 2 +- addons/base_setup/i18n/pl.po | 2 +- addons/base_setup/i18n/pt.po | 2 +- addons/base_setup/i18n/pt_BR.po | 2 +- addons/base_setup/i18n/ro.po | 2 +- addons/base_setup/i18n/ru.po | 2 +- addons/base_setup/i18n/sk.po | 2 +- addons/base_setup/i18n/sl.po | 2 +- addons/base_setup/i18n/sq.po | 2 +- addons/base_setup/i18n/sr.po | 2 +- addons/base_setup/i18n/sr@latin.po | 2 +- addons/base_setup/i18n/sv.po | 2 +- addons/base_setup/i18n/th.po | 2 +- addons/base_setup/i18n/tlh.po | 2 +- addons/base_setup/i18n/tr.po | 2 +- addons/base_setup/i18n/uk.po | 2 +- addons/base_setup/i18n/vi.po | 2 +- addons/base_setup/i18n/zh_CN.po | 2 +- addons/base_setup/i18n/zh_TW.po | 2 +- addons/base_status/i18n/ar.po | 2 +- addons/base_status/i18n/de.po | 2 +- addons/base_status/i18n/en_GB.po | 2 +- addons/base_status/i18n/es.po | 2 +- addons/base_status/i18n/fr.po | 2 +- addons/base_status/i18n/hr.po | 2 +- addons/base_status/i18n/hu.po | 2 +- addons/base_status/i18n/id.po | 2 +- addons/base_status/i18n/it.po | 2 +- addons/base_status/i18n/mk.po | 2 +- addons/base_status/i18n/mn.po | 2 +- addons/base_status/i18n/nl.po | 2 +- addons/base_status/i18n/pl.po | 2 +- addons/base_status/i18n/pt.po | 2 +- addons/base_status/i18n/pt_BR.po | 2 +- addons/base_status/i18n/ro.po | 2 +- addons/base_status/i18n/ru.po | 2 +- addons/base_status/i18n/sl.po | 2 +- addons/base_status/i18n/tr.po | 2 +- addons/base_status/i18n/zh_CN.po | 2 +- addons/base_status/i18n/zh_TW.po | 2 +- addons/base_vat/i18n/ar.po | 2 +- addons/base_vat/i18n/bg.po | 2 +- addons/base_vat/i18n/bs.po | 2 +- addons/base_vat/i18n/ca.po | 2 +- addons/base_vat/i18n/cs.po | 2 +- addons/base_vat/i18n/da.po | 2 +- addons/base_vat/i18n/de.po | 2 +- addons/base_vat/i18n/el.po | 2 +- addons/base_vat/i18n/en_AU.po | 2 +- addons/base_vat/i18n/en_GB.po | 2 +- addons/base_vat/i18n/es.po | 2 +- addons/base_vat/i18n/es_AR.po | 2 +- addons/base_vat/i18n/es_CL.po | 2 +- addons/base_vat/i18n/es_CR.po | 2 +- addons/base_vat/i18n/es_EC.po | 2 +- addons/base_vat/i18n/es_MX.po | 2 +- addons/base_vat/i18n/es_PY.po | 2 +- addons/base_vat/i18n/et.po | 2 +- addons/base_vat/i18n/eu.po | 2 +- addons/base_vat/i18n/fa.po | 2 +- addons/base_vat/i18n/fi.po | 2 +- addons/base_vat/i18n/fr.po | 2 +- addons/base_vat/i18n/gl.po | 2 +- addons/base_vat/i18n/gu.po | 2 +- addons/base_vat/i18n/hr.po | 2 +- addons/base_vat/i18n/hu.po | 2 +- addons/base_vat/i18n/id.po | 2 +- addons/base_vat/i18n/it.po | 2 +- addons/base_vat/i18n/ja.po | 2 +- addons/base_vat/i18n/ko.po | 2 +- addons/base_vat/i18n/lt.po | 2 +- addons/base_vat/i18n/lv.po | 2 +- addons/base_vat/i18n/mk.po | 2 +- addons/base_vat/i18n/mn.po | 2 +- addons/base_vat/i18n/nb.po | 2 +- addons/base_vat/i18n/nl.po | 2 +- addons/base_vat/i18n/nl_BE.po | 2 +- addons/base_vat/i18n/oc.po | 2 +- addons/base_vat/i18n/pl.po | 2 +- addons/base_vat/i18n/pt.po | 2 +- addons/base_vat/i18n/pt_BR.po | 2 +- addons/base_vat/i18n/ro.po | 2 +- addons/base_vat/i18n/ru.po | 2 +- addons/base_vat/i18n/sk.po | 2 +- addons/base_vat/i18n/sl.po | 2 +- addons/base_vat/i18n/sq.po | 2 +- addons/base_vat/i18n/sr.po | 2 +- addons/base_vat/i18n/sr@latin.po | 2 +- addons/base_vat/i18n/sv.po | 2 +- addons/base_vat/i18n/th.po | 2 +- addons/base_vat/i18n/tlh.po | 2 +- addons/base_vat/i18n/tr.po | 2 +- addons/base_vat/i18n/uk.po | 2 +- addons/base_vat/i18n/vi.po | 2 +- addons/base_vat/i18n/zh_CN.po | 2 +- addons/base_vat/i18n/zh_TW.po | 2 +- addons/board/i18n/ar.po | 2 +- addons/board/i18n/bg.po | 2 +- addons/board/i18n/br.po | 2 +- addons/board/i18n/bs.po | 2 +- addons/board/i18n/ca.po | 2 +- addons/board/i18n/cs.po | 2 +- addons/board/i18n/da.po | 2 +- addons/board/i18n/de.po | 2 +- addons/board/i18n/el.po | 2 +- addons/board/i18n/en_GB.po | 2 +- addons/board/i18n/es.po | 2 +- addons/board/i18n/es_AR.po | 2 +- addons/board/i18n/es_CL.po | 2 +- addons/board/i18n/es_CR.po | 2 +- addons/board/i18n/es_EC.po | 2 +- addons/board/i18n/es_PY.po | 2 +- addons/board/i18n/et.po | 2 +- addons/board/i18n/fa.po | 2 +- addons/board/i18n/fi.po | 2 +- addons/board/i18n/fr.po | 2 +- addons/board/i18n/gl.po | 2 +- addons/board/i18n/gu.po | 2 +- addons/board/i18n/hr.po | 2 +- addons/board/i18n/hu.po | 2 +- addons/board/i18n/id.po | 2 +- addons/board/i18n/it.po | 2 +- addons/board/i18n/ja.po | 2 +- addons/board/i18n/ko.po | 2 +- addons/board/i18n/ln.po | 2 +- addons/board/i18n/lt.po | 2 +- addons/board/i18n/lv.po | 2 +- addons/board/i18n/mk.po | 2 +- addons/board/i18n/mn.po | 2 +- addons/board/i18n/nb.po | 2 +- addons/board/i18n/nl.po | 2 +- addons/board/i18n/nl_BE.po | 2 +- addons/board/i18n/pl.po | 2 +- addons/board/i18n/pt.po | 2 +- addons/board/i18n/pt_BR.po | 2 +- addons/board/i18n/ro.po | 2 +- addons/board/i18n/ru.po | 2 +- addons/board/i18n/sk.po | 2 +- addons/board/i18n/sl.po | 2 +- addons/board/i18n/sq.po | 2 +- addons/board/i18n/sr.po | 2 +- addons/board/i18n/sr@latin.po | 2 +- addons/board/i18n/sv.po | 2 +- addons/board/i18n/th.po | 2 +- addons/board/i18n/tlh.po | 2 +- addons/board/i18n/tr.po | 2 +- addons/board/i18n/uk.po | 2 +- addons/board/i18n/vi.po | 2 +- addons/board/i18n/zh_CN.po | 2 +- addons/board/i18n/zh_TW.po | 2 +- addons/claim_from_delivery/i18n/ar.po | 2 +- addons/claim_from_delivery/i18n/bg.po | 2 +- addons/claim_from_delivery/i18n/ca.po | 2 +- addons/claim_from_delivery/i18n/cs.po | 2 +- addons/claim_from_delivery/i18n/da.po | 2 +- addons/claim_from_delivery/i18n/de.po | 2 +- addons/claim_from_delivery/i18n/en_GB.po | 2 +- addons/claim_from_delivery/i18n/es.po | 2 +- addons/claim_from_delivery/i18n/es_AR.po | 2 +- addons/claim_from_delivery/i18n/es_CL.po | 2 +- addons/claim_from_delivery/i18n/es_CR.po | 2 +- addons/claim_from_delivery/i18n/es_EC.po | 2 +- addons/claim_from_delivery/i18n/es_PY.po | 2 +- addons/claim_from_delivery/i18n/fa.po | 2 +- addons/claim_from_delivery/i18n/fi.po | 2 +- addons/claim_from_delivery/i18n/fr.po | 2 +- addons/claim_from_delivery/i18n/gl.po | 2 +- addons/claim_from_delivery/i18n/gu.po | 2 +- addons/claim_from_delivery/i18n/hr.po | 2 +- addons/claim_from_delivery/i18n/hu.po | 2 +- addons/claim_from_delivery/i18n/id.po | 2 +- addons/claim_from_delivery/i18n/it.po | 2 +- addons/claim_from_delivery/i18n/ja.po | 2 +- addons/claim_from_delivery/i18n/lo.po | 2 +- addons/claim_from_delivery/i18n/lt.po | 2 +- addons/claim_from_delivery/i18n/mk.po | 2 +- addons/claim_from_delivery/i18n/mn.po | 2 +- addons/claim_from_delivery/i18n/nb.po | 2 +- addons/claim_from_delivery/i18n/nl.po | 2 +- addons/claim_from_delivery/i18n/nl_BE.po | 2 +- addons/claim_from_delivery/i18n/oc.po | 2 +- addons/claim_from_delivery/i18n/pl.po | 2 +- addons/claim_from_delivery/i18n/pt.po | 2 +- addons/claim_from_delivery/i18n/pt_BR.po | 2 +- addons/claim_from_delivery/i18n/ro.po | 2 +- addons/claim_from_delivery/i18n/ru.po | 2 +- addons/claim_from_delivery/i18n/sl.po | 2 +- addons/claim_from_delivery/i18n/sq.po | 2 +- addons/claim_from_delivery/i18n/sr.po | 2 +- addons/claim_from_delivery/i18n/sr@latin.po | 2 +- addons/claim_from_delivery/i18n/sv.po | 2 +- addons/claim_from_delivery/i18n/ta.po | 2 +- addons/claim_from_delivery/i18n/tr.po | 2 +- addons/claim_from_delivery/i18n/zh_CN.po | 2 +- addons/claim_from_delivery/i18n/zh_TW.po | 2 +- addons/contacts/i18n/ar.po | 2 +- addons/contacts/i18n/cs.po | 2 +- addons/contacts/i18n/de.po | 2 +- addons/contacts/i18n/en_GB.po | 2 +- addons/contacts/i18n/es.po | 2 +- addons/contacts/i18n/et.po | 2 +- addons/contacts/i18n/fr.po | 2 +- addons/contacts/i18n/hr.po | 2 +- addons/contacts/i18n/hu.po | 2 +- addons/contacts/i18n/it.po | 2 +- addons/contacts/i18n/mk.po | 2 +- addons/contacts/i18n/mn.po | 2 +- addons/contacts/i18n/nl.po | 2 +- addons/contacts/i18n/pl.po | 2 +- addons/contacts/i18n/pt.po | 2 +- addons/contacts/i18n/pt_BR.po | 2 +- addons/contacts/i18n/ro.po | 2 +- addons/contacts/i18n/ru.po | 2 +- addons/contacts/i18n/sl.po | 2 +- addons/contacts/i18n/sv.po | 2 +- addons/contacts/i18n/tr.po | 2 +- addons/contacts/i18n/zh_CN.po | 2 +- addons/contacts/i18n/zh_TW.po | 2 +- addons/crm/i18n/ar.po | 2 +- addons/crm/i18n/bg.po | 2 +- addons/crm/i18n/bs.po | 2 +- addons/crm/i18n/ca.po | 2 +- addons/crm/i18n/cs.po | 2 +- addons/crm/i18n/da.po | 2 +- addons/crm/i18n/de.po | 2 +- addons/crm/i18n/el.po | 2 +- addons/crm/i18n/es.po | 2 +- addons/crm/i18n/es_AR.po | 2 +- addons/crm/i18n/es_CR.po | 2 +- addons/crm/i18n/es_EC.po | 2 +- addons/crm/i18n/es_PY.po | 2 +- addons/crm/i18n/et.po | 2 +- addons/crm/i18n/fi.po | 2 +- addons/crm/i18n/fr.po | 2 +- addons/crm/i18n/gl.po | 2 +- addons/crm/i18n/gu.po | 2 +- addons/crm/i18n/hr.po | 2 +- addons/crm/i18n/hu.po | 45 +- addons/crm/i18n/id.po | 2 +- addons/crm/i18n/it.po | 2 +- addons/crm/i18n/ja.po | 2 +- addons/crm/i18n/ko.po | 2 +- addons/crm/i18n/lo.po | 2 +- addons/crm/i18n/lt.po | 2 +- addons/crm/i18n/lv.po | 2 +- addons/crm/i18n/mk.po | 2 +- addons/crm/i18n/mn.po | 2 +- addons/crm/i18n/nb.po | 2 +- addons/crm/i18n/nl.po | 2 +- addons/crm/i18n/nl_BE.po | 2 +- addons/crm/i18n/pl.po | 2 +- addons/crm/i18n/pt.po | 2 +- addons/crm/i18n/pt_BR.po | 2 +- addons/crm/i18n/ro.po | 2 +- addons/crm/i18n/ru.po | 2 +- addons/crm/i18n/sk.po | 2 +- addons/crm/i18n/sl.po | 2 +- addons/crm/i18n/sq.po | 2 +- addons/crm/i18n/sr.po | 2 +- addons/crm/i18n/sr@latin.po | 2 +- addons/crm/i18n/sv.po | 2 +- addons/crm/i18n/th.po | 2 +- addons/crm/i18n/tlh.po | 2 +- addons/crm/i18n/tr.po | 2 +- addons/crm/i18n/uk.po | 2 +- addons/crm/i18n/vi.po | 2 +- addons/crm/i18n/zh_CN.po | 2 +- addons/crm/i18n/zh_TW.po | 2 +- addons/crm_claim/i18n/ar.po | 2 +- addons/crm_claim/i18n/bg.po | 2 +- addons/crm_claim/i18n/ca.po | 2 +- addons/crm_claim/i18n/da.po | 2 +- addons/crm_claim/i18n/de.po | 2 +- addons/crm_claim/i18n/el.po | 2 +- addons/crm_claim/i18n/es.po | 2 +- addons/crm_claim/i18n/es_CR.po | 2 +- addons/crm_claim/i18n/es_EC.po | 2 +- addons/crm_claim/i18n/es_PY.po | 2 +- addons/crm_claim/i18n/fi.po | 2 +- addons/crm_claim/i18n/fr.po | 2 +- addons/crm_claim/i18n/gl.po | 2 +- addons/crm_claim/i18n/gu.po | 2 +- addons/crm_claim/i18n/hr.po | 2 +- addons/crm_claim/i18n/hu.po | 2 +- addons/crm_claim/i18n/it.po | 2 +- addons/crm_claim/i18n/ja.po | 2 +- addons/crm_claim/i18n/lt.po | 2 +- addons/crm_claim/i18n/mk.po | 2 +- addons/crm_claim/i18n/mn.po | 2 +- addons/crm_claim/i18n/nb.po | 2 +- addons/crm_claim/i18n/nl.po | 4 +- addons/crm_claim/i18n/pl.po | 2 +- addons/crm_claim/i18n/pt.po | 2 +- addons/crm_claim/i18n/pt_BR.po | 2 +- addons/crm_claim/i18n/ro.po | 2 +- addons/crm_claim/i18n/ru.po | 2 +- addons/crm_claim/i18n/sl.po | 2 +- addons/crm_claim/i18n/sq.po | 2 +- addons/crm_claim/i18n/sr.po | 2 +- addons/crm_claim/i18n/sr@latin.po | 2 +- addons/crm_claim/i18n/sv.po | 2 +- addons/crm_claim/i18n/tr.po | 2 +- addons/crm_claim/i18n/zh_CN.po | 2 +- addons/crm_claim/i18n/zh_TW.po | 2 +- addons/crm_helpdesk/i18n/ar.po | 2 +- addons/crm_helpdesk/i18n/bg.po | 2 +- addons/crm_helpdesk/i18n/ca.po | 2 +- addons/crm_helpdesk/i18n/da.po | 2 +- addons/crm_helpdesk/i18n/de.po | 2 +- addons/crm_helpdesk/i18n/el.po | 2 +- addons/crm_helpdesk/i18n/es.po | 2 +- addons/crm_helpdesk/i18n/es_CR.po | 2 +- addons/crm_helpdesk/i18n/es_PY.po | 2 +- addons/crm_helpdesk/i18n/fi.po | 2 +- addons/crm_helpdesk/i18n/fr.po | 2 +- addons/crm_helpdesk/i18n/gl.po | 2 +- addons/crm_helpdesk/i18n/gu.po | 2 +- addons/crm_helpdesk/i18n/hr.po | 2 +- addons/crm_helpdesk/i18n/hu.po | 2 +- addons/crm_helpdesk/i18n/it.po | 2 +- addons/crm_helpdesk/i18n/ja.po | 2 +- addons/crm_helpdesk/i18n/lt.po | 2 +- addons/crm_helpdesk/i18n/lv.po | 2 +- addons/crm_helpdesk/i18n/mk.po | 2 +- addons/crm_helpdesk/i18n/mn.po | 2 +- addons/crm_helpdesk/i18n/nb.po | 2 +- addons/crm_helpdesk/i18n/nl.po | 2 +- addons/crm_helpdesk/i18n/pl.po | 2 +- addons/crm_helpdesk/i18n/pt.po | 2 +- addons/crm_helpdesk/i18n/pt_BR.po | 2 +- addons/crm_helpdesk/i18n/ro.po | 2 +- addons/crm_helpdesk/i18n/ru.po | 2 +- addons/crm_helpdesk/i18n/sl.po | 2 +- addons/crm_helpdesk/i18n/sq.po | 2 +- addons/crm_helpdesk/i18n/sr.po | 2 +- addons/crm_helpdesk/i18n/sr@latin.po | 2 +- addons/crm_helpdesk/i18n/sv.po | 2 +- addons/crm_helpdesk/i18n/tr.po | 2 +- addons/crm_helpdesk/i18n/zh_CN.po | 2 +- addons/crm_helpdesk/i18n/zh_TW.po | 2 +- addons/crm_partner_assign/i18n/ar.po | 2 +- addons/crm_partner_assign/i18n/bg.po | 2 +- addons/crm_partner_assign/i18n/ca.po | 2 +- addons/crm_partner_assign/i18n/da.po | 2 +- addons/crm_partner_assign/i18n/de.po | 2 +- addons/crm_partner_assign/i18n/el.po | 2 +- addons/crm_partner_assign/i18n/es.po | 2 +- addons/crm_partner_assign/i18n/es_CR.po | 2 +- addons/crm_partner_assign/i18n/es_PY.po | 2 +- addons/crm_partner_assign/i18n/fi.po | 2 +- addons/crm_partner_assign/i18n/fr.po | 2 +- addons/crm_partner_assign/i18n/gl.po | 2 +- addons/crm_partner_assign/i18n/hr.po | 2 +- addons/crm_partner_assign/i18n/hu.po | 2 +- addons/crm_partner_assign/i18n/it.po | 2 +- addons/crm_partner_assign/i18n/ja.po | 2 +- addons/crm_partner_assign/i18n/lt.po | 2 +- addons/crm_partner_assign/i18n/lv.po | 2 +- addons/crm_partner_assign/i18n/mk.po | 2 +- addons/crm_partner_assign/i18n/mn.po | 2 +- addons/crm_partner_assign/i18n/nb.po | 2 +- addons/crm_partner_assign/i18n/nl.po | 2 +- addons/crm_partner_assign/i18n/pl.po | 2 +- addons/crm_partner_assign/i18n/pt.po | 2 +- addons/crm_partner_assign/i18n/pt_BR.po | 2 +- addons/crm_partner_assign/i18n/ro.po | 2 +- addons/crm_partner_assign/i18n/ru.po | 2 +- addons/crm_partner_assign/i18n/sl.po | 2 +- addons/crm_partner_assign/i18n/sq.po | 2 +- addons/crm_partner_assign/i18n/sr@latin.po | 2 +- addons/crm_partner_assign/i18n/sv.po | 2 +- addons/crm_partner_assign/i18n/tr.po | 2 +- addons/crm_partner_assign/i18n/zh_CN.po | 2 +- addons/crm_partner_assign/i18n/zh_TW.po | 2 +- addons/crm_profiling/i18n/ar.po | 2 +- addons/crm_profiling/i18n/bg.po | 2 +- addons/crm_profiling/i18n/bs.po | 2 +- addons/crm_profiling/i18n/ca.po | 2 +- addons/crm_profiling/i18n/cs.po | 2 +- addons/crm_profiling/i18n/da.po | 2 +- addons/crm_profiling/i18n/de.po | 2 +- addons/crm_profiling/i18n/el.po | 2 +- addons/crm_profiling/i18n/en_GB.po | 2 +- addons/crm_profiling/i18n/es.po | 2 +- addons/crm_profiling/i18n/es_AR.po | 2 +- addons/crm_profiling/i18n/es_CR.po | 2 +- addons/crm_profiling/i18n/es_EC.po | 2 +- addons/crm_profiling/i18n/es_PY.po | 2 +- addons/crm_profiling/i18n/et.po | 2 +- addons/crm_profiling/i18n/fi.po | 2 +- addons/crm_profiling/i18n/fr.po | 2 +- addons/crm_profiling/i18n/gl.po | 2 +- addons/crm_profiling/i18n/gu.po | 2 +- addons/crm_profiling/i18n/hr.po | 2 +- addons/crm_profiling/i18n/hu.po | 2 +- addons/crm_profiling/i18n/id.po | 2 +- addons/crm_profiling/i18n/it.po | 2 +- addons/crm_profiling/i18n/ja.po | 2 +- addons/crm_profiling/i18n/ko.po | 2 +- addons/crm_profiling/i18n/lt.po | 2 +- addons/crm_profiling/i18n/lv.po | 2 +- addons/crm_profiling/i18n/mk.po | 2 +- addons/crm_profiling/i18n/mn.po | 2 +- addons/crm_profiling/i18n/nb.po | 2 +- addons/crm_profiling/i18n/nl.po | 2 +- addons/crm_profiling/i18n/nl_BE.po | 2 +- addons/crm_profiling/i18n/pl.po | 2 +- addons/crm_profiling/i18n/pt.po | 2 +- addons/crm_profiling/i18n/pt_BR.po | 2 +- addons/crm_profiling/i18n/ro.po | 2 +- addons/crm_profiling/i18n/ru.po | 2 +- addons/crm_profiling/i18n/sk.po | 2 +- addons/crm_profiling/i18n/sl.po | 2 +- addons/crm_profiling/i18n/sq.po | 2 +- addons/crm_profiling/i18n/sr.po | 2 +- addons/crm_profiling/i18n/sr@latin.po | 2 +- addons/crm_profiling/i18n/sv.po | 2 +- addons/crm_profiling/i18n/tlh.po | 2 +- addons/crm_profiling/i18n/tr.po | 2 +- addons/crm_profiling/i18n/uk.po | 2 +- addons/crm_profiling/i18n/vi.po | 2 +- addons/crm_profiling/i18n/zh_CN.po | 2 +- addons/crm_profiling/i18n/zh_TW.po | 2 +- addons/crm_todo/i18n/ar.po | 2 +- addons/crm_todo/i18n/de.po | 2 +- addons/crm_todo/i18n/en_GB.po | 2 +- addons/crm_todo/i18n/es.po | 2 +- addons/crm_todo/i18n/es_CR.po | 2 +- addons/crm_todo/i18n/fi.po | 2 +- addons/crm_todo/i18n/fr.po | 2 +- addons/crm_todo/i18n/gu.po | 2 +- addons/crm_todo/i18n/hr.po | 2 +- addons/crm_todo/i18n/hu.po | 2 +- addons/crm_todo/i18n/it.po | 2 +- addons/crm_todo/i18n/ja.po | 2 +- addons/crm_todo/i18n/lt.po | 2 +- addons/crm_todo/i18n/mk.po | 2 +- addons/crm_todo/i18n/mn.po | 2 +- addons/crm_todo/i18n/nb.po | 2 +- addons/crm_todo/i18n/nl.po | 2 +- addons/crm_todo/i18n/pl.po | 2 +- addons/crm_todo/i18n/pt.po | 2 +- addons/crm_todo/i18n/pt_BR.po | 2 +- addons/crm_todo/i18n/ro.po | 2 +- addons/crm_todo/i18n/ru.po | 2 +- addons/crm_todo/i18n/sl.po | 2 +- addons/crm_todo/i18n/sr@latin.po | 2 +- addons/crm_todo/i18n/sv.po | 2 +- addons/crm_todo/i18n/tr.po | 2 +- addons/crm_todo/i18n/zh_CN.po | 2 +- addons/crm_todo/i18n/zh_TW.po | 2 +- addons/decimal_precision/i18n/ar.po | 2 +- addons/decimal_precision/i18n/bg.po | 2 +- addons/decimal_precision/i18n/ca.po | 2 +- addons/decimal_precision/i18n/cs.po | 2 +- addons/decimal_precision/i18n/da.po | 2 +- addons/decimal_precision/i18n/de.po | 2 +- addons/decimal_precision/i18n/el.po | 2 +- addons/decimal_precision/i18n/en_GB.po | 2 +- addons/decimal_precision/i18n/es.po | 2 +- addons/decimal_precision/i18n/es_CR.po | 2 +- addons/decimal_precision/i18n/es_EC.po | 2 +- addons/decimal_precision/i18n/es_MX.po | 2 +- addons/decimal_precision/i18n/es_PY.po | 2 +- addons/decimal_precision/i18n/fi.po | 2 +- addons/decimal_precision/i18n/fr.po | 2 +- addons/decimal_precision/i18n/gl.po | 2 +- addons/decimal_precision/i18n/gu.po | 2 +- addons/decimal_precision/i18n/hr.po | 2 +- addons/decimal_precision/i18n/hu.po | 2 +- addons/decimal_precision/i18n/id.po | 2 +- addons/decimal_precision/i18n/it.po | 2 +- addons/decimal_precision/i18n/ja.po | 2 +- addons/decimal_precision/i18n/lt.po | 2 +- addons/decimal_precision/i18n/lv.po | 2 +- addons/decimal_precision/i18n/mk.po | 2 +- addons/decimal_precision/i18n/mn.po | 2 +- addons/decimal_precision/i18n/nb.po | 2 +- addons/decimal_precision/i18n/nl.po | 2 +- addons/decimal_precision/i18n/nl_BE.po | 2 +- addons/decimal_precision/i18n/pl.po | 2 +- addons/decimal_precision/i18n/pt.po | 2 +- addons/decimal_precision/i18n/pt_BR.po | 2 +- addons/decimal_precision/i18n/ro.po | 2 +- addons/decimal_precision/i18n/ru.po | 2 +- addons/decimal_precision/i18n/sk.po | 2 +- addons/decimal_precision/i18n/sl.po | 2 +- addons/decimal_precision/i18n/sr.po | 2 +- addons/decimal_precision/i18n/sr@latin.po | 2 +- addons/decimal_precision/i18n/sv.po | 2 +- addons/decimal_precision/i18n/tr.po | 2 +- addons/decimal_precision/i18n/vi.po | 2 +- addons/decimal_precision/i18n/zh_CN.po | 2 +- addons/decimal_precision/i18n/zh_TW.po | 2 +- addons/delivery/i18n/ar.po | 2 +- addons/delivery/i18n/bg.po | 2 +- addons/delivery/i18n/bs.po | 2 +- addons/delivery/i18n/ca.po | 2 +- addons/delivery/i18n/cs.po | 2 +- addons/delivery/i18n/da.po | 2 +- addons/delivery/i18n/de.po | 2 +- addons/delivery/i18n/el.po | 2 +- addons/delivery/i18n/es.po | 2 +- addons/delivery/i18n/es_AR.po | 2 +- addons/delivery/i18n/es_CR.po | 2 +- addons/delivery/i18n/es_EC.po | 2 +- addons/delivery/i18n/es_MX.po | 2 +- addons/delivery/i18n/es_PY.po | 2 +- addons/delivery/i18n/et.po | 2 +- addons/delivery/i18n/fi.po | 2 +- addons/delivery/i18n/fr.po | 2 +- addons/delivery/i18n/gl.po | 2 +- addons/delivery/i18n/hi.po | 2 +- addons/delivery/i18n/hr.po | 2 +- addons/delivery/i18n/hu.po | 2 +- addons/delivery/i18n/id.po | 2 +- addons/delivery/i18n/it.po | 2 +- addons/delivery/i18n/ja.po | 2 +- addons/delivery/i18n/ko.po | 2 +- addons/delivery/i18n/lt.po | 2 +- addons/delivery/i18n/lv.po | 2 +- addons/delivery/i18n/mk.po | 2 +- addons/delivery/i18n/mn.po | 2 +- addons/delivery/i18n/nb.po | 2 +- addons/delivery/i18n/nl.po | 2 +- addons/delivery/i18n/nl_BE.po | 2 +- addons/delivery/i18n/pl.po | 2 +- addons/delivery/i18n/pt.po | 2 +- addons/delivery/i18n/pt_BR.po | 2 +- addons/delivery/i18n/ro.po | 2 +- addons/delivery/i18n/ru.po | 2 +- addons/delivery/i18n/sl.po | 2 +- addons/delivery/i18n/sq.po | 2 +- addons/delivery/i18n/sr.po | 2 +- addons/delivery/i18n/sr@latin.po | 2 +- addons/delivery/i18n/sv.po | 2 +- addons/delivery/i18n/th.po | 2 +- addons/delivery/i18n/tlh.po | 2 +- addons/delivery/i18n/tr.po | 2 +- addons/delivery/i18n/uk.po | 2 +- addons/delivery/i18n/vi.po | 2 +- addons/delivery/i18n/zh_CN.po | 2 +- addons/delivery/i18n/zh_TW.po | 2 +- addons/document/i18n/ar.po | 2 +- addons/document/i18n/bg.po | 2 +- addons/document/i18n/bs.po | 2 +- addons/document/i18n/ca.po | 2 +- addons/document/i18n/cs.po | 2 +- addons/document/i18n/da.po | 2 +- addons/document/i18n/de.po | 2 +- addons/document/i18n/el.po | 2 +- addons/document/i18n/es.po | 2 +- addons/document/i18n/es_AR.po | 2 +- addons/document/i18n/es_CR.po | 2 +- addons/document/i18n/es_EC.po | 2 +- addons/document/i18n/es_PY.po | 2 +- addons/document/i18n/et.po | 2 +- addons/document/i18n/fi.po | 2 +- addons/document/i18n/fr.po | 2 +- addons/document/i18n/gl.po | 2 +- addons/document/i18n/gu.po | 2 +- addons/document/i18n/hi.po | 2 +- addons/document/i18n/hr.po | 2 +- addons/document/i18n/hu.po | 2 +- addons/document/i18n/id.po | 2 +- addons/document/i18n/it.po | 2 +- addons/document/i18n/ja.po | 2 +- addons/document/i18n/ko.po | 2 +- addons/document/i18n/lt.po | 2 +- addons/document/i18n/lv.po | 2 +- addons/document/i18n/mk.po | 2 +- addons/document/i18n/mn.po | 2 +- addons/document/i18n/nb.po | 2 +- addons/document/i18n/nl.po | 2 +- addons/document/i18n/nl_BE.po | 2 +- addons/document/i18n/pl.po | 2 +- addons/document/i18n/pt.po | 2 +- addons/document/i18n/pt_BR.po | 2 +- addons/document/i18n/ro.po | 2 +- addons/document/i18n/ru.po | 2 +- addons/document/i18n/sk.po | 2 +- addons/document/i18n/sl.po | 2 +- addons/document/i18n/sq.po | 2 +- addons/document/i18n/sr.po | 2 +- addons/document/i18n/sr@latin.po | 2 +- addons/document/i18n/sv.po | 2 +- addons/document/i18n/tlh.po | 2 +- addons/document/i18n/tr.po | 2 +- addons/document/i18n/uk.po | 2 +- addons/document/i18n/vi.po | 2 +- addons/document/i18n/zh_CN.po | 2 +- addons/document/i18n/zh_HK.po | 2 +- addons/document/i18n/zh_TW.po | 2 +- addons/document_ftp/i18n/ar.po | 2 +- addons/document_ftp/i18n/bg.po | 2 +- addons/document_ftp/i18n/ca.po | 2 +- addons/document_ftp/i18n/cs.po | 2 +- addons/document_ftp/i18n/da.po | 2 +- addons/document_ftp/i18n/de.po | 2 +- addons/document_ftp/i18n/el.po | 2 +- addons/document_ftp/i18n/en_GB.po | 2 +- addons/document_ftp/i18n/es.po | 2 +- addons/document_ftp/i18n/es_CR.po | 2 +- addons/document_ftp/i18n/es_EC.po | 2 +- addons/document_ftp/i18n/es_PY.po | 2 +- addons/document_ftp/i18n/et.po | 2 +- addons/document_ftp/i18n/fi.po | 2 +- addons/document_ftp/i18n/fr.po | 2 +- addons/document_ftp/i18n/gl.po | 2 +- addons/document_ftp/i18n/hr.po | 2 +- addons/document_ftp/i18n/hu.po | 2 +- addons/document_ftp/i18n/it.po | 2 +- addons/document_ftp/i18n/ja.po | 2 +- addons/document_ftp/i18n/mk.po | 2 +- addons/document_ftp/i18n/mn.po | 2 +- addons/document_ftp/i18n/nb.po | 2 +- addons/document_ftp/i18n/nl.po | 2 +- addons/document_ftp/i18n/pl.po | 2 +- addons/document_ftp/i18n/pt.po | 2 +- addons/document_ftp/i18n/pt_BR.po | 2 +- addons/document_ftp/i18n/ro.po | 2 +- addons/document_ftp/i18n/ru.po | 2 +- addons/document_ftp/i18n/sk.po | 2 +- addons/document_ftp/i18n/sl.po | 2 +- addons/document_ftp/i18n/sr.po | 2 +- addons/document_ftp/i18n/sr@latin.po | 2 +- addons/document_ftp/i18n/sv.po | 2 +- addons/document_ftp/i18n/tr.po | 2 +- addons/document_ftp/i18n/vi.po | 2 +- addons/document_ftp/i18n/zh_CN.po | 2 +- addons/document_ftp/i18n/zh_TW.po | 2 +- addons/document_page/i18n/ar.po | 2 +- addons/document_page/i18n/bg.po | 2 +- addons/document_page/i18n/bs.po | 2 +- addons/document_page/i18n/ca.po | 2 +- addons/document_page/i18n/cs.po | 2 +- addons/document_page/i18n/da.po | 2 +- addons/document_page/i18n/de.po | 2 +- addons/document_page/i18n/el.po | 2 +- addons/document_page/i18n/es.po | 2 +- addons/document_page/i18n/et.po | 2 +- addons/document_page/i18n/fi.po | 2 +- addons/document_page/i18n/fr.po | 2 +- addons/document_page/i18n/gl.po | 2 +- addons/document_page/i18n/hr.po | 2 +- addons/document_page/i18n/hu.po | 2 +- addons/document_page/i18n/id.po | 2 +- addons/document_page/i18n/it.po | 2 +- addons/document_page/i18n/ja.po | 2 +- addons/document_page/i18n/ko.po | 2 +- addons/document_page/i18n/lt.po | 2 +- addons/document_page/i18n/lv.po | 2 +- addons/document_page/i18n/mk.po | 2 +- addons/document_page/i18n/mn.po | 2 +- addons/document_page/i18n/nb.po | 2 +- addons/document_page/i18n/nl.po | 2 +- addons/document_page/i18n/pl.po | 2 +- addons/document_page/i18n/pt.po | 2 +- addons/document_page/i18n/pt_BR.po | 2 +- addons/document_page/i18n/ro.po | 2 +- addons/document_page/i18n/ru.po | 2 +- addons/document_page/i18n/sk.po | 2 +- addons/document_page/i18n/sl.po | 2 +- addons/document_page/i18n/sq.po | 2 +- addons/document_page/i18n/sr.po | 2 +- addons/document_page/i18n/sr@latin.po | 2 +- addons/document_page/i18n/sv.po | 2 +- addons/document_page/i18n/tlh.po | 2 +- addons/document_page/i18n/tr.po | 2 +- addons/document_page/i18n/uk.po | 2 +- addons/document_page/i18n/vi.po | 2 +- addons/document_page/i18n/zh_CN.po | 2 +- addons/document_page/i18n/zh_TW.po | 2 +- addons/document_webdav/i18n/ar.po | 2 +- addons/document_webdav/i18n/bg.po | 2 +- addons/document_webdav/i18n/ca.po | 2 +- addons/document_webdav/i18n/cs.po | 2 +- addons/document_webdav/i18n/da.po | 2 +- addons/document_webdav/i18n/de.po | 2 +- addons/document_webdav/i18n/el.po | 2 +- addons/document_webdav/i18n/en_GB.po | 2 +- addons/document_webdav/i18n/es.po | 2 +- addons/document_webdav/i18n/es_CR.po | 2 +- addons/document_webdav/i18n/es_EC.po | 2 +- addons/document_webdav/i18n/es_PY.po | 2 +- addons/document_webdav/i18n/et.po | 2 +- addons/document_webdav/i18n/eu.po | 2 +- addons/document_webdav/i18n/fi.po | 2 +- addons/document_webdav/i18n/fr.po | 2 +- addons/document_webdav/i18n/gl.po | 2 +- addons/document_webdav/i18n/gu.po | 2 +- addons/document_webdav/i18n/hr.po | 2 +- addons/document_webdav/i18n/hu.po | 2 +- addons/document_webdav/i18n/id.po | 2 +- addons/document_webdav/i18n/it.po | 2 +- addons/document_webdav/i18n/ja.po | 2 +- addons/document_webdav/i18n/mk.po | 2 +- addons/document_webdav/i18n/mn.po | 2 +- addons/document_webdav/i18n/nb.po | 2 +- addons/document_webdav/i18n/nl.po | 2 +- addons/document_webdav/i18n/pl.po | 2 +- addons/document_webdav/i18n/pt.po | 2 +- addons/document_webdav/i18n/pt_BR.po | 2 +- addons/document_webdav/i18n/ro.po | 2 +- addons/document_webdav/i18n/ru.po | 2 +- addons/document_webdav/i18n/sl.po | 2 +- addons/document_webdav/i18n/sr.po | 2 +- addons/document_webdav/i18n/sr@latin.po | 2 +- addons/document_webdav/i18n/sv.po | 2 +- addons/document_webdav/i18n/tr.po | 2 +- addons/document_webdav/i18n/zh_CN.po | 2 +- addons/document_webdav/i18n/zh_TW.po | 2 +- addons/edi/i18n/ar.po | 2 +- addons/edi/i18n/de.po | 2 +- addons/edi/i18n/es.po | 2 +- addons/edi/i18n/es_CR.po | 2 +- addons/edi/i18n/fi.po | 2 +- addons/edi/i18n/fr.po | 2 +- addons/edi/i18n/hr.po | 2 +- addons/edi/i18n/hu.po | 2 +- addons/edi/i18n/it.po | 2 +- addons/edi/i18n/ja.po | 2 +- addons/edi/i18n/mk.po | 2 +- addons/edi/i18n/ml.po | 2 +- addons/edi/i18n/mn.po | 2 +- addons/edi/i18n/nb.po | 2 +- addons/edi/i18n/nl.po | 2 +- addons/edi/i18n/nl_BE.po | 2 +- addons/edi/i18n/pl.po | 2 +- addons/edi/i18n/pt.po | 2 +- addons/edi/i18n/pt_BR.po | 2 +- addons/edi/i18n/ro.po | 2 +- addons/edi/i18n/ru.po | 2 +- addons/edi/i18n/sl.po | 2 +- addons/edi/i18n/sv.po | 2 +- addons/edi/i18n/tr.po | 2 +- addons/edi/i18n/zh_CN.po | 2 +- addons/edi/i18n/zh_TW.po | 2 +- addons/email_template/i18n/ar.po | 2 +- addons/email_template/i18n/bg.po | 2 +- addons/email_template/i18n/ca.po | 2 +- addons/email_template/i18n/cs.po | 2 +- addons/email_template/i18n/da.po | 2 +- addons/email_template/i18n/de.po | 2 +- addons/email_template/i18n/es.po | 2 +- addons/email_template/i18n/es_CL.po | 2 +- addons/email_template/i18n/es_CR.po | 2 +- addons/email_template/i18n/es_EC.po | 2 +- addons/email_template/i18n/et.po | 2 +- addons/email_template/i18n/fa_AF.po | 2 +- addons/email_template/i18n/fi.po | 2 +- addons/email_template/i18n/fr.po | 2 +- addons/email_template/i18n/hr.po | 2 +- addons/email_template/i18n/hu.po | 2 +- addons/email_template/i18n/it.po | 2 +- addons/email_template/i18n/ja.po | 2 +- addons/email_template/i18n/mk.po | 2 +- addons/email_template/i18n/mn.po | 2 +- addons/email_template/i18n/nb.po | 2 +- addons/email_template/i18n/nl.po | 4 +- addons/email_template/i18n/pl.po | 2 +- addons/email_template/i18n/pt.po | 2 +- addons/email_template/i18n/pt_BR.po | 2 +- addons/email_template/i18n/ro.po | 2 +- addons/email_template/i18n/ru.po | 2 +- addons/email_template/i18n/sl.po | 2 +- addons/email_template/i18n/sr.po | 2 +- addons/email_template/i18n/sr@latin.po | 2 +- addons/email_template/i18n/sv.po | 2 +- addons/email_template/i18n/tr.po | 2 +- addons/email_template/i18n/zh_CN.po | 2 +- addons/email_template/i18n/zh_TW.po | 2 +- addons/event/i18n/ar.po | 2 +- addons/event/i18n/bg.po | 2 +- addons/event/i18n/bs.po | 2 +- addons/event/i18n/ca.po | 2 +- addons/event/i18n/cs.po | 2 +- addons/event/i18n/da.po | 2 +- addons/event/i18n/de.po | 2 +- addons/event/i18n/el.po | 2 +- addons/event/i18n/es.po | 2 +- addons/event/i18n/es_AR.po | 2 +- addons/event/i18n/es_CR.po | 2 +- addons/event/i18n/es_EC.po | 2 +- addons/event/i18n/et.po | 2 +- addons/event/i18n/fi.po | 2 +- addons/event/i18n/fr.po | 2 +- addons/event/i18n/gu.po | 2 +- addons/event/i18n/hi.po | 2 +- addons/event/i18n/hr.po | 2 +- addons/event/i18n/hu.po | 2 +- addons/event/i18n/id.po | 2 +- addons/event/i18n/it.po | 2 +- addons/event/i18n/ja.po | 2 +- addons/event/i18n/ko.po | 2 +- addons/event/i18n/lt.po | 2 +- addons/event/i18n/mk.po | 2 +- addons/event/i18n/mn.po | 2 +- addons/event/i18n/nb.po | 2 +- addons/event/i18n/nl.po | 4 +- addons/event/i18n/nl_BE.po | 2 +- addons/event/i18n/pl.po | 2 +- addons/event/i18n/pt.po | 2 +- addons/event/i18n/pt_BR.po | 2 +- addons/event/i18n/ro.po | 2 +- addons/event/i18n/ru.po | 2 +- addons/event/i18n/sk.po | 2 +- addons/event/i18n/sl.po | 2 +- addons/event/i18n/sq.po | 2 +- addons/event/i18n/sr.po | 2 +- addons/event/i18n/sr@latin.po | 2 +- addons/event/i18n/sv.po | 2 +- addons/event/i18n/tlh.po | 2 +- addons/event/i18n/tr.po | 2 +- addons/event/i18n/uk.po | 2 +- addons/event/i18n/vi.po | 2 +- addons/event/i18n/zh_CN.po | 2 +- addons/event/i18n/zh_TW.po | 2 +- addons/event_moodle/i18n/de.po | 2 +- addons/event_moodle/i18n/es.po | 2 +- addons/event_moodle/i18n/fr.po | 2 +- addons/event_moodle/i18n/hr.po | 2 +- addons/event_moodle/i18n/hu.po | 2 +- addons/event_moodle/i18n/mk.po | 2 +- addons/event_moodle/i18n/mn.po | 2 +- addons/event_moodle/i18n/nl.po | 4 +- addons/event_moodle/i18n/pt.po | 2 +- addons/event_moodle/i18n/pt_BR.po | 2 +- addons/event_moodle/i18n/ro.po | 2 +- addons/event_moodle/i18n/sl.po | 2 +- addons/event_moodle/i18n/tr.po | 2 +- addons/event_moodle/i18n/zh_CN.po | 2 +- addons/event_sale/i18n/ar.po | 2 +- addons/event_sale/i18n/de.po | 2 +- addons/event_sale/i18n/es.po | 2 +- addons/event_sale/i18n/fr.po | 2 +- addons/event_sale/i18n/hr.po | 2 +- addons/event_sale/i18n/hu.po | 2 +- addons/event_sale/i18n/it.po | 2 +- addons/event_sale/i18n/mk.po | 2 +- addons/event_sale/i18n/mn.po | 2 +- addons/event_sale/i18n/nl.po | 2 +- addons/event_sale/i18n/pl.po | 2 +- addons/event_sale/i18n/pt.po | 2 +- addons/event_sale/i18n/pt_BR.po | 2 +- addons/event_sale/i18n/ro.po | 2 +- addons/event_sale/i18n/sl.po | 2 +- addons/event_sale/i18n/tr.po | 2 +- addons/event_sale/i18n/zh_CN.po | 2 +- addons/fetchmail/i18n/ar.po | 2 +- addons/fetchmail/i18n/bg.po | 2 +- addons/fetchmail/i18n/ca.po | 2 +- addons/fetchmail/i18n/da.po | 2 +- addons/fetchmail/i18n/de.po | 2 +- addons/fetchmail/i18n/el.po | 2 +- addons/fetchmail/i18n/en_GB.po | 2 +- addons/fetchmail/i18n/es.po | 2 +- addons/fetchmail/i18n/es_CR.po | 2 +- addons/fetchmail/i18n/et.po | 2 +- addons/fetchmail/i18n/fi.po | 2 +- addons/fetchmail/i18n/fr.po | 2 +- addons/fetchmail/i18n/gl.po | 2 +- addons/fetchmail/i18n/hr.po | 2 +- addons/fetchmail/i18n/hu.po | 2 +- addons/fetchmail/i18n/it.po | 2 +- addons/fetchmail/i18n/ja.po | 2 +- addons/fetchmail/i18n/lt.po | 2 +- addons/fetchmail/i18n/lv.po | 2 +- addons/fetchmail/i18n/mk.po | 2 +- addons/fetchmail/i18n/mn.po | 2 +- addons/fetchmail/i18n/nb.po | 2 +- addons/fetchmail/i18n/nl.po | 2 +- addons/fetchmail/i18n/pl.po | 2 +- addons/fetchmail/i18n/pt.po | 2 +- addons/fetchmail/i18n/pt_BR.po | 2 +- addons/fetchmail/i18n/ro.po | 2 +- addons/fetchmail/i18n/ru.po | 2 +- addons/fetchmail/i18n/sl.po | 2 +- addons/fetchmail/i18n/sr.po | 2 +- addons/fetchmail/i18n/sr@latin.po | 2 +- addons/fetchmail/i18n/sv.po | 2 +- addons/fetchmail/i18n/tr.po | 2 +- addons/fetchmail/i18n/vi.po | 2 +- addons/fetchmail/i18n/zh_CN.po | 2 +- addons/fleet/i18n/ar.po | 2 +- addons/fleet/i18n/cs.po | 2 +- addons/fleet/i18n/de.po | 2 +- addons/fleet/i18n/es.po | 2 +- addons/fleet/i18n/es_MX.po | 2 +- addons/fleet/i18n/fr.po | 2 +- addons/fleet/i18n/hr.po | 2 +- addons/fleet/i18n/it.po | 2 +- addons/fleet/i18n/lv.po | 2 +- addons/fleet/i18n/mk.po | 2 +- addons/fleet/i18n/mn.po | 2 +- addons/fleet/i18n/nl.po | 2 +- addons/fleet/i18n/pl.po | 2 +- addons/fleet/i18n/pt.po | 2 +- addons/fleet/i18n/pt_BR.po | 2 +- addons/fleet/i18n/ro.po | 2 +- addons/fleet/i18n/ru.po | 2 +- addons/fleet/i18n/sl.po | 2 +- addons/fleet/i18n/sv.po | 2 +- addons/fleet/i18n/tr.po | 2 +- addons/fleet/i18n/zh_CN.po | 2 +- addons/google_base_account/i18n/ar.po | 2 +- addons/google_base_account/i18n/de.po | 2 +- addons/google_base_account/i18n/es.po | 2 +- addons/google_base_account/i18n/es_CR.po | 2 +- addons/google_base_account/i18n/fi.po | 2 +- addons/google_base_account/i18n/fr.po | 2 +- addons/google_base_account/i18n/hr.po | 2 +- addons/google_base_account/i18n/hu.po | 2 +- addons/google_base_account/i18n/it.po | 2 +- addons/google_base_account/i18n/ja.po | 2 +- addons/google_base_account/i18n/mk.po | 2 +- addons/google_base_account/i18n/mn.po | 2 +- addons/google_base_account/i18n/nb.po | 2 +- addons/google_base_account/i18n/nl.po | 2 +- addons/google_base_account/i18n/pl.po | 2 +- addons/google_base_account/i18n/pt.po | 2 +- addons/google_base_account/i18n/pt_BR.po | 2 +- addons/google_base_account/i18n/ro.po | 2 +- addons/google_base_account/i18n/ru.po | 2 +- addons/google_base_account/i18n/sl.po | 2 +- addons/google_base_account/i18n/sr@latin.po | 2 +- addons/google_base_account/i18n/sv.po | 2 +- addons/google_base_account/i18n/tr.po | 2 +- addons/google_base_account/i18n/zh_CN.po | 2 +- addons/google_docs/i18n/ar.po | 2 +- addons/google_docs/i18n/de.po | 2 +- addons/google_docs/i18n/es.po | 2 +- addons/google_docs/i18n/fr.po | 2 +- addons/google_docs/i18n/hr.po | 2 +- addons/google_docs/i18n/hu.po | 2 +- addons/google_docs/i18n/it.po | 2 +- addons/google_docs/i18n/mk.po | 2 +- addons/google_docs/i18n/mn.po | 2 +- addons/google_docs/i18n/nl.po | 2 +- addons/google_docs/i18n/pl.po | 2 +- addons/google_docs/i18n/pt.po | 2 +- addons/google_docs/i18n/pt_BR.po | 2 +- addons/google_docs/i18n/ro.po | 2 +- addons/google_docs/i18n/ru.po | 2 +- addons/google_docs/i18n/sl.po | 2 +- addons/google_docs/i18n/sv.po | 2 +- addons/google_docs/i18n/tr.po | 2 +- addons/google_docs/i18n/zh_CN.po | 2 +- addons/hr/i18n/ar.po | 2 +- addons/hr/i18n/bg.po | 2 +- addons/hr/i18n/bn.po | 2 +- addons/hr/i18n/bs.po | 2 +- addons/hr/i18n/ca.po | 2 +- addons/hr/i18n/cs.po | 2 +- addons/hr/i18n/da.po | 2 +- addons/hr/i18n/de.po | 2 +- addons/hr/i18n/el.po | 2 +- addons/hr/i18n/en_AU.po | 2 +- addons/hr/i18n/en_GB.po | 2 +- addons/hr/i18n/es.po | 2 +- addons/hr/i18n/es_AR.po | 2 +- addons/hr/i18n/es_CL.po | 2 +- addons/hr/i18n/es_CR.po | 2 +- addons/hr/i18n/es_EC.po | 2 +- addons/hr/i18n/et.po | 2 +- addons/hr/i18n/fi.po | 2 +- addons/hr/i18n/fr.po | 2 +- addons/hr/i18n/fr_BE.po | 2 +- addons/hr/i18n/gl.po | 2 +- addons/hr/i18n/gu.po | 2 +- addons/hr/i18n/hi.po | 2 +- addons/hr/i18n/hr.po | 2 +- addons/hr/i18n/hu.po | 2 +- addons/hr/i18n/id.po | 2 +- addons/hr/i18n/it.po | 2 +- addons/hr/i18n/ja.po | 2 +- addons/hr/i18n/ko.po | 2 +- addons/hr/i18n/lo.po | 2 +- addons/hr/i18n/lt.po | 2 +- addons/hr/i18n/lv.po | 2 +- addons/hr/i18n/mk.po | 2 +- addons/hr/i18n/mn.po | 2 +- addons/hr/i18n/nb.po | 2 +- addons/hr/i18n/nl.po | 2 +- addons/hr/i18n/nl_BE.po | 2 +- addons/hr/i18n/pl.po | 2 +- addons/hr/i18n/pt.po | 2 +- addons/hr/i18n/pt_BR.po | 2 +- addons/hr/i18n/ro.po | 2 +- addons/hr/i18n/ru.po | 2 +- addons/hr/i18n/sk.po | 2 +- addons/hr/i18n/sl.po | 2 +- addons/hr/i18n/sq.po | 2 +- addons/hr/i18n/sr.po | 2 +- addons/hr/i18n/sr@latin.po | 2 +- addons/hr/i18n/sv.po | 2 +- addons/hr/i18n/th.po | 2 +- addons/hr/i18n/tlh.po | 2 +- addons/hr/i18n/tr.po | 2 +- addons/hr/i18n/uk.po | 2 +- addons/hr/i18n/vi.po | 2 +- addons/hr/i18n/zh_CN.po | 2 +- addons/hr/i18n/zh_TW.po | 2 +- addons/hr_attendance/i18n/ar.po | 2 +- addons/hr_attendance/i18n/bg.po | 2 +- addons/hr_attendance/i18n/bs.po | 2 +- addons/hr_attendance/i18n/ca.po | 2 +- addons/hr_attendance/i18n/cs.po | 2 +- addons/hr_attendance/i18n/da.po | 2 +- addons/hr_attendance/i18n/de.po | 2 +- addons/hr_attendance/i18n/el.po | 2 +- addons/hr_attendance/i18n/en_GB.po | 2 +- addons/hr_attendance/i18n/es.po | 2 +- addons/hr_attendance/i18n/es_AR.po | 2 +- addons/hr_attendance/i18n/es_CL.po | 2 +- addons/hr_attendance/i18n/es_CR.po | 2 +- addons/hr_attendance/i18n/es_EC.po | 2 +- addons/hr_attendance/i18n/es_PY.po | 2 +- addons/hr_attendance/i18n/et.po | 2 +- addons/hr_attendance/i18n/fi.po | 2 +- addons/hr_attendance/i18n/fr.po | 2 +- addons/hr_attendance/i18n/gl.po | 2 +- addons/hr_attendance/i18n/he.po | 2 +- addons/hr_attendance/i18n/hr.po | 2 +- addons/hr_attendance/i18n/hu.po | 2 +- addons/hr_attendance/i18n/id.po | 2 +- addons/hr_attendance/i18n/it.po | 2 +- addons/hr_attendance/i18n/ja.po | 2 +- addons/hr_attendance/i18n/ko.po | 2 +- addons/hr_attendance/i18n/lt.po | 2 +- addons/hr_attendance/i18n/lv.po | 2 +- addons/hr_attendance/i18n/mk.po | 2 +- addons/hr_attendance/i18n/mn.po | 2 +- addons/hr_attendance/i18n/nb.po | 2 +- addons/hr_attendance/i18n/nl.po | 2 +- addons/hr_attendance/i18n/nl_BE.po | 2 +- addons/hr_attendance/i18n/pl.po | 2 +- addons/hr_attendance/i18n/pt.po | 2 +- addons/hr_attendance/i18n/pt_BR.po | 2 +- addons/hr_attendance/i18n/ro.po | 2 +- addons/hr_attendance/i18n/ru.po | 2 +- addons/hr_attendance/i18n/sl.po | 2 +- addons/hr_attendance/i18n/sq.po | 2 +- addons/hr_attendance/i18n/sr.po | 2 +- addons/hr_attendance/i18n/sr@latin.po | 2 +- addons/hr_attendance/i18n/sv.po | 2 +- addons/hr_attendance/i18n/tlh.po | 2 +- addons/hr_attendance/i18n/tr.po | 2 +- addons/hr_attendance/i18n/uk.po | 2 +- addons/hr_attendance/i18n/vi.po | 2 +- addons/hr_attendance/i18n/zh_CN.po | 2 +- addons/hr_attendance/i18n/zh_TW.po | 2 +- addons/hr_contract/i18n/ar.po | 2 +- addons/hr_contract/i18n/bg.po | 2 +- addons/hr_contract/i18n/bs.po | 2 +- addons/hr_contract/i18n/ca.po | 2 +- addons/hr_contract/i18n/cs.po | 2 +- addons/hr_contract/i18n/da.po | 2 +- addons/hr_contract/i18n/de.po | 2 +- addons/hr_contract/i18n/el.po | 2 +- addons/hr_contract/i18n/en_GB.po | 2 +- addons/hr_contract/i18n/es.po | 2 +- addons/hr_contract/i18n/es_AR.po | 2 +- addons/hr_contract/i18n/es_CR.po | 2 +- addons/hr_contract/i18n/es_EC.po | 2 +- addons/hr_contract/i18n/es_PY.po | 2 +- addons/hr_contract/i18n/et.po | 2 +- addons/hr_contract/i18n/fi.po | 2 +- addons/hr_contract/i18n/fr.po | 2 +- addons/hr_contract/i18n/gl.po | 2 +- addons/hr_contract/i18n/gu.po | 2 +- addons/hr_contract/i18n/hi.po | 2 +- addons/hr_contract/i18n/hr.po | 2 +- addons/hr_contract/i18n/hu.po | 2 +- addons/hr_contract/i18n/id.po | 2 +- addons/hr_contract/i18n/it.po | 2 +- addons/hr_contract/i18n/ja.po | 2 +- addons/hr_contract/i18n/ko.po | 2 +- addons/hr_contract/i18n/lo.po | 2 +- addons/hr_contract/i18n/lt.po | 2 +- addons/hr_contract/i18n/lv.po | 2 +- addons/hr_contract/i18n/mk.po | 2 +- addons/hr_contract/i18n/mn.po | 2 +- addons/hr_contract/i18n/nb.po | 2 +- addons/hr_contract/i18n/nl.po | 2 +- addons/hr_contract/i18n/nl_BE.po | 2 +- addons/hr_contract/i18n/pl.po | 2 +- addons/hr_contract/i18n/pt.po | 2 +- addons/hr_contract/i18n/pt_BR.po | 2 +- addons/hr_contract/i18n/ro.po | 2 +- addons/hr_contract/i18n/ru.po | 2 +- addons/hr_contract/i18n/sl.po | 2 +- addons/hr_contract/i18n/sq.po | 2 +- addons/hr_contract/i18n/sr.po | 2 +- addons/hr_contract/i18n/sr@latin.po | 2 +- addons/hr_contract/i18n/sv.po | 2 +- addons/hr_contract/i18n/tlh.po | 2 +- addons/hr_contract/i18n/tr.po | 2 +- addons/hr_contract/i18n/uk.po | 2 +- addons/hr_contract/i18n/vi.po | 2 +- addons/hr_contract/i18n/zh_CN.po | 2 +- addons/hr_contract/i18n/zh_TW.po | 2 +- addons/hr_evaluation/i18n/ar.po | 2 +- addons/hr_evaluation/i18n/bg.po | 2 +- addons/hr_evaluation/i18n/ca.po | 2 +- addons/hr_evaluation/i18n/da.po | 2 +- addons/hr_evaluation/i18n/de.po | 2 +- addons/hr_evaluation/i18n/es.po | 2 +- addons/hr_evaluation/i18n/es_CR.po | 2 +- addons/hr_evaluation/i18n/es_EC.po | 2 +- addons/hr_evaluation/i18n/et.po | 2 +- addons/hr_evaluation/i18n/fi.po | 2 +- addons/hr_evaluation/i18n/fr.po | 2 +- addons/hr_evaluation/i18n/gl.po | 2 +- addons/hr_evaluation/i18n/hr.po | 2 +- addons/hr_evaluation/i18n/hu.po | 2 +- addons/hr_evaluation/i18n/id.po | 2 +- addons/hr_evaluation/i18n/it.po | 2 +- addons/hr_evaluation/i18n/ja.po | 2 +- addons/hr_evaluation/i18n/mk.po | 2 +- addons/hr_evaluation/i18n/mn.po | 2 +- addons/hr_evaluation/i18n/nl.po | 2 +- addons/hr_evaluation/i18n/pt.po | 2 +- addons/hr_evaluation/i18n/pt_BR.po | 2 +- addons/hr_evaluation/i18n/ro.po | 2 +- addons/hr_evaluation/i18n/ru.po | 2 +- addons/hr_evaluation/i18n/sl.po | 2 +- addons/hr_evaluation/i18n/sr.po | 2 +- addons/hr_evaluation/i18n/sr@latin.po | 2 +- addons/hr_evaluation/i18n/sv.po | 2 +- addons/hr_evaluation/i18n/tr.po | 2 +- addons/hr_evaluation/i18n/zh_CN.po | 2 +- addons/hr_expense/i18n/ar.po | 2 +- addons/hr_expense/i18n/bg.po | 2 +- addons/hr_expense/i18n/bs.po | 2 +- addons/hr_expense/i18n/ca.po | 2 +- addons/hr_expense/i18n/cs.po | 2 +- addons/hr_expense/i18n/da.po | 2 +- addons/hr_expense/i18n/de.po | 2 +- addons/hr_expense/i18n/el.po | 2 +- addons/hr_expense/i18n/es.po | 2 +- addons/hr_expense/i18n/es_AR.po | 2 +- addons/hr_expense/i18n/es_CR.po | 2 +- addons/hr_expense/i18n/es_EC.po | 2 +- addons/hr_expense/i18n/et.po | 2 +- addons/hr_expense/i18n/fi.po | 2 +- addons/hr_expense/i18n/fr.po | 2 +- addons/hr_expense/i18n/hr.po | 2 +- addons/hr_expense/i18n/hu.po | 2 +- addons/hr_expense/i18n/id.po | 2 +- addons/hr_expense/i18n/it.po | 2 +- addons/hr_expense/i18n/ja.po | 2 +- addons/hr_expense/i18n/ko.po | 2 +- addons/hr_expense/i18n/lt.po | 2 +- addons/hr_expense/i18n/lv.po | 2 +- addons/hr_expense/i18n/mk.po | 2 +- addons/hr_expense/i18n/mn.po | 2 +- addons/hr_expense/i18n/nb.po | 2 +- addons/hr_expense/i18n/nl.po | 4 +- addons/hr_expense/i18n/nl_BE.po | 2 +- addons/hr_expense/i18n/pl.po | 2 +- addons/hr_expense/i18n/pt.po | 2 +- addons/hr_expense/i18n/pt_BR.po | 2 +- addons/hr_expense/i18n/ro.po | 2 +- addons/hr_expense/i18n/ru.po | 2 +- addons/hr_expense/i18n/sl.po | 2 +- addons/hr_expense/i18n/sq.po | 2 +- addons/hr_expense/i18n/sr.po | 2 +- addons/hr_expense/i18n/sr@latin.po | 2 +- addons/hr_expense/i18n/sv.po | 2 +- addons/hr_expense/i18n/tlh.po | 2 +- addons/hr_expense/i18n/tr.po | 2 +- addons/hr_expense/i18n/uk.po | 2 +- addons/hr_expense/i18n/vi.po | 2 +- addons/hr_expense/i18n/zh_CN.po | 2 +- addons/hr_expense/i18n/zh_TW.po | 2 +- addons/hr_holidays/i18n/ar.po | 2 +- addons/hr_holidays/i18n/bg.po | 2 +- addons/hr_holidays/i18n/bs.po | 2 +- addons/hr_holidays/i18n/ca.po | 2 +- addons/hr_holidays/i18n/cs.po | 2 +- addons/hr_holidays/i18n/da.po | 2 +- addons/hr_holidays/i18n/de.po | 2 +- addons/hr_holidays/i18n/el.po | 2 +- addons/hr_holidays/i18n/es.po | 2 +- addons/hr_holidays/i18n/es_AR.po | 2 +- addons/hr_holidays/i18n/es_CR.po | 2 +- addons/hr_holidays/i18n/es_EC.po | 2 +- addons/hr_holidays/i18n/et.po | 2 +- addons/hr_holidays/i18n/fi.po | 2 +- addons/hr_holidays/i18n/fr.po | 2 +- addons/hr_holidays/i18n/gu.po | 2 +- addons/hr_holidays/i18n/hi.po | 2 +- addons/hr_holidays/i18n/hr.po | 2 +- addons/hr_holidays/i18n/hu.po | 2 +- addons/hr_holidays/i18n/id.po | 2 +- addons/hr_holidays/i18n/it.po | 2 +- addons/hr_holidays/i18n/ja.po | 2 +- addons/hr_holidays/i18n/ko.po | 2 +- addons/hr_holidays/i18n/lt.po | 2 +- addons/hr_holidays/i18n/lv.po | 2 +- addons/hr_holidays/i18n/mk.po | 2 +- addons/hr_holidays/i18n/mn.po | 2 +- addons/hr_holidays/i18n/nb.po | 2 +- addons/hr_holidays/i18n/nl.po | 2 +- addons/hr_holidays/i18n/nl_BE.po | 2 +- addons/hr_holidays/i18n/pl.po | 2 +- addons/hr_holidays/i18n/pt.po | 2 +- addons/hr_holidays/i18n/pt_BR.po | 2 +- addons/hr_holidays/i18n/ro.po | 2 +- addons/hr_holidays/i18n/ru.po | 2 +- addons/hr_holidays/i18n/sl.po | 2 +- addons/hr_holidays/i18n/sq.po | 2 +- addons/hr_holidays/i18n/sr.po | 2 +- addons/hr_holidays/i18n/sr@latin.po | 2 +- addons/hr_holidays/i18n/sv.po | 2 +- addons/hr_holidays/i18n/th.po | 2 +- addons/hr_holidays/i18n/tlh.po | 2 +- addons/hr_holidays/i18n/tr.po | 2 +- addons/hr_holidays/i18n/uk.po | 2 +- addons/hr_holidays/i18n/vi.po | 2 +- addons/hr_holidays/i18n/zh_CN.po | 2 +- addons/hr_holidays/i18n/zh_TW.po | 2 +- addons/hr_payroll/i18n/ar.po | 2 +- addons/hr_payroll/i18n/bg.po | 2 +- addons/hr_payroll/i18n/ca.po | 2 +- addons/hr_payroll/i18n/cs.po | 2 +- addons/hr_payroll/i18n/da.po | 2 +- addons/hr_payroll/i18n/de.po | 2 +- addons/hr_payroll/i18n/en_GB.po | 2 +- addons/hr_payroll/i18n/es.po | 2 +- addons/hr_payroll/i18n/es_CR.po | 2 +- addons/hr_payroll/i18n/es_EC.po | 2 +- addons/hr_payroll/i18n/es_MX.po | 2 +- addons/hr_payroll/i18n/et.po | 2 +- addons/hr_payroll/i18n/fi.po | 2 +- addons/hr_payroll/i18n/fr.po | 2 +- addons/hr_payroll/i18n/gl.po | 2 +- addons/hr_payroll/i18n/gu.po | 2 +- addons/hr_payroll/i18n/he.po | 2 +- addons/hr_payroll/i18n/hr.po | 2 +- addons/hr_payroll/i18n/hu.po | 2 +- addons/hr_payroll/i18n/id.po | 2 +- addons/hr_payroll/i18n/it.po | 2 +- addons/hr_payroll/i18n/ja.po | 2 +- addons/hr_payroll/i18n/lo.po | 2 +- addons/hr_payroll/i18n/lt.po | 2 +- addons/hr_payroll/i18n/lv.po | 2 +- addons/hr_payroll/i18n/mk.po | 2 +- addons/hr_payroll/i18n/mn.po | 2 +- addons/hr_payroll/i18n/nb.po | 2 +- addons/hr_payroll/i18n/nl.po | 4 +- addons/hr_payroll/i18n/pl.po | 2 +- addons/hr_payroll/i18n/pt.po | 2 +- addons/hr_payroll/i18n/pt_BR.po | 2 +- addons/hr_payroll/i18n/ro.po | 2 +- addons/hr_payroll/i18n/ru.po | 2 +- addons/hr_payroll/i18n/sl.po | 2 +- addons/hr_payroll/i18n/sr.po | 2 +- addons/hr_payroll/i18n/sr@latin.po | 2 +- addons/hr_payroll/i18n/sv.po | 2 +- addons/hr_payroll/i18n/tr.po | 2 +- addons/hr_payroll/i18n/vi.po | 2 +- addons/hr_payroll/i18n/zh_CN.po | 2 +- addons/hr_payroll_account/i18n/ar.po | 2 +- addons/hr_payroll_account/i18n/bg.po | 2 +- addons/hr_payroll_account/i18n/ca.po | 2 +- addons/hr_payroll_account/i18n/da.po | 2 +- addons/hr_payroll_account/i18n/de.po | 2 +- addons/hr_payroll_account/i18n/en_GB.po | 2 +- addons/hr_payroll_account/i18n/es.po | 2 +- addons/hr_payroll_account/i18n/es_CR.po | 2 +- addons/hr_payroll_account/i18n/es_EC.po | 2 +- addons/hr_payroll_account/i18n/es_PY.po | 2 +- addons/hr_payroll_account/i18n/fr.po | 2 +- addons/hr_payroll_account/i18n/gl.po | 2 +- addons/hr_payroll_account/i18n/gu.po | 2 +- addons/hr_payroll_account/i18n/hr.po | 2 +- addons/hr_payroll_account/i18n/hu.po | 2 +- addons/hr_payroll_account/i18n/id.po | 2 +- addons/hr_payroll_account/i18n/it.po | 2 +- addons/hr_payroll_account/i18n/ja.po | 2 +- addons/hr_payroll_account/i18n/lv.po | 2 +- addons/hr_payroll_account/i18n/mk.po | 2 +- addons/hr_payroll_account/i18n/mn.po | 2 +- addons/hr_payroll_account/i18n/nb.po | 2 +- addons/hr_payroll_account/i18n/nl.po | 2 +- addons/hr_payroll_account/i18n/pl.po | 2 +- addons/hr_payroll_account/i18n/pt.po | 2 +- addons/hr_payroll_account/i18n/pt_BR.po | 2 +- addons/hr_payroll_account/i18n/ro.po | 2 +- addons/hr_payroll_account/i18n/ru.po | 2 +- addons/hr_payroll_account/i18n/sl.po | 2 +- addons/hr_payroll_account/i18n/sr@latin.po | 2 +- addons/hr_payroll_account/i18n/sv.po | 2 +- addons/hr_payroll_account/i18n/tr.po | 2 +- addons/hr_payroll_account/i18n/zh_CN.po | 2 +- addons/hr_recruitment/i18n/ar.po | 2 +- addons/hr_recruitment/i18n/bg.po | 2 +- addons/hr_recruitment/i18n/ca.po | 2 +- addons/hr_recruitment/i18n/da.po | 2 +- addons/hr_recruitment/i18n/de.po | 2 +- addons/hr_recruitment/i18n/es.po | 2 +- addons/hr_recruitment/i18n/es_CR.po | 2 +- addons/hr_recruitment/i18n/fr.po | 2 +- addons/hr_recruitment/i18n/hi.po | 2 +- addons/hr_recruitment/i18n/hr.po | 2 +- addons/hr_recruitment/i18n/hu.po | 2 +- addons/hr_recruitment/i18n/id.po | 2 +- addons/hr_recruitment/i18n/it.po | 2 +- addons/hr_recruitment/i18n/ja.po | 2 +- addons/hr_recruitment/i18n/mk.po | 2 +- addons/hr_recruitment/i18n/mn.po | 2 +- addons/hr_recruitment/i18n/nb.po | 2 +- addons/hr_recruitment/i18n/nl.po | 2 +- addons/hr_recruitment/i18n/pl.po | 2 +- addons/hr_recruitment/i18n/pt.po | 2 +- addons/hr_recruitment/i18n/pt_BR.po | 2 +- addons/hr_recruitment/i18n/ro.po | 2 +- addons/hr_recruitment/i18n/ru.po | 2 +- addons/hr_recruitment/i18n/sl.po | 2 +- addons/hr_recruitment/i18n/sr.po | 2 +- addons/hr_recruitment/i18n/sr@latin.po | 2 +- addons/hr_recruitment/i18n/sv.po | 2 +- addons/hr_recruitment/i18n/tr.po | 2 +- addons/hr_recruitment/i18n/vi.po | 2 +- addons/hr_recruitment/i18n/zh_CN.po | 2 +- addons/hr_timesheet/i18n/ar.po | 2 +- addons/hr_timesheet/i18n/bg.po | 2 +- addons/hr_timesheet/i18n/bs.po | 2 +- addons/hr_timesheet/i18n/ca.po | 2 +- addons/hr_timesheet/i18n/cs.po | 2 +- addons/hr_timesheet/i18n/da.po | 2 +- addons/hr_timesheet/i18n/de.po | 2 +- addons/hr_timesheet/i18n/el.po | 2 +- addons/hr_timesheet/i18n/en_GB.po | 2 +- addons/hr_timesheet/i18n/es.po | 2 +- addons/hr_timesheet/i18n/es_AR.po | 2 +- addons/hr_timesheet/i18n/es_CR.po | 2 +- addons/hr_timesheet/i18n/es_EC.po | 2 +- addons/hr_timesheet/i18n/et.po | 2 +- addons/hr_timesheet/i18n/fi.po | 2 +- addons/hr_timesheet/i18n/fr.po | 2 +- addons/hr_timesheet/i18n/gl.po | 2 +- addons/hr_timesheet/i18n/hr.po | 2 +- addons/hr_timesheet/i18n/hu.po | 2 +- addons/hr_timesheet/i18n/id.po | 2 +- addons/hr_timesheet/i18n/it.po | 2 +- addons/hr_timesheet/i18n/ja.po | 2 +- addons/hr_timesheet/i18n/ko.po | 2 +- addons/hr_timesheet/i18n/lt.po | 2 +- addons/hr_timesheet/i18n/lv.po | 2 +- addons/hr_timesheet/i18n/mk.po | 2 +- addons/hr_timesheet/i18n/mn.po | 2 +- addons/hr_timesheet/i18n/nb.po | 2 +- addons/hr_timesheet/i18n/nl.po | 2 +- addons/hr_timesheet/i18n/pl.po | 2 +- addons/hr_timesheet/i18n/pt.po | 2 +- addons/hr_timesheet/i18n/pt_BR.po | 2 +- addons/hr_timesheet/i18n/ro.po | 2 +- addons/hr_timesheet/i18n/ru.po | 2 +- addons/hr_timesheet/i18n/sl.po | 2 +- addons/hr_timesheet/i18n/sq.po | 2 +- addons/hr_timesheet/i18n/sr@latin.po | 2 +- addons/hr_timesheet/i18n/sv.po | 2 +- addons/hr_timesheet/i18n/tlh.po | 2 +- addons/hr_timesheet/i18n/tr.po | 2 +- addons/hr_timesheet/i18n/uk.po | 2 +- addons/hr_timesheet/i18n/vi.po | 2 +- addons/hr_timesheet/i18n/zh_CN.po | 2 +- addons/hr_timesheet/i18n/zh_TW.po | 2 +- addons/hr_timesheet_invoice/i18n/ar.po | 2 +- addons/hr_timesheet_invoice/i18n/bg.po | 2 +- addons/hr_timesheet_invoice/i18n/bs.po | 2 +- addons/hr_timesheet_invoice/i18n/ca.po | 2 +- addons/hr_timesheet_invoice/i18n/cs.po | 2 +- addons/hr_timesheet_invoice/i18n/da.po | 2 +- addons/hr_timesheet_invoice/i18n/de.po | 2 +- addons/hr_timesheet_invoice/i18n/el.po | 2 +- addons/hr_timesheet_invoice/i18n/es.po | 2 +- addons/hr_timesheet_invoice/i18n/es_AR.po | 2 +- addons/hr_timesheet_invoice/i18n/es_CR.po | 2 +- addons/hr_timesheet_invoice/i18n/es_EC.po | 2 +- addons/hr_timesheet_invoice/i18n/et.po | 2 +- addons/hr_timesheet_invoice/i18n/fi.po | 2 +- addons/hr_timesheet_invoice/i18n/fr.po | 2 +- addons/hr_timesheet_invoice/i18n/hr.po | 2 +- addons/hr_timesheet_invoice/i18n/hu.po | 2 +- addons/hr_timesheet_invoice/i18n/id.po | 2 +- addons/hr_timesheet_invoice/i18n/it.po | 2 +- addons/hr_timesheet_invoice/i18n/ja.po | 2 +- addons/hr_timesheet_invoice/i18n/ko.po | 2 +- addons/hr_timesheet_invoice/i18n/lt.po | 2 +- addons/hr_timesheet_invoice/i18n/lv.po | 2 +- addons/hr_timesheet_invoice/i18n/mk.po | 2 +- addons/hr_timesheet_invoice/i18n/mn.po | 2 +- addons/hr_timesheet_invoice/i18n/nl.po | 2 +- addons/hr_timesheet_invoice/i18n/nl_BE.po | 2 +- addons/hr_timesheet_invoice/i18n/pl.po | 2 +- addons/hr_timesheet_invoice/i18n/pt.po | 2 +- addons/hr_timesheet_invoice/i18n/pt_BR.po | 2 +- addons/hr_timesheet_invoice/i18n/ro.po | 2 +- addons/hr_timesheet_invoice/i18n/ru.po | 2 +- addons/hr_timesheet_invoice/i18n/sl.po | 2 +- addons/hr_timesheet_invoice/i18n/sq.po | 2 +- addons/hr_timesheet_invoice/i18n/sr@latin.po | 2 +- addons/hr_timesheet_invoice/i18n/sv.po | 2 +- addons/hr_timesheet_invoice/i18n/tlh.po | 2 +- addons/hr_timesheet_invoice/i18n/tr.po | 2 +- addons/hr_timesheet_invoice/i18n/uk.po | 2 +- addons/hr_timesheet_invoice/i18n/vi.po | 2 +- addons/hr_timesheet_invoice/i18n/zh_CN.po | 2 +- addons/hr_timesheet_invoice/i18n/zh_TW.po | 2 +- addons/hr_timesheet_sheet/i18n/ar.po | 2 +- addons/hr_timesheet_sheet/i18n/bg.po | 2 +- addons/hr_timesheet_sheet/i18n/bs.po | 2 +- addons/hr_timesheet_sheet/i18n/ca.po | 2 +- addons/hr_timesheet_sheet/i18n/cs.po | 2 +- addons/hr_timesheet_sheet/i18n/da.po | 2 +- addons/hr_timesheet_sheet/i18n/de.po | 2 +- addons/hr_timesheet_sheet/i18n/el.po | 2 +- addons/hr_timesheet_sheet/i18n/es.po | 2 +- addons/hr_timesheet_sheet/i18n/es_AR.po | 2 +- addons/hr_timesheet_sheet/i18n/es_CR.po | 2 +- addons/hr_timesheet_sheet/i18n/es_EC.po | 2 +- addons/hr_timesheet_sheet/i18n/et.po | 2 +- addons/hr_timesheet_sheet/i18n/fi.po | 2 +- addons/hr_timesheet_sheet/i18n/fr.po | 2 +- addons/hr_timesheet_sheet/i18n/hr.po | 2 +- addons/hr_timesheet_sheet/i18n/hu.po | 2 +- addons/hr_timesheet_sheet/i18n/id.po | 2 +- addons/hr_timesheet_sheet/i18n/it.po | 2 +- addons/hr_timesheet_sheet/i18n/ja.po | 2 +- addons/hr_timesheet_sheet/i18n/ko.po | 2 +- addons/hr_timesheet_sheet/i18n/lt.po | 2 +- addons/hr_timesheet_sheet/i18n/lv.po | 2 +- addons/hr_timesheet_sheet/i18n/mk.po | 2 +- addons/hr_timesheet_sheet/i18n/mn.po | 2 +- addons/hr_timesheet_sheet/i18n/nl.po | 4 +- addons/hr_timesheet_sheet/i18n/nl_BE.po | 2 +- addons/hr_timesheet_sheet/i18n/pl.po | 2 +- addons/hr_timesheet_sheet/i18n/pt.po | 2 +- addons/hr_timesheet_sheet/i18n/pt_BR.po | 2 +- addons/hr_timesheet_sheet/i18n/ro.po | 2 +- addons/hr_timesheet_sheet/i18n/ru.po | 2 +- addons/hr_timesheet_sheet/i18n/sk.po | 2 +- addons/hr_timesheet_sheet/i18n/sl.po | 2 +- addons/hr_timesheet_sheet/i18n/sq.po | 2 +- addons/hr_timesheet_sheet/i18n/sv.po | 2 +- addons/hr_timesheet_sheet/i18n/tlh.po | 2 +- addons/hr_timesheet_sheet/i18n/tr.po | 2 +- addons/hr_timesheet_sheet/i18n/uk.po | 2 +- addons/hr_timesheet_sheet/i18n/vi.po | 2 +- addons/hr_timesheet_sheet/i18n/zh_CN.po | 2 +- addons/hr_timesheet_sheet/i18n/zh_TW.po | 2 +- addons/knowledge/i18n/ar.po | 2 +- addons/knowledge/i18n/bg.po | 2 +- addons/knowledge/i18n/ca.po | 2 +- addons/knowledge/i18n/cs.po | 2 +- addons/knowledge/i18n/da.po | 2 +- addons/knowledge/i18n/de.po | 2 +- addons/knowledge/i18n/en_GB.po | 2 +- addons/knowledge/i18n/es.po | 2 +- addons/knowledge/i18n/es_AR.po | 2 +- addons/knowledge/i18n/es_CR.po | 2 +- addons/knowledge/i18n/et.po | 2 +- addons/knowledge/i18n/fi.po | 2 +- addons/knowledge/i18n/fr.po | 2 +- addons/knowledge/i18n/gl.po | 2 +- addons/knowledge/i18n/hi.po | 2 +- addons/knowledge/i18n/hr.po | 2 +- addons/knowledge/i18n/hu.po | 2 +- addons/knowledge/i18n/it.po | 2 +- addons/knowledge/i18n/ja.po | 2 +- addons/knowledge/i18n/lo.po | 2 +- addons/knowledge/i18n/lv.po | 2 +- addons/knowledge/i18n/mk.po | 2 +- addons/knowledge/i18n/mn.po | 2 +- addons/knowledge/i18n/nb.po | 2 +- addons/knowledge/i18n/nl.po | 2 +- addons/knowledge/i18n/nl_BE.po | 2 +- addons/knowledge/i18n/pl.po | 2 +- addons/knowledge/i18n/pt.po | 2 +- addons/knowledge/i18n/pt_BR.po | 2 +- addons/knowledge/i18n/ro.po | 2 +- addons/knowledge/i18n/ru.po | 2 +- addons/knowledge/i18n/sk.po | 2 +- addons/knowledge/i18n/sl.po | 2 +- addons/knowledge/i18n/sr.po | 2 +- addons/knowledge/i18n/sr@latin.po | 2 +- addons/knowledge/i18n/sv.po | 2 +- addons/knowledge/i18n/tr.po | 2 +- addons/knowledge/i18n/zh_CN.po | 2 +- addons/knowledge/i18n/zh_TW.po | 2 +- addons/l10n_be_coda/i18n/ar.po | 2 +- addons/l10n_be_coda/i18n/bg.po | 2 +- addons/l10n_be_coda/i18n/ca.po | 2 +- addons/l10n_be_coda/i18n/da.po | 2 +- addons/l10n_be_coda/i18n/de.po | 2 +- addons/l10n_be_coda/i18n/el.po | 2 +- addons/l10n_be_coda/i18n/en_AU.po | 2 +- addons/l10n_be_coda/i18n/en_GB.po | 2 +- addons/l10n_be_coda/i18n/es.po | 2 +- addons/l10n_be_coda/i18n/es_CR.po | 2 +- addons/l10n_be_coda/i18n/es_EC.po | 2 +- addons/l10n_be_coda/i18n/es_PY.po | 2 +- addons/l10n_be_coda/i18n/et.po | 2 +- addons/l10n_be_coda/i18n/fa.po | 2 +- addons/l10n_be_coda/i18n/fi.po | 2 +- addons/l10n_be_coda/i18n/fr.po | 2 +- addons/l10n_be_coda/i18n/gl.po | 2 +- addons/l10n_be_coda/i18n/hr.po | 2 +- addons/l10n_be_coda/i18n/hu.po | 2 +- addons/l10n_be_coda/i18n/it.po | 2 +- addons/l10n_be_coda/i18n/ja.po | 2 +- addons/l10n_be_coda/i18n/lv.po | 2 +- addons/l10n_be_coda/i18n/mk.po | 2 +- addons/l10n_be_coda/i18n/mn.po | 2 +- addons/l10n_be_coda/i18n/nb.po | 2 +- addons/l10n_be_coda/i18n/nl.po | 2 +- addons/l10n_be_coda/i18n/nl_BE.po | 2 +- addons/l10n_be_coda/i18n/pl.po | 2 +- addons/l10n_be_coda/i18n/pt.po | 2 +- addons/l10n_be_coda/i18n/pt_BR.po | 2 +- addons/l10n_be_coda/i18n/ro.po | 2 +- addons/l10n_be_coda/i18n/ru.po | 2 +- addons/l10n_be_coda/i18n/sl.po | 2 +- addons/l10n_be_coda/i18n/sq.po | 2 +- addons/l10n_be_coda/i18n/sr.po | 2 +- addons/l10n_be_coda/i18n/sr@latin.po | 2 +- addons/l10n_be_coda/i18n/sv.po | 2 +- addons/l10n_be_coda/i18n/tr.po | 2 +- addons/l10n_be_coda/i18n/vi.po | 2 +- addons/l10n_be_coda/i18n/zh_CN.po | 2 +- addons/l10n_be_coda/i18n/zh_TW.po | 2 +- addons/l10n_be_hr_payroll/i18n/de.po | 2 +- addons/l10n_be_hr_payroll/i18n/es.po | 2 +- addons/l10n_be_hr_payroll/i18n/es_CR.po | 2 +- addons/l10n_be_hr_payroll/i18n/pt.po | 2 +- addons/l10n_be_hr_payroll/i18n/pt_BR.po | 2 +- addons/l10n_be_hr_payroll/i18n/sl.po | 2 +- addons/l10n_be_hr_payroll/i18n/sr@latin.po | 2 +- addons/l10n_be_hr_payroll/i18n/tr.po | 2 +- addons/l10n_be_invoice_bba/i18n/ar.po | 2 +- addons/l10n_be_invoice_bba/i18n/es.po | 2 +- addons/l10n_be_invoice_bba/i18n/es_CR.po | 2 +- addons/l10n_be_invoice_bba/i18n/fr.po | 2 +- addons/l10n_be_invoice_bba/i18n/nb.po | 2 +- addons/l10n_be_invoice_bba/i18n/nl.po | 2 +- addons/l10n_be_invoice_bba/i18n/nl_BE.po | 2 +- addons/l10n_be_invoice_bba/i18n/pt.po | 2 +- addons/l10n_be_invoice_bba/i18n/pt_BR.po | 2 +- addons/l10n_be_invoice_bba/i18n/sl.po | 2 +- addons/l10n_be_invoice_bba/i18n/sr@latin.po | 2 +- addons/l10n_be_invoice_bba/i18n/tr.po | 2 +- addons/l10n_bo/i18n/es.po | 2 +- addons/l10n_bo/i18n/it.po | 2 +- addons/l10n_bo/i18n/pt.po | 2 +- addons/l10n_bo/i18n/pt_BR.po | 2 +- addons/l10n_bo/i18n/sl.po | 2 +- addons/l10n_bo/i18n/tr.po | 2 +- addons/l10n_fr/i18n/ar.po | 2 +- addons/l10n_fr/i18n/bg.po | 2 +- addons/l10n_fr/i18n/bs.po | 2 +- addons/l10n_fr/i18n/ca.po | 2 +- addons/l10n_fr/i18n/cs.po | 2 +- addons/l10n_fr/i18n/da.po | 2 +- addons/l10n_fr/i18n/de.po | 2 +- addons/l10n_fr/i18n/es.po | 2 +- addons/l10n_fr/i18n/es_AR.po | 2 +- addons/l10n_fr/i18n/es_CR.po | 2 +- addons/l10n_fr/i18n/es_PY.po | 2 +- addons/l10n_fr/i18n/et.po | 2 +- addons/l10n_fr/i18n/fr.po | 2 +- addons/l10n_fr/i18n/gl.po | 2 +- addons/l10n_fr/i18n/hr.po | 2 +- addons/l10n_fr/i18n/hu.po | 2 +- addons/l10n_fr/i18n/id.po | 2 +- addons/l10n_fr/i18n/it.po | 2 +- addons/l10n_fr/i18n/ko.po | 2 +- addons/l10n_fr/i18n/lt.po | 2 +- addons/l10n_fr/i18n/nl.po | 2 +- addons/l10n_fr/i18n/nl_BE.po | 2 +- addons/l10n_fr/i18n/oc.po | 2 +- addons/l10n_fr/i18n/pl.po | 2 +- addons/l10n_fr/i18n/pt.po | 2 +- addons/l10n_fr/i18n/pt_BR.po | 2 +- addons/l10n_fr/i18n/ro.po | 2 +- addons/l10n_fr/i18n/ru.po | 2 +- addons/l10n_fr/i18n/sl.po | 2 +- addons/l10n_fr/i18n/sq.po | 2 +- addons/l10n_fr/i18n/sr@latin.po | 2 +- addons/l10n_fr/i18n/sv.po | 2 +- addons/l10n_fr/i18n/tlh.po | 2 +- addons/l10n_fr/i18n/tr.po | 2 +- addons/l10n_fr/i18n/uk.po | 2 +- addons/l10n_fr/i18n/vi.po | 2 +- addons/l10n_fr/i18n/zh_CN.po | 2 +- addons/l10n_fr/i18n/zh_TW.po | 2 +- addons/l10n_fr_rib/i18n/ar.po | 2 +- addons/l10n_fr_rib/i18n/es.po | 2 +- addons/l10n_fr_rib/i18n/es_CR.po | 2 +- addons/l10n_fr_rib/i18n/fr.po | 2 +- addons/l10n_fr_rib/i18n/pt.po | 2 +- addons/l10n_fr_rib/i18n/pt_BR.po | 2 +- addons/l10n_fr_rib/i18n/sl.po | 2 +- addons/l10n_fr_rib/i18n/tr.po | 2 +- addons/l10n_in_hr_payroll/i18n/bn.po | 2 +- addons/l10n_in_hr_payroll/i18n/es.po | 2 +- addons/l10n_in_hr_payroll/i18n/gu.po | 2 +- addons/l10n_in_hr_payroll/i18n/hi.po | 2 +- addons/l10n_in_hr_payroll/i18n/pl.po | 2 +- addons/l10n_in_hr_payroll/i18n/pt.po | 2 +- addons/l10n_in_hr_payroll/i18n/pt_BR.po | 2 +- addons/l10n_in_hr_payroll/i18n/sl.po | 2 +- addons/l10n_in_hr_payroll/i18n/ta.po | 2 +- addons/l10n_in_hr_payroll/i18n/te.po | 2 +- addons/l10n_in_hr_payroll/i18n/tr.po | 2 +- addons/l10n_multilang/i18n/ar.po | 2 +- addons/l10n_multilang/i18n/de.po | 2 +- addons/l10n_multilang/i18n/es.po | 2 +- addons/l10n_multilang/i18n/es_CR.po | 2 +- addons/l10n_multilang/i18n/fr.po | 2 +- addons/l10n_multilang/i18n/hr.po | 2 +- addons/l10n_multilang/i18n/hu.po | 2 +- addons/l10n_multilang/i18n/mn.po | 2 +- addons/l10n_multilang/i18n/nl.po | 2 +- addons/l10n_multilang/i18n/pl.po | 2 +- addons/l10n_multilang/i18n/pt.po | 2 +- addons/l10n_multilang/i18n/pt_BR.po | 2 +- addons/l10n_multilang/i18n/ro.po | 2 +- addons/l10n_multilang/i18n/sl.po | 2 +- addons/l10n_multilang/i18n/tr.po | 2 +- addons/lunch/i18n/ar.po | 2 +- addons/lunch/i18n/bg.po | 2 +- addons/lunch/i18n/ca.po | 2 +- addons/lunch/i18n/cs.po | 2 +- addons/lunch/i18n/da.po | 2 +- addons/lunch/i18n/de.po | 2 +- addons/lunch/i18n/es.po | 2 +- addons/lunch/i18n/es_CR.po | 2 +- addons/lunch/i18n/es_PY.po | 2 +- addons/lunch/i18n/fi.po | 2 +- addons/lunch/i18n/fr.po | 2 +- addons/lunch/i18n/gl.po | 2 +- addons/lunch/i18n/hr.po | 2 +- addons/lunch/i18n/hu.po | 2 +- addons/lunch/i18n/it.po | 2 +- addons/lunch/i18n/ja.po | 2 +- addons/lunch/i18n/mk.po | 2 +- addons/lunch/i18n/mn.po | 2 +- addons/lunch/i18n/nl.po | 2 +- addons/lunch/i18n/pt.po | 2 +- addons/lunch/i18n/pt_BR.po | 2 +- addons/lunch/i18n/ro.po | 2 +- addons/lunch/i18n/ru.po | 2 +- addons/lunch/i18n/sl.po | 2 +- addons/lunch/i18n/sr@latin.po | 2 +- addons/lunch/i18n/sv.po | 2 +- addons/lunch/i18n/tr.po | 2 +- addons/lunch/i18n/zh_CN.po | 2 +- addons/lunch/i18n/zh_TW.po | 2 +- addons/mail/i18n/ar.po | 2 +- addons/mail/i18n/bg.po | 2 +- addons/mail/i18n/ca.po | 2 +- addons/mail/i18n/da.po | 2 +- addons/mail/i18n/de.po | 2 +- addons/mail/i18n/es.po | 2 +- addons/mail/i18n/es_CR.po | 2 +- addons/mail/i18n/es_MX.po | 2 +- addons/mail/i18n/es_PY.po | 2 +- addons/mail/i18n/et.po | 2 +- addons/mail/i18n/fi.po | 2 +- addons/mail/i18n/fr.po | 2 +- addons/mail/i18n/gl.po | 2 +- addons/mail/i18n/hr.po | 2 +- addons/mail/i18n/hu.po | 2 +- addons/mail/i18n/it.po | 2 +- addons/mail/i18n/ja.po | 2 +- addons/mail/i18n/lt.po | 2 +- addons/mail/i18n/lv.po | 2 +- addons/mail/i18n/mk.po | 2 +- addons/mail/i18n/mn.po | 2 +- addons/mail/i18n/nl.po | 2 +- addons/mail/i18n/pl.po | 2 +- addons/mail/i18n/pt.po | 2 +- addons/mail/i18n/pt_BR.po | 2 +- addons/mail/i18n/ro.po | 2 +- addons/mail/i18n/ru.po | 2 +- addons/mail/i18n/sl.po | 2 +- addons/mail/i18n/sr@latin.po | 2 +- addons/mail/i18n/sv.po | 2 +- addons/mail/i18n/tr.po | 2 +- addons/mail/i18n/zh_CN.po | 2 +- addons/mail/i18n/zh_TW.po | 2 +- addons/marketing/i18n/ar.po | 2 +- addons/marketing/i18n/bg.po | 2 +- addons/marketing/i18n/ca.po | 2 +- addons/marketing/i18n/cs.po | 2 +- addons/marketing/i18n/da.po | 2 +- addons/marketing/i18n/de.po | 2 +- addons/marketing/i18n/el.po | 2 +- addons/marketing/i18n/es.po | 2 +- addons/marketing/i18n/es_CR.po | 2 +- addons/marketing/i18n/fi.po | 2 +- addons/marketing/i18n/fr.po | 2 +- addons/marketing/i18n/gl.po | 2 +- addons/marketing/i18n/hr.po | 2 +- addons/marketing/i18n/hu.po | 2 +- addons/marketing/i18n/id.po | 2 +- addons/marketing/i18n/it.po | 2 +- addons/marketing/i18n/ja.po | 2 +- addons/marketing/i18n/lt.po | 2 +- addons/marketing/i18n/lv.po | 2 +- addons/marketing/i18n/mk.po | 2 +- addons/marketing/i18n/mn.po | 2 +- addons/marketing/i18n/nb.po | 2 +- addons/marketing/i18n/nl.po | 2 +- addons/marketing/i18n/pl.po | 2 +- addons/marketing/i18n/pt.po | 2 +- addons/marketing/i18n/pt_BR.po | 2 +- addons/marketing/i18n/ro.po | 2 +- addons/marketing/i18n/ru.po | 2 +- addons/marketing/i18n/sk.po | 2 +- addons/marketing/i18n/sl.po | 2 +- addons/marketing/i18n/sr.po | 2 +- addons/marketing/i18n/sr@latin.po | 2 +- addons/marketing/i18n/sv.po | 2 +- addons/marketing/i18n/th.po | 2 +- addons/marketing/i18n/tr.po | 2 +- addons/marketing/i18n/zh_CN.po | 2 +- addons/marketing/i18n/zh_TW.po | 2 +- addons/marketing_campaign/i18n/ar.po | 2 +- addons/marketing_campaign/i18n/bg.po | 2 +- addons/marketing_campaign/i18n/ca.po | 2 +- addons/marketing_campaign/i18n/cs.po | 2 +- addons/marketing_campaign/i18n/da.po | 2 +- addons/marketing_campaign/i18n/de.po | 2 +- addons/marketing_campaign/i18n/el.po | 2 +- addons/marketing_campaign/i18n/es.po | 2 +- addons/marketing_campaign/i18n/es_CR.po | 2 +- addons/marketing_campaign/i18n/fi.po | 2 +- addons/marketing_campaign/i18n/fr.po | 2 +- addons/marketing_campaign/i18n/hi.po | 2 +- addons/marketing_campaign/i18n/hr.po | 2 +- addons/marketing_campaign/i18n/hu.po | 2 +- addons/marketing_campaign/i18n/it.po | 2 +- addons/marketing_campaign/i18n/ja.po | 2 +- addons/marketing_campaign/i18n/lv.po | 2 +- addons/marketing_campaign/i18n/mk.po | 2 +- addons/marketing_campaign/i18n/mn.po | 2 +- addons/marketing_campaign/i18n/nl.po | 2 +- addons/marketing_campaign/i18n/pl.po | 2 +- addons/marketing_campaign/i18n/pt.po | 2 +- addons/marketing_campaign/i18n/pt_BR.po | 2 +- addons/marketing_campaign/i18n/ro.po | 2 +- addons/marketing_campaign/i18n/ru.po | 2 +- addons/marketing_campaign/i18n/sl.po | 2 +- addons/marketing_campaign/i18n/sr@latin.po | 2 +- addons/marketing_campaign/i18n/sv.po | 2 +- addons/marketing_campaign/i18n/tr.po | 2 +- addons/marketing_campaign/i18n/zh_CN.po | 2 +- addons/marketing_campaign_crm_demo/i18n/ar.po | 2 +- addons/marketing_campaign_crm_demo/i18n/bg.po | 2 +- addons/marketing_campaign_crm_demo/i18n/ca.po | 2 +- addons/marketing_campaign_crm_demo/i18n/da.po | 2 +- addons/marketing_campaign_crm_demo/i18n/de.po | 2 +- addons/marketing_campaign_crm_demo/i18n/es.po | 2 +- .../marketing_campaign_crm_demo/i18n/es_CR.po | 2 +- addons/marketing_campaign_crm_demo/i18n/fr.po | 2 +- addons/marketing_campaign_crm_demo/i18n/gl.po | 2 +- addons/marketing_campaign_crm_demo/i18n/hr.po | 2 +- addons/marketing_campaign_crm_demo/i18n/hu.po | 2 +- addons/marketing_campaign_crm_demo/i18n/it.po | 2 +- addons/marketing_campaign_crm_demo/i18n/ja.po | 2 +- addons/marketing_campaign_crm_demo/i18n/mk.po | 2 +- addons/marketing_campaign_crm_demo/i18n/nb.po | 2 +- addons/marketing_campaign_crm_demo/i18n/nl.po | 2 +- addons/marketing_campaign_crm_demo/i18n/pt.po | 2 +- .../marketing_campaign_crm_demo/i18n/pt_BR.po | 2 +- addons/marketing_campaign_crm_demo/i18n/ro.po | 2 +- addons/marketing_campaign_crm_demo/i18n/ru.po | 2 +- addons/marketing_campaign_crm_demo/i18n/sl.po | 2 +- addons/marketing_campaign_crm_demo/i18n/sr.po | 2 +- .../i18n/sr@latin.po | 2 +- addons/marketing_campaign_crm_demo/i18n/tr.po | 2 +- .../marketing_campaign_crm_demo/i18n/zh_CN.po | 2 +- addons/membership/i18n/ar.po | 2 +- addons/membership/i18n/bg.po | 2 +- addons/membership/i18n/bs.po | 2 +- addons/membership/i18n/ca.po | 2 +- addons/membership/i18n/cs.po | 2 +- addons/membership/i18n/da.po | 2 +- addons/membership/i18n/de.po | 2 +- addons/membership/i18n/es.po | 2 +- addons/membership/i18n/es_AR.po | 2 +- addons/membership/i18n/es_CR.po | 2 +- addons/membership/i18n/et.po | 2 +- addons/membership/i18n/fi.po | 2 +- addons/membership/i18n/fr.po | 2 +- addons/membership/i18n/gl.po | 2 +- addons/membership/i18n/hr.po | 2 +- addons/membership/i18n/hu.po | 2 +- addons/membership/i18n/id.po | 2 +- addons/membership/i18n/it.po | 2 +- addons/membership/i18n/ja.po | 2 +- addons/membership/i18n/ko.po | 2 +- addons/membership/i18n/lt.po | 2 +- addons/membership/i18n/mk.po | 2 +- addons/membership/i18n/mn.po | 2 +- addons/membership/i18n/nl.po | 2 +- addons/membership/i18n/nl_BE.po | 2 +- addons/membership/i18n/pl.po | 2 +- addons/membership/i18n/pt.po | 2 +- addons/membership/i18n/pt_BR.po | 2 +- addons/membership/i18n/ro.po | 2 +- addons/membership/i18n/ru.po | 2 +- addons/membership/i18n/sk.po | 2 +- addons/membership/i18n/sl.po | 2 +- addons/membership/i18n/sq.po | 2 +- addons/membership/i18n/sr@latin.po | 2 +- addons/membership/i18n/sv.po | 2 +- addons/membership/i18n/tlh.po | 2 +- addons/membership/i18n/tr.po | 2 +- addons/membership/i18n/uk.po | 2 +- addons/membership/i18n/vi.po | 2 +- addons/membership/i18n/zh_CN.po | 2 +- addons/membership/i18n/zh_TW.po | 2 +- addons/mrp/i18n/ar.po | 2 +- addons/mrp/i18n/bg.po | 2 +- addons/mrp/i18n/bs.po | 2 +- addons/mrp/i18n/ca.po | 2 +- addons/mrp/i18n/cs.po | 2 +- addons/mrp/i18n/da.po | 2 +- addons/mrp/i18n/de.po | 2 +- addons/mrp/i18n/el.po | 2 +- addons/mrp/i18n/es.po | 2 +- addons/mrp/i18n/es_AR.po | 2 +- addons/mrp/i18n/es_CL.po | 2 +- addons/mrp/i18n/es_CR.po | 2 +- addons/mrp/i18n/es_EC.po | 2 +- addons/mrp/i18n/et.po | 2 +- addons/mrp/i18n/fi.po | 2 +- addons/mrp/i18n/fr.po | 2 +- addons/mrp/i18n/gl.po | 2 +- addons/mrp/i18n/hi.po | 2 +- addons/mrp/i18n/hr.po | 2 +- addons/mrp/i18n/hu.po | 2 +- addons/mrp/i18n/id.po | 2 +- addons/mrp/i18n/it.po | 2 +- addons/mrp/i18n/ja.po | 2 +- addons/mrp/i18n/ko.po | 2 +- addons/mrp/i18n/lt.po | 2 +- addons/mrp/i18n/lv.po | 2 +- addons/mrp/i18n/mk.po | 2 +- addons/mrp/i18n/mn.po | 2 +- addons/mrp/i18n/nb.po | 2 +- addons/mrp/i18n/nl.po | 4 +- addons/mrp/i18n/nl_BE.po | 2 +- addons/mrp/i18n/pl.po | 2 +- addons/mrp/i18n/pt.po | 2 +- addons/mrp/i18n/pt_BR.po | 2 +- addons/mrp/i18n/ro.po | 2 +- addons/mrp/i18n/ru.po | 2 +- addons/mrp/i18n/sk.po | 2 +- addons/mrp/i18n/sl.po | 2 +- addons/mrp/i18n/sq.po | 2 +- addons/mrp/i18n/sr@latin.po | 2 +- addons/mrp/i18n/sv.po | 2 +- addons/mrp/i18n/tlh.po | 2 +- addons/mrp/i18n/tr.po | 2 +- addons/mrp/i18n/uk.po | 2 +- addons/mrp/i18n/vi.po | 2 +- addons/mrp/i18n/zh_CN.po | 2 +- addons/mrp/i18n/zh_HK.po | 2 +- addons/mrp/i18n/zh_TW.po | 2 +- addons/mrp_byproduct/i18n/ab.po | 2 +- addons/mrp_byproduct/i18n/ar.po | 2 +- addons/mrp_byproduct/i18n/bg.po | 2 +- addons/mrp_byproduct/i18n/bs.po | 2 +- addons/mrp_byproduct/i18n/ca.po | 2 +- addons/mrp_byproduct/i18n/cs.po | 2 +- addons/mrp_byproduct/i18n/da.po | 2 +- addons/mrp_byproduct/i18n/de.po | 2 +- addons/mrp_byproduct/i18n/es.po | 2 +- addons/mrp_byproduct/i18n/es_AR.po | 2 +- addons/mrp_byproduct/i18n/es_CR.po | 2 +- addons/mrp_byproduct/i18n/es_EC.po | 2 +- addons/mrp_byproduct/i18n/et.po | 2 +- addons/mrp_byproduct/i18n/fi.po | 2 +- addons/mrp_byproduct/i18n/fr.po | 2 +- addons/mrp_byproduct/i18n/gl.po | 2 +- addons/mrp_byproduct/i18n/hr.po | 2 +- addons/mrp_byproduct/i18n/hu.po | 2 +- addons/mrp_byproduct/i18n/id.po | 2 +- addons/mrp_byproduct/i18n/it.po | 2 +- addons/mrp_byproduct/i18n/ja.po | 2 +- addons/mrp_byproduct/i18n/ko.po | 2 +- addons/mrp_byproduct/i18n/lt.po | 2 +- addons/mrp_byproduct/i18n/lv.po | 2 +- addons/mrp_byproduct/i18n/mk.po | 2 +- addons/mrp_byproduct/i18n/mn.po | 2 +- addons/mrp_byproduct/i18n/nb.po | 2 +- addons/mrp_byproduct/i18n/nl.po | 2 +- addons/mrp_byproduct/i18n/nl_BE.po | 2 +- addons/mrp_byproduct/i18n/oc.po | 2 +- addons/mrp_byproduct/i18n/pl.po | 2 +- addons/mrp_byproduct/i18n/pt.po | 2 +- addons/mrp_byproduct/i18n/pt_BR.po | 2 +- addons/mrp_byproduct/i18n/ro.po | 2 +- addons/mrp_byproduct/i18n/ru.po | 2 +- addons/mrp_byproduct/i18n/sk.po | 2 +- addons/mrp_byproduct/i18n/sl.po | 2 +- addons/mrp_byproduct/i18n/sq.po | 2 +- addons/mrp_byproduct/i18n/sr.po | 2 +- addons/mrp_byproduct/i18n/sr@latin.po | 2 +- addons/mrp_byproduct/i18n/sv.po | 2 +- addons/mrp_byproduct/i18n/tlh.po | 2 +- addons/mrp_byproduct/i18n/tr.po | 2 +- addons/mrp_byproduct/i18n/uk.po | 2 +- addons/mrp_byproduct/i18n/vi.po | 2 +- addons/mrp_byproduct/i18n/zh_CN.po | 2 +- addons/mrp_byproduct/i18n/zh_TW.po | 2 +- addons/mrp_jit/i18n/ar.po | 2 +- addons/mrp_jit/i18n/bg.po | 2 +- addons/mrp_jit/i18n/bs.po | 2 +- addons/mrp_jit/i18n/ca.po | 2 +- addons/mrp_jit/i18n/cs.po | 2 +- addons/mrp_jit/i18n/da.po | 2 +- addons/mrp_jit/i18n/de.po | 2 +- addons/mrp_jit/i18n/el.po | 2 +- addons/mrp_jit/i18n/es.po | 2 +- addons/mrp_jit/i18n/es_AR.po | 2 +- addons/mrp_jit/i18n/es_CR.po | 2 +- addons/mrp_jit/i18n/es_EC.po | 2 +- addons/mrp_jit/i18n/et.po | 2 +- addons/mrp_jit/i18n/fi.po | 2 +- addons/mrp_jit/i18n/fr.po | 2 +- addons/mrp_jit/i18n/gl.po | 2 +- addons/mrp_jit/i18n/hr.po | 2 +- addons/mrp_jit/i18n/hu.po | 2 +- addons/mrp_jit/i18n/id.po | 2 +- addons/mrp_jit/i18n/it.po | 2 +- addons/mrp_jit/i18n/ja.po | 2 +- addons/mrp_jit/i18n/kab.po | 2 +- addons/mrp_jit/i18n/ko.po | 2 +- addons/mrp_jit/i18n/lt.po | 2 +- addons/mrp_jit/i18n/mk.po | 2 +- addons/mrp_jit/i18n/ml.po | 2 +- addons/mrp_jit/i18n/mn.po | 2 +- addons/mrp_jit/i18n/nb.po | 2 +- addons/mrp_jit/i18n/nl.po | 2 +- addons/mrp_jit/i18n/nl_BE.po | 2 +- addons/mrp_jit/i18n/oc.po | 2 +- addons/mrp_jit/i18n/pl.po | 2 +- addons/mrp_jit/i18n/pt.po | 2 +- addons/mrp_jit/i18n/pt_BR.po | 2 +- addons/mrp_jit/i18n/ro.po | 2 +- addons/mrp_jit/i18n/ru.po | 2 +- addons/mrp_jit/i18n/sk.po | 2 +- addons/mrp_jit/i18n/sl.po | 2 +- addons/mrp_jit/i18n/sq.po | 2 +- addons/mrp_jit/i18n/sr.po | 2 +- addons/mrp_jit/i18n/sr@latin.po | 2 +- addons/mrp_jit/i18n/sv.po | 2 +- addons/mrp_jit/i18n/ta.po | 2 +- addons/mrp_jit/i18n/tr.po | 2 +- addons/mrp_jit/i18n/uk.po | 2 +- addons/mrp_jit/i18n/vi.po | 2 +- addons/mrp_jit/i18n/zh_CN.po | 2 +- addons/mrp_jit/i18n/zh_TW.po | 2 +- addons/mrp_operations/i18n/ar.po | 2 +- addons/mrp_operations/i18n/bg.po | 2 +- addons/mrp_operations/i18n/bs.po | 2 +- addons/mrp_operations/i18n/ca.po | 2 +- addons/mrp_operations/i18n/cs.po | 2 +- addons/mrp_operations/i18n/da.po | 2 +- addons/mrp_operations/i18n/de.po | 2 +- addons/mrp_operations/i18n/es.po | 2 +- addons/mrp_operations/i18n/es_AR.po | 2 +- addons/mrp_operations/i18n/es_CR.po | 2 +- addons/mrp_operations/i18n/es_EC.po | 2 +- addons/mrp_operations/i18n/et.po | 2 +- addons/mrp_operations/i18n/fi.po | 2 +- addons/mrp_operations/i18n/fr.po | 2 +- addons/mrp_operations/i18n/hi.po | 2 +- addons/mrp_operations/i18n/hr.po | 2 +- addons/mrp_operations/i18n/hu.po | 2 +- addons/mrp_operations/i18n/id.po | 2 +- addons/mrp_operations/i18n/it.po | 2 +- addons/mrp_operations/i18n/ja.po | 2 +- addons/mrp_operations/i18n/ko.po | 2 +- addons/mrp_operations/i18n/lt.po | 2 +- addons/mrp_operations/i18n/lv.po | 2 +- addons/mrp_operations/i18n/mk.po | 2 +- addons/mrp_operations/i18n/mn.po | 2 +- addons/mrp_operations/i18n/nl.po | 2 +- addons/mrp_operations/i18n/nl_BE.po | 2 +- addons/mrp_operations/i18n/pl.po | 2 +- addons/mrp_operations/i18n/pt.po | 2 +- addons/mrp_operations/i18n/pt_BR.po | 2 +- addons/mrp_operations/i18n/ro.po | 2 +- addons/mrp_operations/i18n/ru.po | 2 +- addons/mrp_operations/i18n/sl.po | 2 +- addons/mrp_operations/i18n/sq.po | 2 +- addons/mrp_operations/i18n/sr.po | 2 +- addons/mrp_operations/i18n/sr@latin.po | 2 +- addons/mrp_operations/i18n/sv.po | 2 +- addons/mrp_operations/i18n/tlh.po | 2 +- addons/mrp_operations/i18n/tr.po | 2 +- addons/mrp_operations/i18n/uk.po | 2 +- addons/mrp_operations/i18n/vi.po | 2 +- addons/mrp_operations/i18n/zh_CN.po | 2 +- addons/mrp_operations/i18n/zh_TW.po | 2 +- addons/mrp_repair/i18n/ar.po | 2 +- addons/mrp_repair/i18n/bg.po | 2 +- addons/mrp_repair/i18n/bs.po | 2 +- addons/mrp_repair/i18n/ca.po | 2 +- addons/mrp_repair/i18n/cs.po | 2 +- addons/mrp_repair/i18n/da.po | 2 +- addons/mrp_repair/i18n/de.po | 2 +- addons/mrp_repair/i18n/es.po | 2 +- addons/mrp_repair/i18n/es_AR.po | 2 +- addons/mrp_repair/i18n/es_CR.po | 2 +- addons/mrp_repair/i18n/es_EC.po | 2 +- addons/mrp_repair/i18n/et.po | 2 +- addons/mrp_repair/i18n/fi.po | 2 +- addons/mrp_repair/i18n/fr.po | 2 +- addons/mrp_repair/i18n/hi.po | 2 +- addons/mrp_repair/i18n/hr.po | 2 +- addons/mrp_repair/i18n/hu.po | 2 +- addons/mrp_repair/i18n/id.po | 2 +- addons/mrp_repair/i18n/it.po | 2 +- addons/mrp_repair/i18n/ja.po | 2 +- addons/mrp_repair/i18n/ko.po | 2 +- addons/mrp_repair/i18n/lt.po | 2 +- addons/mrp_repair/i18n/mk.po | 2 +- addons/mrp_repair/i18n/mn.po | 2 +- addons/mrp_repair/i18n/nl.po | 4 +- addons/mrp_repair/i18n/nl_BE.po | 2 +- addons/mrp_repair/i18n/pl.po | 2 +- addons/mrp_repair/i18n/pt.po | 2 +- addons/mrp_repair/i18n/pt_BR.po | 2 +- addons/mrp_repair/i18n/ro.po | 2 +- addons/mrp_repair/i18n/ru.po | 2 +- addons/mrp_repair/i18n/sl.po | 2 +- addons/mrp_repair/i18n/sq.po | 2 +- addons/mrp_repair/i18n/sr.po | 2 +- addons/mrp_repair/i18n/sr@latin.po | 2 +- addons/mrp_repair/i18n/sv.po | 2 +- addons/mrp_repair/i18n/tlh.po | 2 +- addons/mrp_repair/i18n/tr.po | 2 +- addons/mrp_repair/i18n/uk.po | 2 +- addons/mrp_repair/i18n/vi.po | 2 +- addons/mrp_repair/i18n/zh_CN.po | 2 +- addons/mrp_repair/i18n/zh_TW.po | 2 +- addons/multi_company/i18n/ar.po | 2 +- addons/multi_company/i18n/bg.po | 2 +- addons/multi_company/i18n/bs.po | 2 +- addons/multi_company/i18n/ca.po | 2 +- addons/multi_company/i18n/cs.po | 22 +- addons/multi_company/i18n/da.po | 2 +- addons/multi_company/i18n/de.po | 2 +- addons/multi_company/i18n/es.po | 2 +- addons/multi_company/i18n/es_CR.po | 2 +- addons/multi_company/i18n/es_EC.po | 2 +- addons/multi_company/i18n/et.po | 2 +- addons/multi_company/i18n/fi.po | 2 +- addons/multi_company/i18n/fr.po | 2 +- addons/multi_company/i18n/gl.po | 2 +- addons/multi_company/i18n/hr.po | 2 +- addons/multi_company/i18n/hu.po | 2 +- addons/multi_company/i18n/id.po | 2 +- addons/multi_company/i18n/it.po | 2 +- addons/multi_company/i18n/ja.po | 2 +- addons/multi_company/i18n/lo.po | 2 +- addons/multi_company/i18n/lt.po | 2 +- addons/multi_company/i18n/lv.po | 2 +- addons/multi_company/i18n/mk.po | 2 +- addons/multi_company/i18n/mn.po | 2 +- addons/multi_company/i18n/nb.po | 2 +- addons/multi_company/i18n/nl.po | 2 +- addons/multi_company/i18n/oc.po | 2 +- addons/multi_company/i18n/pl.po | 2 +- addons/multi_company/i18n/pt.po | 2 +- addons/multi_company/i18n/pt_BR.po | 2 +- addons/multi_company/i18n/ro.po | 2 +- addons/multi_company/i18n/ru.po | 2 +- addons/multi_company/i18n/sl.po | 2 +- addons/multi_company/i18n/sr.po | 2 +- addons/multi_company/i18n/sr@latin.po | 2 +- addons/multi_company/i18n/sv.po | 2 +- addons/multi_company/i18n/tr.po | 2 +- addons/multi_company/i18n/uk.po | 2 +- addons/multi_company/i18n/vi.po | 2 +- addons/multi_company/i18n/zh_CN.po | 2 +- addons/multi_company/i18n/zh_TW.po | 2 +- addons/note/i18n/de.po | 2 +- addons/note/i18n/es.po | 2 +- addons/note/i18n/fr.po | 2 +- addons/note/i18n/hr.po | 2 +- addons/note/i18n/hu.po | 2 +- addons/note/i18n/id.po | 2 +- addons/note/i18n/it.po | 2 +- addons/note/i18n/mk.po | 2 +- addons/note/i18n/mn.po | 2 +- addons/note/i18n/nl.po | 2 +- addons/note/i18n/pl.po | 2 +- addons/note/i18n/pt.po | 2 +- addons/note/i18n/pt_BR.po | 2 +- addons/note/i18n/ro.po | 2 +- addons/note/i18n/sl.po | 2 +- addons/note/i18n/sv.po | 2 +- addons/note/i18n/tr.po | 2 +- addons/note/i18n/zh_CN.po | 2 +- addons/note_pad/i18n/de.po | 2 +- addons/note_pad/i18n/es.po | 2 +- addons/note_pad/i18n/fr.po | 2 +- addons/note_pad/i18n/hr.po | 2 +- addons/note_pad/i18n/hu.po | 2 +- addons/note_pad/i18n/it.po | 2 +- addons/note_pad/i18n/mk.po | 2 +- addons/note_pad/i18n/mn.po | 2 +- addons/note_pad/i18n/nl.po | 2 +- addons/note_pad/i18n/pl.po | 2 +- addons/note_pad/i18n/pt.po | 2 +- addons/note_pad/i18n/pt_BR.po | 2 +- addons/note_pad/i18n/ro.po | 2 +- addons/note_pad/i18n/ru.po | 2 +- addons/note_pad/i18n/sl.po | 2 +- addons/note_pad/i18n/sv.po | 2 +- addons/note_pad/i18n/tr.po | 2 +- addons/note_pad/i18n/zh_CN.po | 2 +- addons/pad/i18n/ar.po | 2 +- addons/pad/i18n/bg.po | 2 +- addons/pad/i18n/ca.po | 2 +- addons/pad/i18n/cs.po | 2 +- addons/pad/i18n/da.po | 2 +- addons/pad/i18n/de.po | 2 +- addons/pad/i18n/es.po | 2 +- addons/pad/i18n/es_CR.po | 2 +- addons/pad/i18n/fi.po | 2 +- addons/pad/i18n/fr.po | 2 +- addons/pad/i18n/gl.po | 2 +- addons/pad/i18n/hr.po | 2 +- addons/pad/i18n/hu.po | 2 +- addons/pad/i18n/it.po | 2 +- addons/pad/i18n/ja.po | 2 +- addons/pad/i18n/mk.po | 2 +- addons/pad/i18n/mn.po | 2 +- addons/pad/i18n/nb.po | 2 +- addons/pad/i18n/nl.po | 2 +- addons/pad/i18n/pl.po | 2 +- addons/pad/i18n/pt.po | 2 +- addons/pad/i18n/pt_BR.po | 2 +- addons/pad/i18n/ro.po | 2 +- addons/pad/i18n/ru.po | 2 +- addons/pad/i18n/sl.po | 2 +- addons/pad/i18n/sr@latin.po | 2 +- addons/pad/i18n/sv.po | 2 +- addons/pad/i18n/tr.po | 2 +- addons/pad/i18n/zh_CN.po | 2 +- addons/pad_project/i18n/ar.po | 2 +- addons/pad_project/i18n/cs.po | 2 +- addons/pad_project/i18n/de.po | 2 +- addons/pad_project/i18n/es.po | 2 +- addons/pad_project/i18n/es_CR.po | 2 +- addons/pad_project/i18n/fi.po | 2 +- addons/pad_project/i18n/fr.po | 2 +- addons/pad_project/i18n/hr.po | 2 +- addons/pad_project/i18n/hu.po | 2 +- addons/pad_project/i18n/it.po | 2 +- addons/pad_project/i18n/ja.po | 2 +- addons/pad_project/i18n/mk.po | 2 +- addons/pad_project/i18n/mn.po | 2 +- addons/pad_project/i18n/nb.po | 2 +- addons/pad_project/i18n/nl.po | 2 +- addons/pad_project/i18n/pl.po | 2 +- addons/pad_project/i18n/pt.po | 2 +- addons/pad_project/i18n/pt_BR.po | 2 +- addons/pad_project/i18n/ro.po | 2 +- addons/pad_project/i18n/ru.po | 2 +- addons/pad_project/i18n/sl.po | 2 +- addons/pad_project/i18n/sv.po | 2 +- addons/pad_project/i18n/tr.po | 2 +- addons/pad_project/i18n/zh_CN.po | 2 +- addons/pad_project/i18n/zh_TW.po | 2 +- addons/plugin/i18n/ar.po | 2 +- addons/plugin/i18n/cs.po | 2 +- addons/plugin/i18n/de.po | 2 +- addons/plugin/i18n/es.po | 2 +- addons/plugin/i18n/es_CR.po | 2 +- addons/plugin/i18n/fi.po | 2 +- addons/plugin/i18n/fr.po | 2 +- addons/plugin/i18n/hr.po | 2 +- addons/plugin/i18n/hu.po | 2 +- addons/plugin/i18n/it.po | 2 +- addons/plugin/i18n/ja.po | 2 +- addons/plugin/i18n/mk.po | 2 +- addons/plugin/i18n/mn.po | 2 +- addons/plugin/i18n/nb.po | 2 +- addons/plugin/i18n/nl.po | 2 +- addons/plugin/i18n/pt.po | 2 +- addons/plugin/i18n/pt_BR.po | 2 +- addons/plugin/i18n/ro.po | 2 +- addons/plugin/i18n/ru.po | 2 +- addons/plugin/i18n/sl.po | 2 +- addons/plugin/i18n/sv.po | 2 +- addons/plugin/i18n/tr.po | 2 +- addons/plugin/i18n/zh_CN.po | 2 +- addons/plugin/i18n/zh_TW.po | 2 +- addons/plugin_outlook/i18n/ar.po | 2 +- addons/plugin_outlook/i18n/bg.po | 2 +- addons/plugin_outlook/i18n/ca.po | 2 +- addons/plugin_outlook/i18n/da.po | 2 +- addons/plugin_outlook/i18n/de.po | 2 +- addons/plugin_outlook/i18n/el.po | 2 +- addons/plugin_outlook/i18n/es.po | 2 +- addons/plugin_outlook/i18n/es_CR.po | 2 +- addons/plugin_outlook/i18n/et.po | 2 +- addons/plugin_outlook/i18n/fi.po | 2 +- addons/plugin_outlook/i18n/fr.po | 2 +- addons/plugin_outlook/i18n/gl.po | 2 +- addons/plugin_outlook/i18n/hr.po | 2 +- addons/plugin_outlook/i18n/hu.po | 2 +- addons/plugin_outlook/i18n/id.po | 2 +- addons/plugin_outlook/i18n/it.po | 2 +- addons/plugin_outlook/i18n/ja.po | 2 +- addons/plugin_outlook/i18n/mk.po | 2 +- addons/plugin_outlook/i18n/mn.po | 2 +- addons/plugin_outlook/i18n/nb.po | 2 +- addons/plugin_outlook/i18n/nl.po | 2 +- addons/plugin_outlook/i18n/pl.po | 2 +- addons/plugin_outlook/i18n/pt.po | 2 +- addons/plugin_outlook/i18n/pt_BR.po | 2 +- addons/plugin_outlook/i18n/ro.po | 2 +- addons/plugin_outlook/i18n/ru.po | 2 +- addons/plugin_outlook/i18n/sl.po | 2 +- addons/plugin_outlook/i18n/sr@latin.po | 2 +- addons/plugin_outlook/i18n/sv.po | 2 +- addons/plugin_outlook/i18n/tr.po | 2 +- addons/plugin_outlook/i18n/zh_CN.po | 2 +- addons/plugin_thunderbird/i18n/ar.po | 2 +- addons/plugin_thunderbird/i18n/bg.po | 2 +- addons/plugin_thunderbird/i18n/ca.po | 2 +- addons/plugin_thunderbird/i18n/cs.po | 2 +- addons/plugin_thunderbird/i18n/da.po | 2 +- addons/plugin_thunderbird/i18n/de.po | 2 +- addons/plugin_thunderbird/i18n/en_GB.po | 2 +- addons/plugin_thunderbird/i18n/en_US.po | 2 +- addons/plugin_thunderbird/i18n/es.po | 2 +- addons/plugin_thunderbird/i18n/es_CR.po | 2 +- addons/plugin_thunderbird/i18n/et.po | 2 +- addons/plugin_thunderbird/i18n/eu.po | 2 +- addons/plugin_thunderbird/i18n/fi.po | 2 +- addons/plugin_thunderbird/i18n/fr.po | 2 +- addons/plugin_thunderbird/i18n/gl.po | 2 +- addons/plugin_thunderbird/i18n/hr.po | 2 +- addons/plugin_thunderbird/i18n/hu.po | 2 +- addons/plugin_thunderbird/i18n/is.po | 2 +- addons/plugin_thunderbird/i18n/it.po | 2 +- addons/plugin_thunderbird/i18n/ja.po | 2 +- addons/plugin_thunderbird/i18n/mk.po | 2 +- addons/plugin_thunderbird/i18n/mn.po | 2 +- addons/plugin_thunderbird/i18n/nb.po | 2 +- addons/plugin_thunderbird/i18n/nl.po | 2 +- addons/plugin_thunderbird/i18n/pl.po | 2 +- addons/plugin_thunderbird/i18n/pt.po | 2 +- addons/plugin_thunderbird/i18n/pt_BR.po | 2 +- addons/plugin_thunderbird/i18n/ro.po | 2 +- addons/plugin_thunderbird/i18n/ru.po | 2 +- addons/plugin_thunderbird/i18n/sk.po | 2 +- addons/plugin_thunderbird/i18n/sl.po | 2 +- addons/plugin_thunderbird/i18n/sr.po | 2 +- addons/plugin_thunderbird/i18n/sr@latin.po | 2 +- addons/plugin_thunderbird/i18n/sv.po | 2 +- addons/plugin_thunderbird/i18n/tr.po | 2 +- addons/plugin_thunderbird/i18n/zh_CN.po | 2 +- addons/point_of_sale/i18n/ar.po | 2 +- addons/point_of_sale/i18n/bg.po | 2 +- addons/point_of_sale/i18n/bs.po | 2 +- addons/point_of_sale/i18n/ca.po | 2 +- addons/point_of_sale/i18n/cs.po | 2 +- addons/point_of_sale/i18n/da.po | 2 +- addons/point_of_sale/i18n/de.po | 2 +- addons/point_of_sale/i18n/el.po | 2 +- addons/point_of_sale/i18n/es.po | 2 +- addons/point_of_sale/i18n/es_AR.po | 2 +- addons/point_of_sale/i18n/es_CR.po | 2 +- addons/point_of_sale/i18n/es_EC.po | 2 +- addons/point_of_sale/i18n/et.po | 2 +- addons/point_of_sale/i18n/fi.po | 2 +- addons/point_of_sale/i18n/fr.po | 2 +- addons/point_of_sale/i18n/hi.po | 2 +- addons/point_of_sale/i18n/hr.po | 2 +- addons/point_of_sale/i18n/hu.po | 2 +- addons/point_of_sale/i18n/id.po | 2 +- addons/point_of_sale/i18n/it.po | 2 +- addons/point_of_sale/i18n/ja.po | 2 +- addons/point_of_sale/i18n/ko.po | 2 +- addons/point_of_sale/i18n/lt.po | 2 +- addons/point_of_sale/i18n/lv.po | 2 +- addons/point_of_sale/i18n/mk.po | 2 +- addons/point_of_sale/i18n/mn.po | 2 +- addons/point_of_sale/i18n/nb.po | 2 +- addons/point_of_sale/i18n/nl.po | 4 +- addons/point_of_sale/i18n/nl_BE.po | 2 +- addons/point_of_sale/i18n/pl.po | 2 +- addons/point_of_sale/i18n/pt.po | 2 +- addons/point_of_sale/i18n/pt_BR.po | 2 +- addons/point_of_sale/i18n/ro.po | 2 +- addons/point_of_sale/i18n/ru.po | 2 +- addons/point_of_sale/i18n/sl.po | 2 +- addons/point_of_sale/i18n/sq.po | 2 +- addons/point_of_sale/i18n/sr.po | 2 +- addons/point_of_sale/i18n/sr@latin.po | 2 +- addons/point_of_sale/i18n/sv.po | 2 +- addons/point_of_sale/i18n/tlh.po | 2 +- addons/point_of_sale/i18n/tr.po | 2 +- addons/point_of_sale/i18n/uk.po | 2 +- addons/point_of_sale/i18n/vi.po | 2 +- addons/point_of_sale/i18n/zh_CN.po | 2 +- addons/point_of_sale/i18n/zh_HK.po | 2 +- addons/point_of_sale/i18n/zh_TW.po | 2 +- addons/portal/i18n/ar.po | 2 +- addons/portal/i18n/bg.po | 2 +- addons/portal/i18n/bs.po | 2 +- addons/portal/i18n/ca.po | 2 +- addons/portal/i18n/cs.po | 2 +- addons/portal/i18n/da.po | 2 +- addons/portal/i18n/de.po | 2 +- addons/portal/i18n/es.po | 2 +- addons/portal/i18n/es_CR.po | 2 +- addons/portal/i18n/et.po | 2 +- addons/portal/i18n/fi.po | 2 +- addons/portal/i18n/fr.po | 2 +- addons/portal/i18n/hr.po | 2 +- addons/portal/i18n/hu.po | 2 +- addons/portal/i18n/id.po | 2 +- addons/portal/i18n/it.po | 2 +- addons/portal/i18n/ja.po | 2 +- addons/portal/i18n/lo.po | 2 +- addons/portal/i18n/lt.po | 2 +- addons/portal/i18n/mk.po | 2 +- addons/portal/i18n/mn.po | 2 +- addons/portal/i18n/nl.po | 2 +- addons/portal/i18n/pl.po | 2 +- addons/portal/i18n/pt.po | 2 +- addons/portal/i18n/pt_BR.po | 2 +- addons/portal/i18n/ro.po | 2 +- addons/portal/i18n/ru.po | 2 +- addons/portal/i18n/sl.po | 2 +- addons/portal/i18n/sr.po | 2 +- addons/portal/i18n/sv.po | 2 +- addons/portal/i18n/tr.po | 2 +- addons/portal/i18n/uk.po | 2 +- addons/portal/i18n/zh_CN.po | 2 +- addons/portal/i18n/zh_TW.po | 2 +- addons/portal_anonymous/i18n/cs.po | 2 +- addons/portal_anonymous/i18n/es.po | 2 +- addons/portal_anonymous/i18n/fr.po | 2 +- addons/portal_anonymous/i18n/hu.po | 2 +- addons/portal_anonymous/i18n/mk.po | 2 +- addons/portal_anonymous/i18n/mn.po | 2 +- addons/portal_anonymous/i18n/nl.po | 2 +- addons/portal_anonymous/i18n/pt.po | 2 +- addons/portal_anonymous/i18n/pt_BR.po | 2 +- addons/portal_anonymous/i18n/ro.po | 2 +- addons/portal_anonymous/i18n/sl.po | 2 +- addons/portal_anonymous/i18n/sv.po | 2 +- addons/portal_anonymous/i18n/tr.po | 2 +- addons/portal_claim/i18n/cs.po | 2 +- addons/portal_claim/i18n/de.po | 2 +- addons/portal_claim/i18n/es.po | 2 +- addons/portal_claim/i18n/fr.po | 2 +- addons/portal_claim/i18n/hr.po | 2 +- addons/portal_claim/i18n/hu.po | 2 +- addons/portal_claim/i18n/it.po | 2 +- addons/portal_claim/i18n/mk.po | 2 +- addons/portal_claim/i18n/nl.po | 2 +- addons/portal_claim/i18n/pl.po | 2 +- addons/portal_claim/i18n/pt.po | 2 +- addons/portal_claim/i18n/pt_BR.po | 2 +- addons/portal_claim/i18n/ro.po | 2 +- addons/portal_claim/i18n/sl.po | 2 +- addons/portal_claim/i18n/tr.po | 2 +- addons/portal_claim/i18n/zh_CN.po | 2 +- addons/portal_crm/i18n/de.po | 2 +- addons/portal_crm/i18n/es.po | 2 +- addons/portal_crm/i18n/hr.po | 2 +- addons/portal_crm/i18n/hu.po | 2 +- addons/portal_crm/i18n/mk.po | 2 +- addons/portal_crm/i18n/nl.po | 2 +- addons/portal_crm/i18n/pl.po | 2 +- addons/portal_crm/i18n/pt.po | 2 +- addons/portal_crm/i18n/pt_BR.po | 2 +- addons/portal_crm/i18n/ro.po | 2 +- addons/portal_crm/i18n/sl.po | 2 +- addons/portal_crm/i18n/sv.po | 2 +- addons/portal_crm/i18n/tr.po | 2 +- addons/portal_crm/i18n/zh_CN.po | 2 +- addons/portal_event/i18n/cs.po | 2 +- addons/portal_event/i18n/de.po | 2 +- addons/portal_event/i18n/es.po | 2 +- addons/portal_event/i18n/hr.po | 2 +- addons/portal_event/i18n/hu.po | 2 +- addons/portal_event/i18n/mk.po | 2 +- addons/portal_event/i18n/nl.po | 2 +- addons/portal_event/i18n/pt.po | 2 +- addons/portal_event/i18n/pt_BR.po | 2 +- addons/portal_event/i18n/ro.po | 2 +- addons/portal_event/i18n/sl.po | 2 +- addons/portal_event/i18n/sv.po | 2 +- addons/portal_event/i18n/tr.po | 2 +- addons/portal_event/i18n/zh_CN.po | 2 +- addons/portal_hr_employees/i18n/de.po | 2 +- addons/portal_hr_employees/i18n/es.po | 2 +- addons/portal_hr_employees/i18n/hr.po | 2 +- addons/portal_hr_employees/i18n/hu.po | 2 +- addons/portal_hr_employees/i18n/mk.po | 2 +- addons/portal_hr_employees/i18n/nl.po | 2 +- addons/portal_hr_employees/i18n/pl.po | 2 +- addons/portal_hr_employees/i18n/pt.po | 2 +- addons/portal_hr_employees/i18n/pt_BR.po | 2 +- addons/portal_hr_employees/i18n/ro.po | 2 +- addons/portal_hr_employees/i18n/sl.po | 2 +- addons/portal_hr_employees/i18n/tr.po | 2 +- addons/portal_hr_employees/i18n/zh_CN.po | 2 +- addons/portal_project/i18n/cs.po | 2 +- addons/portal_project/i18n/de.po | 2 +- addons/portal_project/i18n/es.po | 2 +- addons/portal_project/i18n/fr.po | 2 +- addons/portal_project/i18n/hr.po | 2 +- addons/portal_project/i18n/hu.po | 2 +- addons/portal_project/i18n/it.po | 2 +- addons/portal_project/i18n/mk.po | 2 +- addons/portal_project/i18n/nl.po | 2 +- addons/portal_project/i18n/pl.po | 2 +- addons/portal_project/i18n/pt.po | 2 +- addons/portal_project/i18n/pt_BR.po | 2 +- addons/portal_project/i18n/ro.po | 2 +- addons/portal_project/i18n/sl.po | 2 +- addons/portal_project/i18n/sv.po | 2 +- addons/portal_project/i18n/tr.po | 2 +- addons/portal_project/i18n/zh_CN.po | 2 +- addons/portal_project_issue/i18n/cs.po | 2 +- addons/portal_project_issue/i18n/de.po | 2 +- addons/portal_project_issue/i18n/es.po | 2 +- addons/portal_project_issue/i18n/hr.po | 2 +- addons/portal_project_issue/i18n/hu.po | 2 +- addons/portal_project_issue/i18n/it.po | 2 +- addons/portal_project_issue/i18n/mk.po | 2 +- addons/portal_project_issue/i18n/nl.po | 2 +- addons/portal_project_issue/i18n/pl.po | 2 +- addons/portal_project_issue/i18n/pt.po | 2 +- addons/portal_project_issue/i18n/pt_BR.po | 2 +- addons/portal_project_issue/i18n/ro.po | 2 +- addons/portal_project_issue/i18n/sl.po | 2 +- addons/portal_project_issue/i18n/sv.po | 2 +- addons/portal_project_issue/i18n/tr.po | 2 +- addons/portal_project_issue/i18n/zh_CN.po | 2 +- addons/portal_sale/i18n/cs.po | 2 +- addons/portal_sale/i18n/de.po | 2 +- addons/portal_sale/i18n/es.po | 2 +- addons/portal_sale/i18n/fi.po | 2 +- addons/portal_sale/i18n/fr.po | 2 +- addons/portal_sale/i18n/hr.po | 2 +- addons/portal_sale/i18n/hu.po | 2 +- addons/portal_sale/i18n/mk.po | 2 +- addons/portal_sale/i18n/mn.po | 2 +- addons/portal_sale/i18n/nl.po | 2 +- addons/portal_sale/i18n/pl.po | 2 +- addons/portal_sale/i18n/pt.po | 2 +- addons/portal_sale/i18n/pt_BR.po | 2 +- addons/portal_sale/i18n/ro.po | 2 +- addons/portal_sale/i18n/sl.po | 2 +- addons/portal_sale/i18n/sv.po | 2 +- addons/portal_sale/i18n/tr.po | 2 +- addons/portal_sale/i18n/zh_CN.po | 2 +- addons/process/i18n/ar.po | 2 +- addons/process/i18n/bg.po | 2 +- addons/process/i18n/bs.po | 2 +- addons/process/i18n/ca.po | 2 +- addons/process/i18n/cs.po | 2 +- addons/process/i18n/da.po | 2 +- addons/process/i18n/de.po | 2 +- addons/process/i18n/el.po | 2 +- addons/process/i18n/es.po | 2 +- addons/process/i18n/es_AR.po | 2 +- addons/process/i18n/es_CL.po | 2 +- addons/process/i18n/es_CR.po | 2 +- addons/process/i18n/et.po | 2 +- addons/process/i18n/fi.po | 2 +- addons/process/i18n/fr.po | 2 +- addons/process/i18n/gl.po | 2 +- addons/process/i18n/hi.po | 2 +- addons/process/i18n/hr.po | 2 +- addons/process/i18n/hu.po | 2 +- addons/process/i18n/id.po | 2 +- addons/process/i18n/it.po | 2 +- addons/process/i18n/ja.po | 2 +- addons/process/i18n/ko.po | 2 +- addons/process/i18n/lt.po | 2 +- addons/process/i18n/mk.po | 2 +- addons/process/i18n/mn.po | 2 +- addons/process/i18n/nl.po | 2 +- addons/process/i18n/nl_BE.po | 2 +- addons/process/i18n/pl.po | 2 +- addons/process/i18n/pt.po | 2 +- addons/process/i18n/pt_BR.po | 2 +- addons/process/i18n/ro.po | 2 +- addons/process/i18n/ru.po | 2 +- addons/process/i18n/sk.po | 2 +- addons/process/i18n/sl.po | 2 +- addons/process/i18n/sq.po | 2 +- addons/process/i18n/sr.po | 2 +- addons/process/i18n/sr@latin.po | 2 +- addons/process/i18n/sv.po | 2 +- addons/process/i18n/tlh.po | 2 +- addons/process/i18n/tr.po | 2 +- addons/process/i18n/uk.po | 2 +- addons/process/i18n/vi.po | 2 +- addons/process/i18n/zh_CN.po | 2 +- addons/process/i18n/zh_TW.po | 2 +- addons/procurement/i18n/ar.po | 2 +- addons/procurement/i18n/bg.po | 2 +- addons/procurement/i18n/ca.po | 2 +- addons/procurement/i18n/cs.po | 2 +- addons/procurement/i18n/da.po | 2 +- addons/procurement/i18n/de.po | 2 +- addons/procurement/i18n/es.po | 2 +- addons/procurement/i18n/es_CL.po | 2 +- addons/procurement/i18n/es_CR.po | 2 +- addons/procurement/i18n/es_EC.po | 2 +- addons/procurement/i18n/et.po | 2 +- addons/procurement/i18n/fi.po | 2 +- addons/procurement/i18n/fr.po | 2 +- addons/procurement/i18n/gl.po | 2 +- addons/procurement/i18n/hr.po | 2 +- addons/procurement/i18n/hu.po | 2 +- addons/procurement/i18n/id.po | 2 +- addons/procurement/i18n/it.po | 2 +- addons/procurement/i18n/ja.po | 2 +- addons/procurement/i18n/mk.po | 2 +- addons/procurement/i18n/mn.po | 2 +- addons/procurement/i18n/nb.po | 2 +- addons/procurement/i18n/nl.po | 4 +- addons/procurement/i18n/pl.po | 2 +- addons/procurement/i18n/pt.po | 2 +- addons/procurement/i18n/pt_BR.po | 2 +- addons/procurement/i18n/ro.po | 2 +- addons/procurement/i18n/ru.po | 2 +- addons/procurement/i18n/sl.po | 2 +- addons/procurement/i18n/sr.po | 2 +- addons/procurement/i18n/sr@latin.po | 2 +- addons/procurement/i18n/sv.po | 2 +- addons/procurement/i18n/tr.po | 2 +- addons/procurement/i18n/vi.po | 2 +- addons/procurement/i18n/zh_CN.po | 2 +- addons/product/i18n/ar.po | 2 +- addons/product/i18n/bg.po | 2 +- addons/product/i18n/bs.po | 2 +- addons/product/i18n/ca.po | 2 +- addons/product/i18n/cs.po | 2 +- addons/product/i18n/da.po | 2 +- addons/product/i18n/de.po | 2 +- addons/product/i18n/el.po | 2 +- addons/product/i18n/es.po | 2 +- addons/product/i18n/es_AR.po | 2 +- addons/product/i18n/es_CL.po | 2 +- addons/product/i18n/es_CR.po | 2 +- addons/product/i18n/es_EC.po | 2 +- addons/product/i18n/es_PY.po | 2 +- addons/product/i18n/et.po | 2 +- addons/product/i18n/eu.po | 2 +- addons/product/i18n/fi.po | 2 +- addons/product/i18n/fr.po | 2 +- addons/product/i18n/gl.po | 2 +- addons/product/i18n/hr.po | 2 +- addons/product/i18n/hu.po | 2 +- addons/product/i18n/id.po | 2 +- addons/product/i18n/it.po | 2 +- addons/product/i18n/ja.po | 2 +- addons/product/i18n/ko.po | 2 +- addons/product/i18n/lo.po | 2 +- addons/product/i18n/lt.po | 2 +- addons/product/i18n/lv.po | 2 +- addons/product/i18n/mk.po | 2 +- addons/product/i18n/mn.po | 2 +- addons/product/i18n/nb.po | 2 +- addons/product/i18n/nl.po | 2 +- addons/product/i18n/nl_BE.po | 2 +- addons/product/i18n/pl.po | 2 +- addons/product/i18n/pt.po | 2 +- addons/product/i18n/pt_BR.po | 2 +- addons/product/i18n/ro.po | 2 +- addons/product/i18n/ru.po | 2 +- addons/product/i18n/sk.po | 2 +- addons/product/i18n/sl.po | 2 +- addons/product/i18n/sq.po | 2 +- addons/product/i18n/sr.po | 2 +- addons/product/i18n/sr@latin.po | 2 +- addons/product/i18n/sv.po | 2 +- addons/product/i18n/th.po | 2 +- addons/product/i18n/tlh.po | 2 +- addons/product/i18n/tr.po | 2 +- addons/product/i18n/uk.po | 2 +- addons/product/i18n/vi.po | 2 +- addons/product/i18n/zh_CN.po | 2 +- addons/product/i18n/zh_TW.po | 2 +- addons/product_expiry/i18n/ar.po | 2 +- addons/product_expiry/i18n/ca.po | 2 +- addons/product_expiry/i18n/cs.po | 2 +- addons/product_expiry/i18n/da.po | 2 +- addons/product_expiry/i18n/de.po | 2 +- addons/product_expiry/i18n/el.po | 2 +- addons/product_expiry/i18n/es.po | 2 +- addons/product_expiry/i18n/es_CR.po | 2 +- addons/product_expiry/i18n/es_EC.po | 2 +- addons/product_expiry/i18n/et.po | 2 +- addons/product_expiry/i18n/fi.po | 2 +- addons/product_expiry/i18n/fr.po | 2 +- addons/product_expiry/i18n/gl.po | 2 +- addons/product_expiry/i18n/hr.po | 2 +- addons/product_expiry/i18n/hu.po | 2 +- addons/product_expiry/i18n/it.po | 2 +- addons/product_expiry/i18n/ja.po | 2 +- addons/product_expiry/i18n/mk.po | 2 +- addons/product_expiry/i18n/mn.po | 2 +- addons/product_expiry/i18n/nl.po | 2 +- addons/product_expiry/i18n/pl.po | 2 +- addons/product_expiry/i18n/pt.po | 2 +- addons/product_expiry/i18n/pt_BR.po | 2 +- addons/product_expiry/i18n/ro.po | 2 +- addons/product_expiry/i18n/ru.po | 2 +- addons/product_expiry/i18n/sl.po | 2 +- addons/product_expiry/i18n/sr.po | 2 +- addons/product_expiry/i18n/sr@latin.po | 2 +- addons/product_expiry/i18n/sv.po | 2 +- addons/product_expiry/i18n/tr.po | 2 +- addons/product_expiry/i18n/vi.po | 2 +- addons/product_expiry/i18n/zh_CN.po | 2 +- addons/product_expiry/i18n/zh_TW.po | 2 +- addons/product_manufacturer/i18n/ar.po | 2 +- addons/product_manufacturer/i18n/bg.po | 2 +- addons/product_manufacturer/i18n/ca.po | 2 +- addons/product_manufacturer/i18n/cs.po | 2 +- addons/product_manufacturer/i18n/da.po | 2 +- addons/product_manufacturer/i18n/de.po | 2 +- addons/product_manufacturer/i18n/el.po | 2 +- addons/product_manufacturer/i18n/es.po | 2 +- addons/product_manufacturer/i18n/es_CR.po | 2 +- addons/product_manufacturer/i18n/es_EC.po | 2 +- addons/product_manufacturer/i18n/et.po | 2 +- addons/product_manufacturer/i18n/fi.po | 2 +- addons/product_manufacturer/i18n/fr.po | 2 +- addons/product_manufacturer/i18n/gl.po | 2 +- addons/product_manufacturer/i18n/hr.po | 2 +- addons/product_manufacturer/i18n/hu.po | 2 +- addons/product_manufacturer/i18n/it.po | 2 +- addons/product_manufacturer/i18n/ja.po | 2 +- addons/product_manufacturer/i18n/lt.po | 2 +- addons/product_manufacturer/i18n/mk.po | 2 +- addons/product_manufacturer/i18n/mn.po | 2 +- addons/product_manufacturer/i18n/nb.po | 2 +- addons/product_manufacturer/i18n/nl.po | 2 +- addons/product_manufacturer/i18n/pl.po | 2 +- addons/product_manufacturer/i18n/pt.po | 2 +- addons/product_manufacturer/i18n/pt_BR.po | 2 +- addons/product_manufacturer/i18n/ro.po | 2 +- addons/product_manufacturer/i18n/ru.po | 2 +- addons/product_manufacturer/i18n/sl.po | 2 +- addons/product_manufacturer/i18n/sr.po | 2 +- addons/product_manufacturer/i18n/sr@latin.po | 2 +- addons/product_manufacturer/i18n/sv.po | 2 +- addons/product_manufacturer/i18n/tr.po | 2 +- addons/product_manufacturer/i18n/zh_CN.po | 2 +- addons/product_manufacturer/i18n/zh_TW.po | 2 +- addons/product_margin/i18n/ar.po | 2 +- addons/product_margin/i18n/bg.po | 2 +- addons/product_margin/i18n/bs.po | 2 +- addons/product_margin/i18n/ca.po | 2 +- addons/product_margin/i18n/cs.po | 2 +- addons/product_margin/i18n/da.po | 2 +- addons/product_margin/i18n/de.po | 2 +- addons/product_margin/i18n/el.po | 2 +- addons/product_margin/i18n/es.po | 2 +- addons/product_margin/i18n/es_AR.po | 2 +- addons/product_margin/i18n/es_CR.po | 2 +- addons/product_margin/i18n/es_EC.po | 2 +- addons/product_margin/i18n/et.po | 2 +- addons/product_margin/i18n/fi.po | 2 +- addons/product_margin/i18n/fr.po | 2 +- addons/product_margin/i18n/gl.po | 2 +- addons/product_margin/i18n/gu.po | 2 +- addons/product_margin/i18n/hr.po | 2 +- addons/product_margin/i18n/hu.po | 2 +- addons/product_margin/i18n/id.po | 2 +- addons/product_margin/i18n/it.po | 2 +- addons/product_margin/i18n/ja.po | 2 +- addons/product_margin/i18n/ko.po | 2 +- addons/product_margin/i18n/lt.po | 2 +- addons/product_margin/i18n/mk.po | 2 +- addons/product_margin/i18n/nl.po | 2 +- addons/product_margin/i18n/nl_BE.po | 2 +- addons/product_margin/i18n/pl.po | 2 +- addons/product_margin/i18n/pt.po | 2 +- addons/product_margin/i18n/pt_BR.po | 2 +- addons/product_margin/i18n/ro.po | 2 +- addons/product_margin/i18n/ru.po | 2 +- addons/product_margin/i18n/sl.po | 2 +- addons/product_margin/i18n/sq.po | 2 +- addons/product_margin/i18n/sr.po | 2 +- addons/product_margin/i18n/sr@latin.po | 2 +- addons/product_margin/i18n/sv.po | 2 +- addons/product_margin/i18n/tlh.po | 2 +- addons/product_margin/i18n/tr.po | 2 +- addons/product_margin/i18n/uk.po | 2 +- addons/product_margin/i18n/vi.po | 2 +- addons/product_margin/i18n/zh_CN.po | 2 +- addons/product_margin/i18n/zh_TW.po | 2 +- addons/product_visible_discount/i18n/ar.po | 2 +- addons/product_visible_discount/i18n/bg.po | 2 +- addons/product_visible_discount/i18n/ca.po | 2 +- addons/product_visible_discount/i18n/cs.po | 2 +- addons/product_visible_discount/i18n/da.po | 2 +- addons/product_visible_discount/i18n/de.po | 2 +- addons/product_visible_discount/i18n/el.po | 2 +- addons/product_visible_discount/i18n/es.po | 2 +- addons/product_visible_discount/i18n/es_CR.po | 2 +- addons/product_visible_discount/i18n/es_EC.po | 2 +- addons/product_visible_discount/i18n/et.po | 2 +- addons/product_visible_discount/i18n/fi.po | 2 +- addons/product_visible_discount/i18n/fr.po | 2 +- addons/product_visible_discount/i18n/gl.po | 2 +- addons/product_visible_discount/i18n/hr.po | 2 +- addons/product_visible_discount/i18n/hu.po | 2 +- addons/product_visible_discount/i18n/it.po | 2 +- addons/product_visible_discount/i18n/ja.po | 2 +- addons/product_visible_discount/i18n/lt.po | 2 +- addons/product_visible_discount/i18n/mk.po | 2 +- addons/product_visible_discount/i18n/mn.po | 2 +- addons/product_visible_discount/i18n/nl.po | 2 +- addons/product_visible_discount/i18n/pl.po | 2 +- addons/product_visible_discount/i18n/pt.po | 2 +- addons/product_visible_discount/i18n/pt_BR.po | 2 +- addons/product_visible_discount/i18n/ro.po | 2 +- addons/product_visible_discount/i18n/ru.po | 2 +- addons/product_visible_discount/i18n/sl.po | 2 +- addons/product_visible_discount/i18n/sr.po | 2 +- .../product_visible_discount/i18n/sr@latin.po | 2 +- addons/product_visible_discount/i18n/sv.po | 2 +- addons/product_visible_discount/i18n/tr.po | 2 +- addons/product_visible_discount/i18n/vi.po | 2 +- addons/product_visible_discount/i18n/zh_CN.po | 2 +- addons/project/i18n/ar.po | 2 +- addons/project/i18n/bg.po | 2 +- addons/project/i18n/bs.po | 2 +- addons/project/i18n/ca.po | 2 +- addons/project/i18n/cs.po | 2 +- addons/project/i18n/da.po | 2 +- addons/project/i18n/de.po | 2 +- addons/project/i18n/el.po | 2 +- addons/project/i18n/es.po | 2 +- addons/project/i18n/es_AR.po | 2 +- addons/project/i18n/es_CO.po | 22 +- addons/project/i18n/es_CR.po | 2 +- addons/project/i18n/es_EC.po | 2 +- addons/project/i18n/es_MX.po | 2 +- addons/project/i18n/es_PY.po | 2 +- addons/project/i18n/et.po | 2 +- addons/project/i18n/eu.po | 2 +- addons/project/i18n/fi.po | 2 +- addons/project/i18n/fr.po | 2 +- addons/project/i18n/gl.po | 2 +- addons/project/i18n/gu.po | 2 +- addons/project/i18n/hr.po | 2 +- addons/project/i18n/hu.po | 2 +- addons/project/i18n/id.po | 2 +- addons/project/i18n/it.po | 2 +- addons/project/i18n/ja.po | 2 +- addons/project/i18n/ko.po | 2 +- addons/project/i18n/lt.po | 2 +- addons/project/i18n/lv.po | 2 +- addons/project/i18n/mk.po | 2 +- addons/project/i18n/mn.po | 2 +- addons/project/i18n/nb.po | 2 +- addons/project/i18n/nl.po | 4 +- addons/project/i18n/nl_BE.po | 2 +- addons/project/i18n/pl.po | 2 +- addons/project/i18n/pt.po | 2 +- addons/project/i18n/pt_BR.po | 2 +- addons/project/i18n/ro.po | 2 +- addons/project/i18n/ru.po | 2 +- addons/project/i18n/sk.po | 2 +- addons/project/i18n/sl.po | 2 +- addons/project/i18n/sq.po | 2 +- addons/project/i18n/sv.po | 2 +- addons/project/i18n/tlh.po | 2 +- addons/project/i18n/tr.po | 2 +- addons/project/i18n/uk.po | 2 +- addons/project/i18n/vi.po | 2 +- addons/project/i18n/zh_CN.po | 2 +- addons/project/i18n/zh_TW.po | 2 +- addons/project_gtd/i18n/ar.po | 2 +- addons/project_gtd/i18n/bg.po | 2 +- addons/project_gtd/i18n/bs.po | 2 +- addons/project_gtd/i18n/ca.po | 2 +- addons/project_gtd/i18n/cs.po | 2 +- addons/project_gtd/i18n/da.po | 2 +- addons/project_gtd/i18n/de.po | 2 +- addons/project_gtd/i18n/el.po | 2 +- addons/project_gtd/i18n/es.po | 2 +- addons/project_gtd/i18n/es_AR.po | 2 +- addons/project_gtd/i18n/es_CR.po | 2 +- addons/project_gtd/i18n/es_EC.po | 2 +- addons/project_gtd/i18n/et.po | 2 +- addons/project_gtd/i18n/fi.po | 2 +- addons/project_gtd/i18n/fr.po | 2 +- addons/project_gtd/i18n/gl.po | 2 +- addons/project_gtd/i18n/hr.po | 2 +- addons/project_gtd/i18n/hu.po | 2 +- addons/project_gtd/i18n/id.po | 2 +- addons/project_gtd/i18n/it.po | 2 +- addons/project_gtd/i18n/ja.po | 2 +- addons/project_gtd/i18n/ko.po | 2 +- addons/project_gtd/i18n/lt.po | 2 +- addons/project_gtd/i18n/lv.po | 2 +- addons/project_gtd/i18n/mk.po | 2 +- addons/project_gtd/i18n/mn.po | 2 +- addons/project_gtd/i18n/nl.po | 2 +- addons/project_gtd/i18n/nl_BE.po | 2 +- addons/project_gtd/i18n/pl.po | 2 +- addons/project_gtd/i18n/pt.po | 2 +- addons/project_gtd/i18n/pt_BR.po | 2 +- addons/project_gtd/i18n/ro.po | 2 +- addons/project_gtd/i18n/ru.po | 2 +- addons/project_gtd/i18n/sl.po | 2 +- addons/project_gtd/i18n/sq.po | 2 +- addons/project_gtd/i18n/sv.po | 2 +- addons/project_gtd/i18n/tlh.po | 2 +- addons/project_gtd/i18n/tr.po | 2 +- addons/project_gtd/i18n/uk.po | 2 +- addons/project_gtd/i18n/vi.po | 2 +- addons/project_gtd/i18n/zh_CN.po | 2 +- addons/project_gtd/i18n/zh_TW.po | 2 +- addons/project_issue/i18n/ar.po | 2 +- addons/project_issue/i18n/ca.po | 2 +- addons/project_issue/i18n/da.po | 2 +- addons/project_issue/i18n/de.po | 2 +- addons/project_issue/i18n/es.po | 2 +- addons/project_issue/i18n/es_CR.po | 2 +- addons/project_issue/i18n/fi.po | 2 +- addons/project_issue/i18n/fr.po | 2 +- addons/project_issue/i18n/hr.po | 2 +- addons/project_issue/i18n/hu.po | 2 +- addons/project_issue/i18n/it.po | 2 +- addons/project_issue/i18n/ja.po | 2 +- addons/project_issue/i18n/lt.po | 2 +- addons/project_issue/i18n/lv.po | 2 +- addons/project_issue/i18n/mk.po | 2 +- addons/project_issue/i18n/mn.po | 2 +- addons/project_issue/i18n/nb.po | 2 +- addons/project_issue/i18n/nl.po | 4 +- addons/project_issue/i18n/nl_BE.po | 2 +- addons/project_issue/i18n/pl.po | 2 +- addons/project_issue/i18n/pt.po | 2 +- addons/project_issue/i18n/pt_BR.po | 2 +- addons/project_issue/i18n/ro.po | 2 +- addons/project_issue/i18n/ru.po | 2 +- addons/project_issue/i18n/sk.po | 2 +- addons/project_issue/i18n/sl.po | 2 +- addons/project_issue/i18n/sv.po | 2 +- addons/project_issue/i18n/tr.po | 2 +- addons/project_issue/i18n/zh_CN.po | 2 +- addons/project_issue/i18n/zh_TW.po | 2 +- addons/project_issue_sheet/i18n/ar.po | 2 +- addons/project_issue_sheet/i18n/ca.po | 2 +- addons/project_issue_sheet/i18n/da.po | 2 +- addons/project_issue_sheet/i18n/de.po | 2 +- addons/project_issue_sheet/i18n/es.po | 2 +- addons/project_issue_sheet/i18n/es_CR.po | 2 +- addons/project_issue_sheet/i18n/fi.po | 2 +- addons/project_issue_sheet/i18n/fr.po | 2 +- addons/project_issue_sheet/i18n/gl.po | 2 +- addons/project_issue_sheet/i18n/hr.po | 2 +- addons/project_issue_sheet/i18n/hu.po | 2 +- addons/project_issue_sheet/i18n/it.po | 2 +- addons/project_issue_sheet/i18n/ja.po | 2 +- addons/project_issue_sheet/i18n/lv.po | 2 +- addons/project_issue_sheet/i18n/mk.po | 2 +- addons/project_issue_sheet/i18n/mn.po | 2 +- addons/project_issue_sheet/i18n/nl.po | 2 +- addons/project_issue_sheet/i18n/pl.po | 2 +- addons/project_issue_sheet/i18n/pt.po | 2 +- addons/project_issue_sheet/i18n/pt_BR.po | 2 +- addons/project_issue_sheet/i18n/ro.po | 2 +- addons/project_issue_sheet/i18n/ru.po | 2 +- addons/project_issue_sheet/i18n/sv.po | 2 +- addons/project_issue_sheet/i18n/tr.po | 2 +- addons/project_issue_sheet/i18n/zh_CN.po | 2 +- addons/project_long_term/i18n/ar.po | 2 +- addons/project_long_term/i18n/ca.po | 2 +- addons/project_long_term/i18n/da.po | 2 +- addons/project_long_term/i18n/de.po | 2 +- addons/project_long_term/i18n/es.po | 2 +- addons/project_long_term/i18n/es_CR.po | 2 +- addons/project_long_term/i18n/es_EC.po | 2 +- addons/project_long_term/i18n/fi.po | 2 +- addons/project_long_term/i18n/fr.po | 2 +- addons/project_long_term/i18n/hr.po | 2 +- addons/project_long_term/i18n/hu.po | 2 +- addons/project_long_term/i18n/it.po | 2 +- addons/project_long_term/i18n/ja.po | 2 +- addons/project_long_term/i18n/lv.po | 2 +- addons/project_long_term/i18n/mk.po | 2 +- addons/project_long_term/i18n/mn.po | 2 +- addons/project_long_term/i18n/nl.po | 2 +- addons/project_long_term/i18n/pl.po | 2 +- addons/project_long_term/i18n/pt.po | 2 +- addons/project_long_term/i18n/pt_BR.po | 2 +- addons/project_long_term/i18n/ro.po | 2 +- addons/project_long_term/i18n/ru.po | 2 +- addons/project_long_term/i18n/sl.po | 2 +- addons/project_long_term/i18n/sv.po | 2 +- addons/project_long_term/i18n/tr.po | 2 +- addons/project_long_term/i18n/zh_CN.po | 2 +- addons/project_mrp/i18n/ar.po | 2 +- addons/project_mrp/i18n/bg.po | 2 +- addons/project_mrp/i18n/bs.po | 2 +- addons/project_mrp/i18n/ca.po | 2 +- addons/project_mrp/i18n/cs.po | 2 +- addons/project_mrp/i18n/da.po | 2 +- addons/project_mrp/i18n/de.po | 2 +- addons/project_mrp/i18n/el.po | 2 +- addons/project_mrp/i18n/es.po | 2 +- addons/project_mrp/i18n/es_AR.po | 2 +- addons/project_mrp/i18n/es_CR.po | 2 +- addons/project_mrp/i18n/es_EC.po | 2 +- addons/project_mrp/i18n/et.po | 2 +- addons/project_mrp/i18n/fi.po | 2 +- addons/project_mrp/i18n/fr.po | 2 +- addons/project_mrp/i18n/gl.po | 2 +- addons/project_mrp/i18n/gu.po | 2 +- addons/project_mrp/i18n/hr.po | 2 +- addons/project_mrp/i18n/hu.po | 2 +- addons/project_mrp/i18n/id.po | 2 +- addons/project_mrp/i18n/it.po | 2 +- addons/project_mrp/i18n/ja.po | 2 +- addons/project_mrp/i18n/ko.po | 2 +- addons/project_mrp/i18n/lt.po | 2 +- addons/project_mrp/i18n/lv.po | 2 +- addons/project_mrp/i18n/mk.po | 2 +- addons/project_mrp/i18n/mn.po | 2 +- addons/project_mrp/i18n/nb.po | 2 +- addons/project_mrp/i18n/nl.po | 2 +- addons/project_mrp/i18n/nl_BE.po | 2 +- addons/project_mrp/i18n/pl.po | 2 +- addons/project_mrp/i18n/pt.po | 2 +- addons/project_mrp/i18n/pt_BR.po | 2 +- addons/project_mrp/i18n/ro.po | 2 +- addons/project_mrp/i18n/ru.po | 2 +- addons/project_mrp/i18n/sl.po | 2 +- addons/project_mrp/i18n/sq.po | 2 +- addons/project_mrp/i18n/sv.po | 2 +- addons/project_mrp/i18n/tlh.po | 2 +- addons/project_mrp/i18n/tr.po | 2 +- addons/project_mrp/i18n/uk.po | 2 +- addons/project_mrp/i18n/vi.po | 2 +- addons/project_mrp/i18n/zh_CN.po | 2 +- addons/project_mrp/i18n/zh_TW.po | 2 +- addons/project_timesheet/i18n/ar.po | 2 +- addons/project_timesheet/i18n/bg.po | 2 +- addons/project_timesheet/i18n/bs.po | 2 +- addons/project_timesheet/i18n/ca.po | 2 +- addons/project_timesheet/i18n/cs.po | 2 +- addons/project_timesheet/i18n/da.po | 2 +- addons/project_timesheet/i18n/de.po | 2 +- addons/project_timesheet/i18n/el.po | 2 +- addons/project_timesheet/i18n/es.po | 2 +- addons/project_timesheet/i18n/es_AR.po | 2 +- addons/project_timesheet/i18n/es_CR.po | 2 +- addons/project_timesheet/i18n/et.po | 2 +- addons/project_timesheet/i18n/fi.po | 2 +- addons/project_timesheet/i18n/fr.po | 2 +- addons/project_timesheet/i18n/gl.po | 2 +- addons/project_timesheet/i18n/hr.po | 2 +- addons/project_timesheet/i18n/hu.po | 2 +- addons/project_timesheet/i18n/id.po | 2 +- addons/project_timesheet/i18n/it.po | 2 +- addons/project_timesheet/i18n/ja.po | 2 +- addons/project_timesheet/i18n/ko.po | 2 +- addons/project_timesheet/i18n/lt.po | 2 +- addons/project_timesheet/i18n/lv.po | 2 +- addons/project_timesheet/i18n/mk.po | 2 +- addons/project_timesheet/i18n/mn.po | 2 +- addons/project_timesheet/i18n/nl.po | 2 +- addons/project_timesheet/i18n/nl_BE.po | 2 +- addons/project_timesheet/i18n/pl.po | 2 +- addons/project_timesheet/i18n/pt.po | 2 +- addons/project_timesheet/i18n/pt_BR.po | 2 +- addons/project_timesheet/i18n/ro.po | 2 +- addons/project_timesheet/i18n/ru.po | 2 +- addons/project_timesheet/i18n/sl.po | 2 +- addons/project_timesheet/i18n/sq.po | 2 +- addons/project_timesheet/i18n/sv.po | 2 +- addons/project_timesheet/i18n/tlh.po | 2 +- addons/project_timesheet/i18n/tr.po | 2 +- addons/project_timesheet/i18n/uk.po | 2 +- addons/project_timesheet/i18n/vi.po | 2 +- addons/project_timesheet/i18n/zh_CN.po | 2 +- addons/project_timesheet/i18n/zh_TW.po | 2 +- addons/purchase/i18n/ar.po | 2 +- addons/purchase/i18n/bg.po | 2 +- addons/purchase/i18n/bs.po | 2 +- addons/purchase/i18n/ca.po | 2 +- addons/purchase/i18n/cs.po | 2 +- addons/purchase/i18n/da.po | 2 +- addons/purchase/i18n/de.po | 2 +- addons/purchase/i18n/el.po | 2 +- addons/purchase/i18n/en_GB.po | 2 +- addons/purchase/i18n/es.po | 2 +- addons/purchase/i18n/es_AR.po | 2 +- addons/purchase/i18n/es_CL.po | 2 +- addons/purchase/i18n/es_CR.po | 2 +- addons/purchase/i18n/es_EC.po | 2 +- addons/purchase/i18n/es_MX.po | 2 +- addons/purchase/i18n/et.po | 2 +- addons/purchase/i18n/fi.po | 2 +- addons/purchase/i18n/fr.po | 2 +- addons/purchase/i18n/gl.po | 2 +- addons/purchase/i18n/hr.po | 2 +- addons/purchase/i18n/hu.po | 2 +- addons/purchase/i18n/id.po | 2 +- addons/purchase/i18n/it.po | 2 +- addons/purchase/i18n/ja.po | 2 +- addons/purchase/i18n/ko.po | 2 +- addons/purchase/i18n/lt.po | 2 +- addons/purchase/i18n/lv.po | 2 +- addons/purchase/i18n/mk.po | 2 +- addons/purchase/i18n/mn.po | 2 +- addons/purchase/i18n/nb.po | 2 +- addons/purchase/i18n/nl.po | 4 +- addons/purchase/i18n/nl_BE.po | 2 +- addons/purchase/i18n/pl.po | 2 +- addons/purchase/i18n/pt.po | 2 +- addons/purchase/i18n/pt_BR.po | 2 +- addons/purchase/i18n/ro.po | 2 +- addons/purchase/i18n/ru.po | 2 +- addons/purchase/i18n/sk.po | 2 +- addons/purchase/i18n/sl.po | 2 +- addons/purchase/i18n/sq.po | 2 +- addons/purchase/i18n/sr.po | 2 +- addons/purchase/i18n/sr@latin.po | 2 +- addons/purchase/i18n/sv.po | 2 +- addons/purchase/i18n/th.po | 2 +- addons/purchase/i18n/tlh.po | 2 +- addons/purchase/i18n/tr.po | 2 +- addons/purchase/i18n/uk.po | 2 +- addons/purchase/i18n/vi.po | 2 +- addons/purchase/i18n/zh_CN.po | 2 +- addons/purchase/i18n/zh_TW.po | 2 +- addons/purchase_analytic_plans/i18n/ar.po | 2 +- addons/purchase_analytic_plans/i18n/bg.po | 2 +- addons/purchase_analytic_plans/i18n/bs.po | 2 +- addons/purchase_analytic_plans/i18n/ca.po | 2 +- addons/purchase_analytic_plans/i18n/cs.po | 2 +- addons/purchase_analytic_plans/i18n/da.po | 2 +- addons/purchase_analytic_plans/i18n/de.po | 2 +- addons/purchase_analytic_plans/i18n/el.po | 2 +- addons/purchase_analytic_plans/i18n/es.po | 2 +- addons/purchase_analytic_plans/i18n/es_AR.po | 2 +- addons/purchase_analytic_plans/i18n/es_CR.po | 2 +- addons/purchase_analytic_plans/i18n/et.po | 2 +- addons/purchase_analytic_plans/i18n/fi.po | 2 +- addons/purchase_analytic_plans/i18n/fr.po | 2 +- addons/purchase_analytic_plans/i18n/gl.po | 2 +- addons/purchase_analytic_plans/i18n/hr.po | 2 +- addons/purchase_analytic_plans/i18n/hu.po | 2 +- addons/purchase_analytic_plans/i18n/id.po | 2 +- addons/purchase_analytic_plans/i18n/it.po | 2 +- addons/purchase_analytic_plans/i18n/ja.po | 2 +- addons/purchase_analytic_plans/i18n/ko.po | 2 +- addons/purchase_analytic_plans/i18n/lt.po | 2 +- addons/purchase_analytic_plans/i18n/mk.po | 2 +- addons/purchase_analytic_plans/i18n/mn.po | 2 +- addons/purchase_analytic_plans/i18n/nl.po | 2 +- addons/purchase_analytic_plans/i18n/nl_BE.po | 2 +- addons/purchase_analytic_plans/i18n/pl.po | 2 +- addons/purchase_analytic_plans/i18n/pt.po | 2 +- addons/purchase_analytic_plans/i18n/pt_BR.po | 2 +- addons/purchase_analytic_plans/i18n/ro.po | 2 +- addons/purchase_analytic_plans/i18n/ru.po | 2 +- addons/purchase_analytic_plans/i18n/sl.po | 2 +- addons/purchase_analytic_plans/i18n/sq.po | 2 +- addons/purchase_analytic_plans/i18n/sr.po | 2 +- .../purchase_analytic_plans/i18n/sr@latin.po | 2 +- addons/purchase_analytic_plans/i18n/sv.po | 2 +- addons/purchase_analytic_plans/i18n/tlh.po | 2 +- addons/purchase_analytic_plans/i18n/tr.po | 2 +- addons/purchase_analytic_plans/i18n/uk.po | 2 +- addons/purchase_analytic_plans/i18n/ur.po | 2 +- addons/purchase_analytic_plans/i18n/vi.po | 2 +- addons/purchase_analytic_plans/i18n/zh_CN.po | 2 +- addons/purchase_analytic_plans/i18n/zh_TW.po | 2 +- addons/purchase_double_validation/i18n/ar.po | 2 +- addons/purchase_double_validation/i18n/bg.po | 2 +- addons/purchase_double_validation/i18n/ca.po | 2 +- addons/purchase_double_validation/i18n/da.po | 2 +- addons/purchase_double_validation/i18n/de.po | 2 +- addons/purchase_double_validation/i18n/es.po | 2 +- .../purchase_double_validation/i18n/es_CR.po | 2 +- .../purchase_double_validation/i18n/es_EC.po | 2 +- addons/purchase_double_validation/i18n/fi.po | 2 +- addons/purchase_double_validation/i18n/fr.po | 2 +- addons/purchase_double_validation/i18n/gl.po | 2 +- addons/purchase_double_validation/i18n/hr.po | 2 +- addons/purchase_double_validation/i18n/hu.po | 2 +- addons/purchase_double_validation/i18n/it.po | 2 +- addons/purchase_double_validation/i18n/ja.po | 2 +- addons/purchase_double_validation/i18n/mk.po | 2 +- addons/purchase_double_validation/i18n/mn.po | 2 +- addons/purchase_double_validation/i18n/nl.po | 2 +- addons/purchase_double_validation/i18n/pl.po | 2 +- addons/purchase_double_validation/i18n/pt.po | 2 +- .../purchase_double_validation/i18n/pt_BR.po | 2 +- addons/purchase_double_validation/i18n/ro.po | 2 +- addons/purchase_double_validation/i18n/ru.po | 2 +- addons/purchase_double_validation/i18n/sl.po | 2 +- addons/purchase_double_validation/i18n/sv.po | 2 +- addons/purchase_double_validation/i18n/tr.po | 2 +- .../purchase_double_validation/i18n/zh_CN.po | 2 +- addons/purchase_requisition/i18n/ar.po | 2 +- addons/purchase_requisition/i18n/bg.po | 2 +- addons/purchase_requisition/i18n/ca.po | 2 +- addons/purchase_requisition/i18n/da.po | 2 +- addons/purchase_requisition/i18n/de.po | 2 +- addons/purchase_requisition/i18n/es.po | 2 +- addons/purchase_requisition/i18n/es_CR.po | 2 +- addons/purchase_requisition/i18n/fi.po | 2 +- addons/purchase_requisition/i18n/fr.po | 2 +- addons/purchase_requisition/i18n/hr.po | 2 +- addons/purchase_requisition/i18n/hu.po | 2 +- addons/purchase_requisition/i18n/id.po | 2 +- addons/purchase_requisition/i18n/it.po | 2 +- addons/purchase_requisition/i18n/ja.po | 2 +- addons/purchase_requisition/i18n/mk.po | 2 +- addons/purchase_requisition/i18n/mn.po | 2 +- addons/purchase_requisition/i18n/nb.po | 2 +- addons/purchase_requisition/i18n/nl.po | 2 +- addons/purchase_requisition/i18n/pl.po | 2 +- addons/purchase_requisition/i18n/pt.po | 2 +- addons/purchase_requisition/i18n/pt_BR.po | 2 +- addons/purchase_requisition/i18n/ro.po | 2 +- addons/purchase_requisition/i18n/ru.po | 2 +- addons/purchase_requisition/i18n/sl.po | 2 +- addons/purchase_requisition/i18n/sv.po | 2 +- addons/purchase_requisition/i18n/tr.po | 2 +- addons/purchase_requisition/i18n/zh_CN.po | 2 +- addons/report_intrastat/i18n/ar.po | 2 +- addons/report_intrastat/i18n/bg.po | 2 +- addons/report_intrastat/i18n/bs.po | 2 +- addons/report_intrastat/i18n/ca.po | 2 +- addons/report_intrastat/i18n/cs.po | 2 +- addons/report_intrastat/i18n/da.po | 2 +- addons/report_intrastat/i18n/de.po | 2 +- addons/report_intrastat/i18n/es.po | 2 +- addons/report_intrastat/i18n/es_AR.po | 2 +- addons/report_intrastat/i18n/es_CR.po | 2 +- addons/report_intrastat/i18n/et.po | 2 +- addons/report_intrastat/i18n/fi.po | 2 +- addons/report_intrastat/i18n/fr.po | 2 +- addons/report_intrastat/i18n/hr.po | 2 +- addons/report_intrastat/i18n/hu.po | 2 +- addons/report_intrastat/i18n/id.po | 2 +- addons/report_intrastat/i18n/it.po | 2 +- addons/report_intrastat/i18n/ja.po | 2 +- addons/report_intrastat/i18n/ko.po | 2 +- addons/report_intrastat/i18n/lt.po | 2 +- addons/report_intrastat/i18n/mk.po | 2 +- addons/report_intrastat/i18n/mn.po | 2 +- addons/report_intrastat/i18n/nl.po | 2 +- addons/report_intrastat/i18n/nl_BE.po | 2 +- addons/report_intrastat/i18n/pl.po | 2 +- addons/report_intrastat/i18n/pt.po | 2 +- addons/report_intrastat/i18n/pt_BR.po | 2 +- addons/report_intrastat/i18n/ro.po | 2 +- addons/report_intrastat/i18n/ru.po | 2 +- addons/report_intrastat/i18n/sl.po | 2 +- addons/report_intrastat/i18n/sq.po | 2 +- addons/report_intrastat/i18n/sv.po | 2 +- addons/report_intrastat/i18n/tlh.po | 2 +- addons/report_intrastat/i18n/tr.po | 2 +- addons/report_intrastat/i18n/uk.po | 2 +- addons/report_intrastat/i18n/vi.po | 2 +- addons/report_intrastat/i18n/zh_CN.po | 2 +- addons/report_intrastat/i18n/zh_TW.po | 2 +- addons/report_webkit/i18n/ar.po | 2 +- addons/report_webkit/i18n/bg.po | 2 +- addons/report_webkit/i18n/ca.po | 2 +- addons/report_webkit/i18n/da.po | 2 +- addons/report_webkit/i18n/de.po | 2 +- addons/report_webkit/i18n/es.po | 2 +- addons/report_webkit/i18n/es_CR.po | 2 +- addons/report_webkit/i18n/fi.po | 2 +- addons/report_webkit/i18n/fr.po | 2 +- addons/report_webkit/i18n/hr.po | 2 +- addons/report_webkit/i18n/hu.po | 2 +- addons/report_webkit/i18n/it.po | 2 +- addons/report_webkit/i18n/ja.po | 2 +- addons/report_webkit/i18n/mk.po | 2 +- addons/report_webkit/i18n/mn.po | 2 +- addons/report_webkit/i18n/nl.po | 2 +- addons/report_webkit/i18n/pl.po | 2 +- addons/report_webkit/i18n/pt.po | 2 +- addons/report_webkit/i18n/pt_BR.po | 2 +- addons/report_webkit/i18n/ro.po | 2 +- addons/report_webkit/i18n/ru.po | 2 +- addons/report_webkit/i18n/sl.po | 2 +- addons/report_webkit/i18n/sv.po | 2 +- addons/report_webkit/i18n/tr.po | 2 +- addons/report_webkit/i18n/zh_CN.po | 2 +- addons/resource/i18n/ar.po | 2 +- addons/resource/i18n/bg.po | 2 +- addons/resource/i18n/ca.po | 2 +- addons/resource/i18n/cs.po | 2 +- addons/resource/i18n/da.po | 2 +- addons/resource/i18n/de.po | 2 +- addons/resource/i18n/es.po | 2 +- addons/resource/i18n/es_CR.po | 2 +- addons/resource/i18n/es_EC.po | 2 +- addons/resource/i18n/et.po | 2 +- addons/resource/i18n/fi.po | 2 +- addons/resource/i18n/fr.po | 2 +- addons/resource/i18n/gl.po | 2 +- addons/resource/i18n/hr.po | 2 +- addons/resource/i18n/hu.po | 2 +- addons/resource/i18n/it.po | 2 +- addons/resource/i18n/ja.po | 2 +- addons/resource/i18n/lt.po | 2 +- addons/resource/i18n/mk.po | 2 +- addons/resource/i18n/mn.po | 2 +- addons/resource/i18n/nl.po | 2 +- addons/resource/i18n/pl.po | 2 +- addons/resource/i18n/pt.po | 2 +- addons/resource/i18n/pt_BR.po | 2 +- addons/resource/i18n/ro.po | 2 +- addons/resource/i18n/ru.po | 2 +- addons/resource/i18n/sl.po | 2 +- addons/resource/i18n/sv.po | 2 +- addons/resource/i18n/tr.po | 2 +- addons/resource/i18n/vi.po | 2 +- addons/resource/i18n/zh_CN.po | 2 +- addons/sale/i18n/ar.po | 2 +- addons/sale/i18n/bg.po | 2 +- addons/sale/i18n/bs.po | 2 +- addons/sale/i18n/ca.po | 2 +- addons/sale/i18n/cs.po | 2 +- addons/sale/i18n/da.po | 2 +- addons/sale/i18n/de.po | 2 +- addons/sale/i18n/el.po | 2 +- addons/sale/i18n/es.po | 2 +- addons/sale/i18n/es_AR.po | 2 +- addons/sale/i18n/es_CL.po | 2 +- addons/sale/i18n/es_CR.po | 2 +- addons/sale/i18n/es_EC.po | 2 +- addons/sale/i18n/es_MX.po | 2 +- addons/sale/i18n/et.po | 2 +- addons/sale/i18n/eu.po | 2 +- addons/sale/i18n/fi.po | 2 +- addons/sale/i18n/fr.po | 2 +- addons/sale/i18n/gl.po | 2 +- addons/sale/i18n/hr.po | 2 +- addons/sale/i18n/hu.po | 2 +- addons/sale/i18n/id.po | 2 +- addons/sale/i18n/is.po | 2 +- addons/sale/i18n/it.po | 2 +- addons/sale/i18n/ja.po | 2 +- addons/sale/i18n/ko.po | 2 +- addons/sale/i18n/lo.po | 2 +- addons/sale/i18n/lt.po | 2 +- addons/sale/i18n/lv.po | 2 +- addons/sale/i18n/mk.po | 2 +- addons/sale/i18n/mn.po | 2 +- addons/sale/i18n/nb.po | 2 +- addons/sale/i18n/nl.po | 4 +- addons/sale/i18n/nl_BE.po | 2 +- addons/sale/i18n/oc.po | 2 +- addons/sale/i18n/pl.po | 2 +- addons/sale/i18n/pt.po | 2 +- addons/sale/i18n/pt_BR.po | 2 +- addons/sale/i18n/ro.po | 2 +- addons/sale/i18n/ru.po | 2 +- addons/sale/i18n/sk.po | 2 +- addons/sale/i18n/sl.po | 2 +- addons/sale/i18n/sq.po | 2 +- addons/sale/i18n/sr.po | 2 +- addons/sale/i18n/sr@latin.po | 2 +- addons/sale/i18n/sv.po | 2 +- addons/sale/i18n/th.po | 2 +- addons/sale/i18n/tlh.po | 2 +- addons/sale/i18n/tr.po | 2 +- addons/sale/i18n/uk.po | 2 +- addons/sale/i18n/vi.po | 2 +- addons/sale/i18n/zh_CN.po | 2 +- addons/sale/i18n/zh_TW.po | 2 +- addons/sale_analytic_plans/i18n/ar.po | 2 +- addons/sale_analytic_plans/i18n/bg.po | 2 +- addons/sale_analytic_plans/i18n/bs.po | 2 +- addons/sale_analytic_plans/i18n/ca.po | 2 +- addons/sale_analytic_plans/i18n/cs.po | 2 +- addons/sale_analytic_plans/i18n/da.po | 2 +- addons/sale_analytic_plans/i18n/de.po | 2 +- addons/sale_analytic_plans/i18n/el.po | 2 +- addons/sale_analytic_plans/i18n/es.po | 2 +- addons/sale_analytic_plans/i18n/es_AR.po | 2 +- addons/sale_analytic_plans/i18n/es_CL.po | 2 +- addons/sale_analytic_plans/i18n/es_CR.po | 2 +- addons/sale_analytic_plans/i18n/et.po | 2 +- addons/sale_analytic_plans/i18n/fi.po | 2 +- addons/sale_analytic_plans/i18n/fr.po | 2 +- addons/sale_analytic_plans/i18n/gl.po | 2 +- addons/sale_analytic_plans/i18n/hr.po | 2 +- addons/sale_analytic_plans/i18n/hu.po | 2 +- addons/sale_analytic_plans/i18n/id.po | 2 +- addons/sale_analytic_plans/i18n/it.po | 2 +- addons/sale_analytic_plans/i18n/ja.po | 2 +- addons/sale_analytic_plans/i18n/ko.po | 2 +- addons/sale_analytic_plans/i18n/lt.po | 2 +- addons/sale_analytic_plans/i18n/mk.po | 2 +- addons/sale_analytic_plans/i18n/mn.po | 2 +- addons/sale_analytic_plans/i18n/nb.po | 2 +- addons/sale_analytic_plans/i18n/nl.po | 2 +- addons/sale_analytic_plans/i18n/nl_BE.po | 2 +- addons/sale_analytic_plans/i18n/oc.po | 2 +- addons/sale_analytic_plans/i18n/pl.po | 2 +- addons/sale_analytic_plans/i18n/pt.po | 2 +- addons/sale_analytic_plans/i18n/pt_BR.po | 2 +- addons/sale_analytic_plans/i18n/ro.po | 2 +- addons/sale_analytic_plans/i18n/ru.po | 2 +- addons/sale_analytic_plans/i18n/sk.po | 2 +- addons/sale_analytic_plans/i18n/sl.po | 2 +- addons/sale_analytic_plans/i18n/sq.po | 2 +- addons/sale_analytic_plans/i18n/sr.po | 2 +- addons/sale_analytic_plans/i18n/sr@latin.po | 2 +- addons/sale_analytic_plans/i18n/sv.po | 2 +- addons/sale_analytic_plans/i18n/tlh.po | 2 +- addons/sale_analytic_plans/i18n/tr.po | 2 +- addons/sale_analytic_plans/i18n/uk.po | 2 +- addons/sale_analytic_plans/i18n/vi.po | 2 +- addons/sale_analytic_plans/i18n/zh_CN.po | 2 +- addons/sale_analytic_plans/i18n/zh_TW.po | 2 +- addons/sale_crm/i18n/ar.po | 2 +- addons/sale_crm/i18n/bg.po | 2 +- addons/sale_crm/i18n/bs.po | 2 +- addons/sale_crm/i18n/ca.po | 2 +- addons/sale_crm/i18n/cs.po | 2 +- addons/sale_crm/i18n/da.po | 2 +- addons/sale_crm/i18n/de.po | 2 +- addons/sale_crm/i18n/el.po | 2 +- addons/sale_crm/i18n/es.po | 2 +- addons/sale_crm/i18n/es_AR.po | 2 +- addons/sale_crm/i18n/es_CL.po | 2 +- addons/sale_crm/i18n/es_CR.po | 2 +- addons/sale_crm/i18n/et.po | 2 +- addons/sale_crm/i18n/fi.po | 2 +- addons/sale_crm/i18n/fr.po | 2 +- addons/sale_crm/i18n/gl.po | 2 +- addons/sale_crm/i18n/hr.po | 2 +- addons/sale_crm/i18n/hu.po | 2 +- addons/sale_crm/i18n/id.po | 2 +- addons/sale_crm/i18n/it.po | 2 +- addons/sale_crm/i18n/ja.po | 2 +- addons/sale_crm/i18n/ko.po | 2 +- addons/sale_crm/i18n/lt.po | 2 +- addons/sale_crm/i18n/lv.po | 2 +- addons/sale_crm/i18n/mk.po | 2 +- addons/sale_crm/i18n/mn.po | 2 +- addons/sale_crm/i18n/nb.po | 2 +- addons/sale_crm/i18n/nl.po | 2 +- addons/sale_crm/i18n/nl_BE.po | 2 +- addons/sale_crm/i18n/pl.po | 2 +- addons/sale_crm/i18n/pt.po | 2 +- addons/sale_crm/i18n/pt_BR.po | 2 +- addons/sale_crm/i18n/ro.po | 2 +- addons/sale_crm/i18n/ru.po | 2 +- addons/sale_crm/i18n/sk.po | 2 +- addons/sale_crm/i18n/sl.po | 2 +- addons/sale_crm/i18n/sq.po | 2 +- addons/sale_crm/i18n/sv.po | 2 +- addons/sale_crm/i18n/tlh.po | 2 +- addons/sale_crm/i18n/tr.po | 2 +- addons/sale_crm/i18n/uk.po | 2 +- addons/sale_crm/i18n/vi.po | 2 +- addons/sale_crm/i18n/zh_CN.po | 2 +- addons/sale_crm/i18n/zh_TW.po | 2 +- addons/sale_journal/i18n/ar.po | 2 +- addons/sale_journal/i18n/bg.po | 2 +- addons/sale_journal/i18n/bs.po | 2 +- addons/sale_journal/i18n/ca.po | 2 +- addons/sale_journal/i18n/cs.po | 2 +- addons/sale_journal/i18n/da.po | 2 +- addons/sale_journal/i18n/de.po | 2 +- addons/sale_journal/i18n/el.po | 2 +- addons/sale_journal/i18n/es.po | 2 +- addons/sale_journal/i18n/es_AR.po | 2 +- addons/sale_journal/i18n/es_CL.po | 2 +- addons/sale_journal/i18n/es_CR.po | 2 +- addons/sale_journal/i18n/et.po | 2 +- addons/sale_journal/i18n/fi.po | 2 +- addons/sale_journal/i18n/fr.po | 2 +- addons/sale_journal/i18n/gl.po | 2 +- addons/sale_journal/i18n/hr.po | 2 +- addons/sale_journal/i18n/hu.po | 2 +- addons/sale_journal/i18n/id.po | 2 +- addons/sale_journal/i18n/it.po | 2 +- addons/sale_journal/i18n/ja.po | 2 +- addons/sale_journal/i18n/ko.po | 2 +- addons/sale_journal/i18n/lt.po | 2 +- addons/sale_journal/i18n/lv.po | 2 +- addons/sale_journal/i18n/mk.po | 2 +- addons/sale_journal/i18n/mn.po | 2 +- addons/sale_journal/i18n/nb.po | 2 +- addons/sale_journal/i18n/nl.po | 2 +- addons/sale_journal/i18n/nl_BE.po | 2 +- addons/sale_journal/i18n/pl.po | 2 +- addons/sale_journal/i18n/pt.po | 2 +- addons/sale_journal/i18n/pt_BR.po | 2 +- addons/sale_journal/i18n/ro.po | 2 +- addons/sale_journal/i18n/ru.po | 2 +- addons/sale_journal/i18n/sk.po | 2 +- addons/sale_journal/i18n/sl.po | 2 +- addons/sale_journal/i18n/sq.po | 2 +- addons/sale_journal/i18n/sv.po | 2 +- addons/sale_journal/i18n/tlh.po | 2 +- addons/sale_journal/i18n/tr.po | 2 +- addons/sale_journal/i18n/uk.po | 2 +- addons/sale_journal/i18n/vi.po | 2 +- addons/sale_journal/i18n/zh_CN.po | 2 +- addons/sale_journal/i18n/zh_TW.po | 2 +- addons/sale_margin/i18n/ar.po | 2 +- addons/sale_margin/i18n/bg.po | 2 +- addons/sale_margin/i18n/ca.po | 2 +- addons/sale_margin/i18n/da.po | 2 +- addons/sale_margin/i18n/de.po | 2 +- addons/sale_margin/i18n/el.po | 2 +- addons/sale_margin/i18n/es.po | 2 +- addons/sale_margin/i18n/es_CL.po | 2 +- addons/sale_margin/i18n/es_CR.po | 2 +- addons/sale_margin/i18n/et.po | 2 +- addons/sale_margin/i18n/fi.po | 2 +- addons/sale_margin/i18n/fr.po | 2 +- addons/sale_margin/i18n/hr.po | 2 +- addons/sale_margin/i18n/hu.po | 2 +- addons/sale_margin/i18n/it.po | 2 +- addons/sale_margin/i18n/ja.po | 2 +- addons/sale_margin/i18n/mk.po | 2 +- addons/sale_margin/i18n/mn.po | 2 +- addons/sale_margin/i18n/nb.po | 2 +- addons/sale_margin/i18n/nl.po | 2 +- addons/sale_margin/i18n/pl.po | 2 +- addons/sale_margin/i18n/pt.po | 2 +- addons/sale_margin/i18n/pt_BR.po | 2 +- addons/sale_margin/i18n/ro.po | 2 +- addons/sale_margin/i18n/ru.po | 2 +- addons/sale_margin/i18n/sk.po | 2 +- addons/sale_margin/i18n/sl.po | 2 +- addons/sale_margin/i18n/sv.po | 2 +- addons/sale_margin/i18n/tr.po | 2 +- addons/sale_margin/i18n/zh_CN.po | 2 +- addons/sale_mrp/i18n/ar.po | 2 +- addons/sale_mrp/i18n/bg.po | 2 +- addons/sale_mrp/i18n/ca.po | 2 +- addons/sale_mrp/i18n/da.po | 2 +- addons/sale_mrp/i18n/de.po | 2 +- addons/sale_mrp/i18n/es.po | 2 +- addons/sale_mrp/i18n/es_CL.po | 2 +- addons/sale_mrp/i18n/es_CR.po | 2 +- addons/sale_mrp/i18n/et.po | 2 +- addons/sale_mrp/i18n/fi.po | 2 +- addons/sale_mrp/i18n/fr.po | 2 +- addons/sale_mrp/i18n/gl.po | 2 +- addons/sale_mrp/i18n/hr.po | 2 +- addons/sale_mrp/i18n/hu.po | 2 +- addons/sale_mrp/i18n/it.po | 2 +- addons/sale_mrp/i18n/ja.po | 2 +- addons/sale_mrp/i18n/mk.po | 2 +- addons/sale_mrp/i18n/mn.po | 2 +- addons/sale_mrp/i18n/nb.po | 2 +- addons/sale_mrp/i18n/nl.po | 2 +- addons/sale_mrp/i18n/nl_BE.po | 2 +- addons/sale_mrp/i18n/pl.po | 2 +- addons/sale_mrp/i18n/pt.po | 2 +- addons/sale_mrp/i18n/pt_BR.po | 2 +- addons/sale_mrp/i18n/ro.po | 2 +- addons/sale_mrp/i18n/ru.po | 2 +- addons/sale_mrp/i18n/sl.po | 2 +- addons/sale_mrp/i18n/sr@latin.po | 2 +- addons/sale_mrp/i18n/sv.po | 2 +- addons/sale_mrp/i18n/tr.po | 2 +- addons/sale_mrp/i18n/zh_CN.po | 2 +- addons/sale_order_dates/i18n/ar.po | 2 +- addons/sale_order_dates/i18n/bg.po | 2 +- addons/sale_order_dates/i18n/ca.po | 2 +- addons/sale_order_dates/i18n/da.po | 2 +- addons/sale_order_dates/i18n/de.po | 2 +- addons/sale_order_dates/i18n/el.po | 2 +- addons/sale_order_dates/i18n/es.po | 2 +- addons/sale_order_dates/i18n/es_CL.po | 2 +- addons/sale_order_dates/i18n/es_CR.po | 2 +- addons/sale_order_dates/i18n/fi.po | 2 +- addons/sale_order_dates/i18n/fr.po | 2 +- addons/sale_order_dates/i18n/gl.po | 2 +- addons/sale_order_dates/i18n/hr.po | 2 +- addons/sale_order_dates/i18n/hu.po | 2 +- addons/sale_order_dates/i18n/id.po | 2 +- addons/sale_order_dates/i18n/it.po | 2 +- addons/sale_order_dates/i18n/ja.po | 2 +- addons/sale_order_dates/i18n/mk.po | 2 +- addons/sale_order_dates/i18n/mn.po | 2 +- addons/sale_order_dates/i18n/nb.po | 2 +- addons/sale_order_dates/i18n/nl.po | 2 +- addons/sale_order_dates/i18n/pl.po | 2 +- addons/sale_order_dates/i18n/pt.po | 2 +- addons/sale_order_dates/i18n/pt_BR.po | 2 +- addons/sale_order_dates/i18n/ro.po | 2 +- addons/sale_order_dates/i18n/ru.po | 2 +- addons/sale_order_dates/i18n/sk.po | 2 +- addons/sale_order_dates/i18n/sl.po | 2 +- addons/sale_order_dates/i18n/sr@latin.po | 2 +- addons/sale_order_dates/i18n/sv.po | 2 +- addons/sale_order_dates/i18n/tr.po | 2 +- addons/sale_order_dates/i18n/zh_CN.po | 2 +- addons/sale_stock/i18n/ar.po | 2 +- addons/sale_stock/i18n/bg.po | 2 +- addons/sale_stock/i18n/bs.po | 2 +- addons/sale_stock/i18n/ca.po | 2 +- addons/sale_stock/i18n/cs.po | 2 +- addons/sale_stock/i18n/da.po | 2 +- addons/sale_stock/i18n/de.po | 2 +- addons/sale_stock/i18n/el.po | 2 +- addons/sale_stock/i18n/es.po | 2 +- addons/sale_stock/i18n/et.po | 2 +- addons/sale_stock/i18n/fi.po | 2 +- addons/sale_stock/i18n/fr.po | 2 +- addons/sale_stock/i18n/gl.po | 2 +- addons/sale_stock/i18n/hr.po | 2 +- addons/sale_stock/i18n/hu.po | 2 +- addons/sale_stock/i18n/id.po | 2 +- addons/sale_stock/i18n/is.po | 2 +- addons/sale_stock/i18n/it.po | 2 +- addons/sale_stock/i18n/ja.po | 2 +- addons/sale_stock/i18n/ko.po | 2 +- addons/sale_stock/i18n/lo.po | 2 +- addons/sale_stock/i18n/lt.po | 2 +- addons/sale_stock/i18n/lv.po | 2 +- addons/sale_stock/i18n/mk.po | 2 +- addons/sale_stock/i18n/mn.po | 2 +- addons/sale_stock/i18n/nb.po | 2 +- addons/sale_stock/i18n/nl.po | 2 +- addons/sale_stock/i18n/oc.po | 2 +- addons/sale_stock/i18n/pl.po | 2 +- addons/sale_stock/i18n/pt.po | 2 +- addons/sale_stock/i18n/pt_BR.po | 2 +- addons/sale_stock/i18n/ro.po | 2 +- addons/sale_stock/i18n/ru.po | 2 +- addons/sale_stock/i18n/sk.po | 2 +- addons/sale_stock/i18n/sl.po | 2 +- addons/sale_stock/i18n/sq.po | 2 +- addons/sale_stock/i18n/sr.po | 2 +- addons/sale_stock/i18n/sr@latin.po | 2 +- addons/sale_stock/i18n/sv.po | 2 +- addons/sale_stock/i18n/th.po | 2 +- addons/sale_stock/i18n/tlh.po | 2 +- addons/sale_stock/i18n/tr.po | 2 +- addons/sale_stock/i18n/uk.po | 2 +- addons/sale_stock/i18n/vi.po | 2 +- addons/sale_stock/i18n/zh_CN.po | 2 +- addons/sale_stock/i18n/zh_TW.po | 2 +- addons/share/i18n/ar.po | 2 +- addons/share/i18n/bg.po | 2 +- addons/share/i18n/ca.po | 2 +- addons/share/i18n/cs.po | 2 +- addons/share/i18n/da.po | 2 +- addons/share/i18n/de.po | 2 +- addons/share/i18n/es.po | 2 +- addons/share/i18n/es_CR.po | 2 +- addons/share/i18n/et.po | 2 +- addons/share/i18n/fi.po | 2 +- addons/share/i18n/fr.po | 2 +- addons/share/i18n/gl.po | 2 +- addons/share/i18n/hr.po | 2 +- addons/share/i18n/hu.po | 2 +- addons/share/i18n/it.po | 2 +- addons/share/i18n/ja.po | 2 +- addons/share/i18n/mk.po | 2 +- addons/share/i18n/mn.po | 2 +- addons/share/i18n/nl.po | 2 +- addons/share/i18n/pl.po | 2 +- addons/share/i18n/pt.po | 2 +- addons/share/i18n/pt_BR.po | 2 +- addons/share/i18n/ro.po | 2 +- addons/share/i18n/ru.po | 2 +- addons/share/i18n/sl.po | 2 +- addons/share/i18n/sv.po | 2 +- addons/share/i18n/tr.po | 2 +- addons/share/i18n/zh_CN.po | 2 +- addons/stock/i18n/ar.po | 2 +- addons/stock/i18n/bg.po | 2 +- addons/stock/i18n/bs.po | 2 +- addons/stock/i18n/ca.po | 2 +- addons/stock/i18n/cs.po | 2 +- addons/stock/i18n/da.po | 2 +- addons/stock/i18n/de.po | 2 +- addons/stock/i18n/el.po | 2 +- addons/stock/i18n/es.po | 2 +- addons/stock/i18n/es_AR.po | 2 +- addons/stock/i18n/es_CL.po | 2 +- addons/stock/i18n/es_CR.po | 2 +- addons/stock/i18n/es_DO.po | 2 +- addons/stock/i18n/es_EC.po | 2 +- addons/stock/i18n/es_MX.po | 2 +- addons/stock/i18n/es_VE.po | 2 +- addons/stock/i18n/et.po | 2 +- addons/stock/i18n/fi.po | 2 +- addons/stock/i18n/fr.po | 2 +- addons/stock/i18n/gl.po | 2 +- addons/stock/i18n/hr.po | 2 +- addons/stock/i18n/hu.po | 2 +- addons/stock/i18n/id.po | 2 +- addons/stock/i18n/it.po | 2 +- addons/stock/i18n/ja.po | 2 +- addons/stock/i18n/ko.po | 2 +- addons/stock/i18n/lt.po | 2 +- addons/stock/i18n/lv.po | 2 +- addons/stock/i18n/mk.po | 2 +- addons/stock/i18n/mn.po | 2 +- addons/stock/i18n/nb.po | 2 +- addons/stock/i18n/nl.po | 6 +- addons/stock/i18n/nl_BE.po | 2 +- addons/stock/i18n/pl.po | 2 +- addons/stock/i18n/pt.po | 2 +- addons/stock/i18n/pt_BR.po | 2 +- addons/stock/i18n/ro.po | 2 +- addons/stock/i18n/ru.po | 2 +- addons/stock/i18n/sl.po | 2 +- addons/stock/i18n/sq.po | 2 +- addons/stock/i18n/sr.po | 2 +- addons/stock/i18n/sr@latin.po | 2 +- addons/stock/i18n/sv.po | 2 +- addons/stock/i18n/th.po | 2 +- addons/stock/i18n/tlh.po | 2 +- addons/stock/i18n/tr.po | 2 +- addons/stock/i18n/uk.po | 2 +- addons/stock/i18n/vi.po | 2 +- addons/stock/i18n/zh_CN.po | 2 +- addons/stock/i18n/zh_TW.po | 2 +- addons/stock_invoice_directly/i18n/ar.po | 2 +- addons/stock_invoice_directly/i18n/bg.po | 2 +- addons/stock_invoice_directly/i18n/bs.po | 2 +- addons/stock_invoice_directly/i18n/ca.po | 2 +- addons/stock_invoice_directly/i18n/cs.po | 2 +- addons/stock_invoice_directly/i18n/da.po | 2 +- addons/stock_invoice_directly/i18n/de.po | 2 +- addons/stock_invoice_directly/i18n/el.po | 2 +- addons/stock_invoice_directly/i18n/es.po | 2 +- addons/stock_invoice_directly/i18n/es_AR.po | 2 +- addons/stock_invoice_directly/i18n/es_CL.po | 2 +- addons/stock_invoice_directly/i18n/es_CR.po | 2 +- addons/stock_invoice_directly/i18n/et.po | 2 +- addons/stock_invoice_directly/i18n/fi.po | 2 +- addons/stock_invoice_directly/i18n/fr.po | 2 +- addons/stock_invoice_directly/i18n/gl.po | 2 +- addons/stock_invoice_directly/i18n/hr.po | 2 +- addons/stock_invoice_directly/i18n/hu.po | 2 +- addons/stock_invoice_directly/i18n/id.po | 2 +- addons/stock_invoice_directly/i18n/it.po | 2 +- addons/stock_invoice_directly/i18n/ja.po | 2 +- addons/stock_invoice_directly/i18n/ko.po | 2 +- addons/stock_invoice_directly/i18n/lt.po | 2 +- addons/stock_invoice_directly/i18n/lv.po | 2 +- addons/stock_invoice_directly/i18n/mk.po | 2 +- addons/stock_invoice_directly/i18n/mn.po | 2 +- addons/stock_invoice_directly/i18n/nb.po | 2 +- addons/stock_invoice_directly/i18n/nl.po | 2 +- addons/stock_invoice_directly/i18n/nl_BE.po | 2 +- addons/stock_invoice_directly/i18n/oc.po | 2 +- addons/stock_invoice_directly/i18n/pl.po | 2 +- addons/stock_invoice_directly/i18n/pt.po | 2 +- addons/stock_invoice_directly/i18n/pt_BR.po | 2 +- addons/stock_invoice_directly/i18n/ro.po | 2 +- addons/stock_invoice_directly/i18n/ru.po | 2 +- addons/stock_invoice_directly/i18n/sl.po | 2 +- addons/stock_invoice_directly/i18n/sq.po | 2 +- addons/stock_invoice_directly/i18n/sr.po | 2 +- .../stock_invoice_directly/i18n/sr@latin.po | 2 +- addons/stock_invoice_directly/i18n/sv.po | 2 +- addons/stock_invoice_directly/i18n/tr.po | 2 +- addons/stock_invoice_directly/i18n/uk.po | 2 +- addons/stock_invoice_directly/i18n/vi.po | 2 +- addons/stock_invoice_directly/i18n/zh_CN.po | 2 +- addons/stock_invoice_directly/i18n/zh_TW.po | 2 +- addons/stock_location/i18n/ar.po | 2 +- addons/stock_location/i18n/bg.po | 2 +- addons/stock_location/i18n/bs.po | 2 +- addons/stock_location/i18n/ca.po | 2 +- addons/stock_location/i18n/cs.po | 2 +- addons/stock_location/i18n/da.po | 2 +- addons/stock_location/i18n/de.po | 2 +- addons/stock_location/i18n/el.po | 2 +- addons/stock_location/i18n/es.po | 2 +- addons/stock_location/i18n/es_AR.po | 2 +- addons/stock_location/i18n/es_CL.po | 2 +- addons/stock_location/i18n/es_CR.po | 2 +- addons/stock_location/i18n/et.po | 2 +- addons/stock_location/i18n/fi.po | 2 +- addons/stock_location/i18n/fr.po | 14 +- addons/stock_location/i18n/gl.po | 2 +- addons/stock_location/i18n/hr.po | 2 +- addons/stock_location/i18n/hu.po | 2 +- addons/stock_location/i18n/id.po | 2 +- addons/stock_location/i18n/it.po | 2 +- addons/stock_location/i18n/ja.po | 2 +- addons/stock_location/i18n/ko.po | 2 +- addons/stock_location/i18n/lt.po | 2 +- addons/stock_location/i18n/lv.po | 2 +- addons/stock_location/i18n/mk.po | 2 +- addons/stock_location/i18n/mn.po | 2 +- addons/stock_location/i18n/nb.po | 2 +- addons/stock_location/i18n/nl.po | 2 +- addons/stock_location/i18n/nl_BE.po | 2 +- addons/stock_location/i18n/pl.po | 2 +- addons/stock_location/i18n/pt.po | 2 +- addons/stock_location/i18n/pt_BR.po | 2 +- addons/stock_location/i18n/ro.po | 2 +- addons/stock_location/i18n/ru.po | 2 +- addons/stock_location/i18n/sl.po | 2 +- addons/stock_location/i18n/sq.po | 2 +- addons/stock_location/i18n/sv.po | 2 +- addons/stock_location/i18n/tlh.po | 2 +- addons/stock_location/i18n/tr.po | 2 +- addons/stock_location/i18n/uk.po | 2 +- addons/stock_location/i18n/vi.po | 2 +- addons/stock_location/i18n/zh_CN.po | 2 +- addons/stock_location/i18n/zh_TW.po | 2 +- addons/stock_no_autopicking/i18n/ar.po | 2 +- addons/stock_no_autopicking/i18n/bg.po | 2 +- addons/stock_no_autopicking/i18n/bs.po | 2 +- addons/stock_no_autopicking/i18n/ca.po | 2 +- addons/stock_no_autopicking/i18n/cs.po | 2 +- addons/stock_no_autopicking/i18n/da.po | 2 +- addons/stock_no_autopicking/i18n/de.po | 2 +- addons/stock_no_autopicking/i18n/el.po | 2 +- addons/stock_no_autopicking/i18n/es.po | 2 +- addons/stock_no_autopicking/i18n/es_AR.po | 2 +- addons/stock_no_autopicking/i18n/es_CL.po | 2 +- addons/stock_no_autopicking/i18n/es_CR.po | 2 +- addons/stock_no_autopicking/i18n/et.po | 2 +- addons/stock_no_autopicking/i18n/fi.po | 2 +- addons/stock_no_autopicking/i18n/fr.po | 2 +- addons/stock_no_autopicking/i18n/gl.po | 2 +- addons/stock_no_autopicking/i18n/hr.po | 2 +- addons/stock_no_autopicking/i18n/hu.po | 2 +- addons/stock_no_autopicking/i18n/id.po | 2 +- addons/stock_no_autopicking/i18n/it.po | 2 +- addons/stock_no_autopicking/i18n/ja.po | 2 +- addons/stock_no_autopicking/i18n/ko.po | 2 +- addons/stock_no_autopicking/i18n/lt.po | 2 +- addons/stock_no_autopicking/i18n/lv.po | 2 +- addons/stock_no_autopicking/i18n/mk.po | 2 +- addons/stock_no_autopicking/i18n/mn.po | 2 +- addons/stock_no_autopicking/i18n/nl.po | 2 +- addons/stock_no_autopicking/i18n/nl_BE.po | 2 +- addons/stock_no_autopicking/i18n/oc.po | 2 +- addons/stock_no_autopicking/i18n/pl.po | 2 +- addons/stock_no_autopicking/i18n/pt.po | 2 +- addons/stock_no_autopicking/i18n/pt_BR.po | 2 +- addons/stock_no_autopicking/i18n/ro.po | 2 +- addons/stock_no_autopicking/i18n/ru.po | 2 +- addons/stock_no_autopicking/i18n/sl.po | 2 +- addons/stock_no_autopicking/i18n/sq.po | 2 +- addons/stock_no_autopicking/i18n/sr@latin.po | 2 +- addons/stock_no_autopicking/i18n/sv.po | 2 +- addons/stock_no_autopicking/i18n/tlh.po | 2 +- addons/stock_no_autopicking/i18n/tr.po | 2 +- addons/stock_no_autopicking/i18n/uk.po | 2 +- addons/stock_no_autopicking/i18n/vi.po | 2 +- addons/stock_no_autopicking/i18n/zh_CN.po | 2 +- addons/stock_no_autopicking/i18n/zh_TW.po | 2 +- addons/subscription/i18n/ar.po | 2 +- addons/subscription/i18n/bg.po | 2 +- addons/subscription/i18n/bs.po | 2 +- addons/subscription/i18n/ca.po | 2 +- addons/subscription/i18n/cs.po | 2 +- addons/subscription/i18n/da.po | 2 +- addons/subscription/i18n/de.po | 2 +- addons/subscription/i18n/es.po | 2 +- addons/subscription/i18n/es_AR.po | 2 +- addons/subscription/i18n/es_CR.po | 2 +- addons/subscription/i18n/et.po | 2 +- addons/subscription/i18n/fi.po | 2 +- addons/subscription/i18n/fr.po | 2 +- addons/subscription/i18n/gl.po | 2 +- addons/subscription/i18n/hr.po | 2 +- addons/subscription/i18n/hu.po | 2 +- addons/subscription/i18n/id.po | 2 +- addons/subscription/i18n/it.po | 2 +- addons/subscription/i18n/ja.po | 2 +- addons/subscription/i18n/ko.po | 2 +- addons/subscription/i18n/lt.po | 2 +- addons/subscription/i18n/mk.po | 2 +- addons/subscription/i18n/nl.po | 2 +- addons/subscription/i18n/nl_BE.po | 2 +- addons/subscription/i18n/pl.po | 2 +- addons/subscription/i18n/pt.po | 2 +- addons/subscription/i18n/pt_BR.po | 2 +- addons/subscription/i18n/ro.po | 2 +- addons/subscription/i18n/ru.po | 2 +- addons/subscription/i18n/sl.po | 2 +- addons/subscription/i18n/sq.po | 2 +- addons/subscription/i18n/sv.po | 2 +- addons/subscription/i18n/tlh.po | 2 +- addons/subscription/i18n/tr.po | 2 +- addons/subscription/i18n/uk.po | 2 +- addons/subscription/i18n/vi.po | 2 +- addons/subscription/i18n/zh_CN.po | 2 +- addons/subscription/i18n/zh_TW.po | 2 +- addons/survey/i18n/ar.po | 2 +- addons/survey/i18n/bg.po | 2 +- addons/survey/i18n/ca.po | 2 +- addons/survey/i18n/cs.po | 2 +- addons/survey/i18n/da.po | 2 +- addons/survey/i18n/de.po | 2 +- addons/survey/i18n/es.po | 2 +- addons/survey/i18n/es_CR.po | 2 +- addons/survey/i18n/et.po | 2 +- addons/survey/i18n/fi.po | 2 +- addons/survey/i18n/fr.po | 8 +- addons/survey/i18n/gl.po | 2 +- addons/survey/i18n/hr.po | 2 +- addons/survey/i18n/hu.po | 2 +- addons/survey/i18n/it.po | 2 +- addons/survey/i18n/ja.po | 2 +- addons/survey/i18n/mk.po | 2 +- addons/survey/i18n/mn.po | 2 +- addons/survey/i18n/nl.po | 2 +- addons/survey/i18n/pl.po | 2 +- addons/survey/i18n/pt.po | 2 +- addons/survey/i18n/pt_BR.po | 2 +- addons/survey/i18n/ro.po | 2 +- addons/survey/i18n/ru.po | 2 +- addons/survey/i18n/sl.po | 2 +- addons/survey/i18n/sr.po | 2 +- addons/survey/i18n/sr@latin.po | 2 +- addons/survey/i18n/sv.po | 2 +- addons/survey/i18n/tr.po | 2 +- addons/survey/i18n/zh_CN.po | 2 +- addons/warning/i18n/ar.po | 2 +- addons/warning/i18n/bg.po | 2 +- addons/warning/i18n/bs.po | 2 +- addons/warning/i18n/ca.po | 2 +- addons/warning/i18n/cs.po | 2 +- addons/warning/i18n/da.po | 2 +- addons/warning/i18n/de.po | 2 +- addons/warning/i18n/el.po | 2 +- addons/warning/i18n/es.po | 2 +- addons/warning/i18n/es_AR.po | 2 +- addons/warning/i18n/es_CR.po | 2 +- addons/warning/i18n/et.po | 2 +- addons/warning/i18n/fi.po | 2 +- addons/warning/i18n/fr.po | 2 +- addons/warning/i18n/gl.po | 2 +- addons/warning/i18n/hr.po | 2 +- addons/warning/i18n/hu.po | 2 +- addons/warning/i18n/id.po | 2 +- addons/warning/i18n/it.po | 2 +- addons/warning/i18n/ja.po | 2 +- addons/warning/i18n/ko.po | 2 +- addons/warning/i18n/lt.po | 2 +- addons/warning/i18n/mk.po | 2 +- addons/warning/i18n/mn.po | 2 +- addons/warning/i18n/nb.po | 2 +- addons/warning/i18n/nl.po | 2 +- addons/warning/i18n/nl_BE.po | 2 +- addons/warning/i18n/pl.po | 2 +- addons/warning/i18n/pt.po | 2 +- addons/warning/i18n/pt_BR.po | 2 +- addons/warning/i18n/ro.po | 2 +- addons/warning/i18n/ru.po | 2 +- addons/warning/i18n/sl.po | 2 +- addons/warning/i18n/sq.po | 2 +- addons/warning/i18n/sr.po | 2 +- addons/warning/i18n/sr@latin.po | 2 +- addons/warning/i18n/sv.po | 2 +- addons/warning/i18n/tlh.po | 2 +- addons/warning/i18n/tr.po | 2 +- addons/warning/i18n/uk.po | 2 +- addons/warning/i18n/vi.po | 2 +- addons/warning/i18n/zh_CN.po | 2 +- addons/warning/i18n/zh_TW.po | 2 +- addons/web_linkedin/i18n/de.po | 2 +- addons/web_linkedin/i18n/es.po | 2 +- addons/web_linkedin/i18n/fr.po | 2 +- addons/web_linkedin/i18n/hr.po | 2 +- addons/web_linkedin/i18n/hu.po | 2 +- addons/web_linkedin/i18n/it.po | 2 +- addons/web_linkedin/i18n/mk.po | 2 +- addons/web_linkedin/i18n/mn.po | 2 +- addons/web_linkedin/i18n/nl.po | 2 +- addons/web_linkedin/i18n/pl.po | 2 +- addons/web_linkedin/i18n/pt.po | 2 +- addons/web_linkedin/i18n/pt_BR.po | 2 +- addons/web_linkedin/i18n/ro.po | 2 +- addons/web_linkedin/i18n/sl.po | 2 +- addons/web_linkedin/i18n/tr.po | 2 +- addons/web_linkedin/i18n/zh_CN.po | 2 +- addons/web_shortcuts/i18n/cs.po | 2 +- addons/web_shortcuts/i18n/de.po | 2 +- addons/web_shortcuts/i18n/es.po | 2 +- addons/web_shortcuts/i18n/fr.po | 2 +- addons/web_shortcuts/i18n/hr.po | 2 +- addons/web_shortcuts/i18n/hu.po | 2 +- addons/web_shortcuts/i18n/it.po | 2 +- addons/web_shortcuts/i18n/mk.po | 2 +- addons/web_shortcuts/i18n/mn.po | 2 +- addons/web_shortcuts/i18n/nl.po | 2 +- addons/web_shortcuts/i18n/pl.po | 2 +- addons/web_shortcuts/i18n/pt.po | 2 +- addons/web_shortcuts/i18n/pt_BR.po | 2 +- addons/web_shortcuts/i18n/ro.po | 2 +- addons/web_shortcuts/i18n/ru.po | 2 +- addons/web_shortcuts/i18n/sl.po | 2 +- addons/web_shortcuts/i18n/sv.po | 2 +- addons/web_shortcuts/i18n/tr.po | 2 +- addons/web_shortcuts/i18n/zh_CN.po | 2 +- addons/web_shortcuts/i18n/zh_TW.po | 2 +- 5395 files changed, 6737 insertions(+), 5595 deletions(-) create mode 100644 addons/account_asset/i18n/ko.po create mode 100644 addons/base_crypt/i18n/hu.po create mode 100644 addons/base_gengo/i18n/hu.po diff --git a/addons/account/i18n/ar.po b/addons/account/i18n/ar.po index 420519ba0f6..5943c20bc03 100644 --- a/addons/account/i18n/ar.po +++ b/addons/account/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/bg.po b/addons/account/i18n/bg.po index 2dcc9d71a8c..e8068ddc611 100644 --- a/addons/account/i18n/bg.po +++ b/addons/account/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:14+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/br.po b/addons/account/i18n/br.po index 9510fbf3317..71d9d1a08d8 100644 --- a/addons/account/i18n/br.po +++ b/addons/account/i18n/br.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-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/bs.po b/addons/account/i18n/bs.po index 9bb38258db6..2b2f55fb979 100644 --- a/addons/account/i18n/bs.po +++ b/addons/account/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/ca.po b/addons/account/i18n/ca.po index d6e59a9eaa5..27c9ab33600 100644 --- a/addons/account/i18n/ca.po +++ b/addons/account/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:14+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:13+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/cs.po b/addons/account/i18n/cs.po index f9428bec7f3..9b99eb9b425 100644 --- a/addons/account/i18n/cs.po +++ b/addons/account/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:14+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:13+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/account/i18n/da.po b/addons/account/i18n/da.po index 11d8febfdda..3f07c836673 100644 --- a/addons/account/i18n/da.po +++ b/addons/account/i18n/da.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-03-15 05:14+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:13+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/de.po b/addons/account/i18n/de.po index 08429951fed..3a66f35a4ab 100644 --- a/addons/account/i18n/de.po +++ b/addons/account/i18n/de.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-03-15 05:15+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:14+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/el.po b/addons/account/i18n/el.po index 8fcb60e7ba5..c309fb16724 100644 --- a/addons/account/i18n/el.po +++ b/addons/account/i18n/el.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-03-15 05:15+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:14+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/en_GB.po b/addons/account/i18n/en_GB.po index e3a04509652..ef3df04f0bb 100644 --- a/addons/account/i18n/en_GB.po +++ b/addons/account/i18n/en_GB.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-03-15 05:21+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:20+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/en_US.po b/addons/account/i18n/en_US.po index f54a93cf6bd..79fca3338ef 100644 --- a/addons/account/i18n/en_US.po +++ b/addons/account/i18n/en_US.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-03-15 05:20+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:19+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/es.po b/addons/account/i18n/es.po index 3242cd90002..4c17573d1e1 100644 --- a/addons/account/i18n/es.po +++ b/addons/account/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:19+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:18+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/es_AR.po b/addons/account/i18n/es_AR.po index f8f78042276..30214489f84 100644 --- a/addons/account/i18n/es_AR.po +++ b/addons/account/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:20+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:19+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/es_CL.po b/addons/account/i18n/es_CL.po index b39fd3c964d..748a57f6821 100644 --- a/addons/account/i18n/es_CL.po +++ b/addons/account/i18n/es_CL.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-03-15 05:21+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:20+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/es_CR.po b/addons/account/i18n/es_CR.po index 682412acf12..1d24501c814 100644 --- a/addons/account/i18n/es_CR.po +++ b/addons/account/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:21+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:20+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/account/i18n/es_DO.po b/addons/account/i18n/es_DO.po index 3596f0b1213..cbdb6b31ac7 100644 --- a/addons/account/i18n/es_DO.po +++ b/addons/account/i18n/es_DO.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-03-15 05:21+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:20+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/es_EC.po b/addons/account/i18n/es_EC.po index c8863a56749..ceb7060fef7 100644 --- a/addons/account/i18n/es_EC.po +++ b/addons/account/i18n/es_EC.po @@ -17,7 +17,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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/es_MX.po b/addons/account/i18n/es_MX.po index 85c3899c593..8b53920536a 100644 --- a/addons/account/i18n/es_MX.po +++ b/addons/account/i18n/es_MX.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-03-15 05:21+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/es_PY.po b/addons/account/i18n/es_PY.po index 8b2f1e94aff..77cf0e1ed1d 100644 --- a/addons/account/i18n/es_PY.po +++ b/addons/account/i18n/es_PY.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/es_UY.po b/addons/account/i18n/es_UY.po index 79752f4482a..212d698649c 100644 --- a/addons/account/i18n/es_UY.po +++ b/addons/account/i18n/es_UY.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-03-15 05:21+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:20+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/es_VE.po b/addons/account/i18n/es_VE.po index c43f08229a4..ad8322763b6 100644 --- a/addons/account/i18n/es_VE.po +++ b/addons/account/i18n/es_VE.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-03-15 05:20+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:19+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/et.po b/addons/account/i18n/et.po index e15acfdcabf..edf30046b52 100644 --- a/addons/account/i18n/et.po +++ b/addons/account/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:14+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:13+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/eu.po b/addons/account/i18n/eu.po index 281c4561ab4..e6504332dd4 100644 --- a/addons/account/i18n/eu.po +++ b/addons/account/i18n/eu.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-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/fa.po b/addons/account/i18n/fa.po index a4c1c306b2e..6f888cee456 100644 --- a/addons/account/i18n/fa.po +++ b/addons/account/i18n/fa.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-03-15 05:17+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:16+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/fa_AF.po b/addons/account/i18n/fa_AF.po index ebfb808cf7a..55719fdd89d 100644 --- a/addons/account/i18n/fa_AF.po +++ b/addons/account/i18n/fa_AF.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/fi.po b/addons/account/i18n/fi.po index c1fb1f4eff3..708a87960db 100644 --- a/addons/account/i18n/fi.po +++ b/addons/account/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-03-15 05:15+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:13+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/fr.po b/addons/account/i18n/fr.po index 1db6ac5bd33..2661431274a 100644 --- a/addons/account/i18n/fr.po +++ b/addons/account/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:15+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:14+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/fr_BE.po b/addons/account/i18n/fr_BE.po index 4fe15c73a9b..d260aae5bf6 100644 --- a/addons/account/i18n/fr_BE.po +++ b/addons/account/i18n/fr_BE.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-03-15 05:20+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:19+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/gl.po b/addons/account/i18n/gl.po index e635b2aad9a..dd800f06230 100644 --- a/addons/account/i18n/gl.po +++ b/addons/account/i18n/gl.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-03-15 05:15+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:14+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/gu.po b/addons/account/i18n/gu.po index e39cf3820d6..9549d855ce8 100644 --- a/addons/account/i18n/gu.po +++ b/addons/account/i18n/gu.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-03-15 05:15+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:14+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/he.po b/addons/account/i18n/he.po index cfa53aa5a87..51d47bc6007 100644 --- a/addons/account/i18n/he.po +++ b/addons/account/i18n/he.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-03-15 05:15+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:14+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/hi.po b/addons/account/i18n/hi.po index 00b3cf3c872..166c65b4ed8 100644 --- a/addons/account/i18n/hi.po +++ b/addons/account/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:15+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:14+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/hr.po b/addons/account/i18n/hr.po index 10e89685bf2..96b8b0b4ba6 100644 --- a/addons/account/i18n/hr.po +++ b/addons/account/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:18+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:17+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/hu.po b/addons/account/i18n/hu.po index 16d79c8309d..b31d83f9966 100644 --- a/addons/account/i18n/hu.po +++ b/addons/account/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:15+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:15+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/id.po b/addons/account/i18n/id.po index d66f0fda16d..ab9998d9d1f 100644 --- a/addons/account/i18n/id.po +++ b/addons/account/i18n/id.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-03-15 05:16+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:15+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/it.po b/addons/account/i18n/it.po index 5f330b070fd..51278670f68 100644 --- a/addons/account/i18n/it.po +++ b/addons/account/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:16+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:15+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/ja.po b/addons/account/i18n/ja.po index 57f7ba992b0..abae3bb7f31 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-03-15 05:16+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:15+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/kab.po b/addons/account/i18n/kab.po index 6fd7f0c33cc..9b067e5b477 100644 --- a/addons/account/i18n/kab.po +++ b/addons/account/i18n/kab.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:16+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:15+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/kk.po b/addons/account/i18n/kk.po index 6647752fd4a..e122aa4d542 100644 --- a/addons/account/i18n/kk.po +++ b/addons/account/i18n/kk.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-03-15 05:16+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:15+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/ko.po b/addons/account/i18n/ko.po index f8180378ec8..db5b5bd8a0e 100644 --- a/addons/account/i18n/ko.po +++ b/addons/account/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:16+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:15+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/lo.po b/addons/account/i18n/lo.po index 81ed06beb40..31df85f8d17 100644 --- a/addons/account/i18n/lo.po +++ b/addons/account/i18n/lo.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-03-15 05:16+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:15+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/lt.po b/addons/account/i18n/lt.po index 0e00e423821..2d1ba7c2bb6 100644 --- a/addons/account/i18n/lt.po +++ b/addons/account/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:17+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:16+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/lv.po b/addons/account/i18n/lv.po index ef692c99216..c21eb9881c6 100644 --- a/addons/account/i18n/lv.po +++ b/addons/account/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:16+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:15+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/mk.po b/addons/account/i18n/mk.po index bca18a7bc42..dced1340ae9 100644 --- a/addons/account/i18n/mk.po +++ b/addons/account/i18n/mk.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-03-15 05:17+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:16+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/mn.po b/addons/account/i18n/mn.po index bee5a5a486a..e56a5e79dd2 100644 --- a/addons/account/i18n/mn.po +++ b/addons/account/i18n/mn.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-03-15 05:17+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:16+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/nb.po b/addons/account/i18n/nb.po index b22b5f37c38..d5087432935 100644 --- a/addons/account/i18n/nb.po +++ b/addons/account/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:17+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:16+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index 11007dae9cf..650219149df 100644 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:14+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:13+0000\n" "X-Generator: Launchpad (build 16532)\n" #, python-format @@ -1127,7 +1127,7 @@ msgstr "Bankafschrift" #. module: account #: field:account.analytic.line,move_id:0 msgid "Move Line" -msgstr "Verplaats regel" +msgstr "Mutatie" #. module: account #: help:account.move.line,tax_amount:0 @@ -6672,7 +6672,7 @@ msgstr "Aantal regels" #. module: account #: view:account.invoice:0 msgid "(update)" -msgstr "(update)" +msgstr "(bijwerken)" #. module: account #: field:account.aged.trial.balance,filter:0 diff --git a/addons/account/i18n/nl_BE.po b/addons/account/i18n/nl_BE.po index dc7db2cb95f..172dea460df 100644 --- a/addons/account/i18n/nl_BE.po +++ b/addons/account/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:21+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:20+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: nl\n" diff --git a/addons/account/i18n/oc.po b/addons/account/i18n/oc.po index dce00effff6..c1c2c640a44 100644 --- a/addons/account/i18n/oc.po +++ b/addons/account/i18n/oc.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-03-15 05:17+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:16+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/pl.po b/addons/account/i18n/pl.po index b64fa847b0f..e8b2594e7a7 100644 --- a/addons/account/i18n/pl.po +++ b/addons/account/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:17+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:16+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/pt.po b/addons/account/i18n/pt.po index ad36ca4b1f5..8d9bc4ee5a1 100644 --- a/addons/account/i18n/pt.po +++ b/addons/account/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:18+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:16+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po index f8ba785e915..ba985c5e0a8 100644 --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/i18n/pt_BR.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-03-15 05:20+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:19+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/ro.po b/addons/account/i18n/ro.po index 9200320614d..5f7bf0f8094 100644 --- a/addons/account/i18n/ro.po +++ b/addons/account/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:18+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:17+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/ru.po b/addons/account/i18n/ru.po index 98ed5add4c5..6ded487f1d9 100644 --- a/addons/account/i18n/ru.po +++ b/addons/account/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:18+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:17+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/si.po b/addons/account/i18n/si.po index 45ed4bf89d0..a8567063b0f 100644 --- a/addons/account/i18n/si.po +++ b/addons/account/i18n/si.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:18+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:17+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/sk.po b/addons/account/i18n/sk.po index fd2f863e68c..f38bcb9d203 100644 --- a/addons/account/i18n/sk.po +++ b/addons/account/i18n/sk.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-03-15 05:18+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:17+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/sl.po b/addons/account/i18n/sl.po index 930e046dbd7..46cb9eb2322 100644 --- a/addons/account/i18n/sl.po +++ b/addons/account/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:18+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:17+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/sq.po b/addons/account/i18n/sq.po index af97d913021..ff7b6abfdd4 100644 --- a/addons/account/i18n/sq.po +++ b/addons/account/i18n/sq.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-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/sr.po b/addons/account/i18n/sr.po index b502b281aec..02ef474653b 100644 --- a/addons/account/i18n/sr.po +++ b/addons/account/i18n/sr.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-03-15 05:18+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:17+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/sr@latin.po b/addons/account/i18n/sr@latin.po index 2a0be574a7d..89db1c96863 100644 --- a/addons/account/i18n/sr@latin.po +++ b/addons/account/i18n/sr@latin.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po index 0252eb7cf63..4b704acbfaa 100644 --- a/addons/account/i18n/sv.po +++ b/addons/account/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:19+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:18+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/ta.po b/addons/account/i18n/ta.po index 3622b520a6f..622241f0b51 100644 --- a/addons/account/i18n/ta.po +++ b/addons/account/i18n/ta.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-03-15 05:19+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:18+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/te.po b/addons/account/i18n/te.po index ec15c951802..fbaccae7167 100644 --- a/addons/account/i18n/te.po +++ b/addons/account/i18n/te.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-03-15 05:19+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:18+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/th.po b/addons/account/i18n/th.po index afa8663d24f..a642dbffe7c 100644 --- a/addons/account/i18n/th.po +++ b/addons/account/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-03-15 05:19+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:18+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/tlh.po b/addons/account/i18n/tlh.po index 38dae7a979f..df5889ae438 100644 --- a/addons/account/i18n/tlh.po +++ b/addons/account/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:19+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:18+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po index 783d579a165..80f353953d0 100644 --- a/addons/account/i18n/tr.po +++ b/addons/account/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:19+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:18+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/ug.po b/addons/account/i18n/ug.po index a15efe7b576..cf63053d43c 100644 --- a/addons/account/i18n/ug.po +++ b/addons/account/i18n/ug.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-03-15 05:19+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:18+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/uk.po b/addons/account/i18n/uk.po index 9ee25308b47..96cfa5ccfc2 100644 --- a/addons/account/i18n/uk.po +++ b/addons/account/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:20+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:18+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/ur.po b/addons/account/i18n/ur.po index 128555e7ea8..aa771834696 100644 --- a/addons/account/i18n/ur.po +++ b/addons/account/i18n/ur.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:20+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:19+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/vi.po b/addons/account/i18n/vi.po index e5f332d7190..4bab5df9a60 100644 --- a/addons/account/i18n/vi.po +++ b/addons/account/i18n/vi.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-03-15 05:20+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:19+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/zh_CN.po b/addons/account/i18n/zh_CN.po index 366a70b1a14..ff84dd866e8 100644 --- a/addons/account/i18n/zh_CN.po +++ b/addons/account/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:21+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:20+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/zh_HK.po b/addons/account/i18n/zh_HK.po index 4563ad2548b..88a00f1eeb7 100644 --- a/addons/account/i18n/zh_HK.po +++ b/addons/account/i18n/zh_HK.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-03-15 05:20+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:19+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account/i18n/zh_TW.po b/addons/account/i18n/zh_TW.po index 2433e3d06d5..2f34ed5c7d2 100644 --- a/addons/account/i18n/zh_TW.po +++ b/addons/account/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:21+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:20+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account diff --git a/addons/account_accountant/i18n/ar.po b/addons/account_accountant/i18n/ar.po index 735a2c79afa..2ca2cfbd5df 100644 --- a/addons/account_accountant/i18n/ar.po +++ b/addons/account_accountant/i18n/ar.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/az.po b/addons/account_accountant/i18n/az.po index 54e127f562a..315c2ee469c 100644 --- a/addons/account_accountant/i18n/az.po +++ b/addons/account_accountant/i18n/az.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/bg.po b/addons/account_accountant/i18n/bg.po index 780adac613e..57ab5b14f93 100644 --- a/addons/account_accountant/i18n/bg.po +++ b/addons/account_accountant/i18n/bg.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/bn.po b/addons/account_accountant/i18n/bn.po index cdc763635a0..65191d8e34d 100644 --- a/addons/account_accountant/i18n/bn.po +++ b/addons/account_accountant/i18n/bn.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/bs.po b/addons/account_accountant/i18n/bs.po index 8fb45139e6b..b45c0fd5ce9 100644 --- a/addons/account_accountant/i18n/bs.po +++ b/addons/account_accountant/i18n/bs.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/ca.po b/addons/account_accountant/i18n/ca.po index 0340e980fbd..132bfc22980 100644 --- a/addons/account_accountant/i18n/ca.po +++ b/addons/account_accountant/i18n/ca.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/cs.po b/addons/account_accountant/i18n/cs.po index 016ae0f7efd..4172b418a9f 100644 --- a/addons/account_accountant/i18n/cs.po +++ b/addons/account_accountant/i18n/cs.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/da.po b/addons/account_accountant/i18n/da.po index f93a3e68626..0b2d606b335 100644 --- a/addons/account_accountant/i18n/da.po +++ b/addons/account_accountant/i18n/da.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/de.po b/addons/account_accountant/i18n/de.po index 3c4d60154ef..9ccaaaf580b 100644 --- a/addons/account_accountant/i18n/de.po +++ b/addons/account_accountant/i18n/de.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/el.po b/addons/account_accountant/i18n/el.po index 6e5193c0c9c..0f6f11e9206 100644 --- a/addons/account_accountant/i18n/el.po +++ b/addons/account_accountant/i18n/el.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/en_GB.po b/addons/account_accountant/i18n/en_GB.po index 1435d40ef2f..3c1b7ee32be 100644 --- a/addons/account_accountant/i18n/en_GB.po +++ b/addons/account_accountant/i18n/en_GB.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/es.po b/addons/account_accountant/i18n/es.po index 66bbeaf2d16..464caf962a9 100644 --- a/addons/account_accountant/i18n/es.po +++ b/addons/account_accountant/i18n/es.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/es_CO.po b/addons/account_accountant/i18n/es_CO.po index 3e97846888a..57c8f045a12 100644 --- a/addons/account_accountant/i18n/es_CO.po +++ b/addons/account_accountant/i18n/es_CO.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/es_CR.po b/addons/account_accountant/i18n/es_CR.po index 336e13b2e23..f12ff15e063 100644 --- a/addons/account_accountant/i18n/es_CR.po +++ b/addons/account_accountant/i18n/es_CR.po @@ -15,7 +15,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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/account_accountant/i18n/es_DO.po b/addons/account_accountant/i18n/es_DO.po index 9d117624015..1c69938d12f 100644 --- a/addons/account_accountant/i18n/es_DO.po +++ b/addons/account_accountant/i18n/es_DO.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/es_EC.po b/addons/account_accountant/i18n/es_EC.po index 76805b2a7a1..07d81de8a28 100644 --- a/addons/account_accountant/i18n/es_EC.po +++ b/addons/account_accountant/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/es_MX.po b/addons/account_accountant/i18n/es_MX.po index b860a8004bd..253aa4d53b7 100644 --- a/addons/account_accountant/i18n/es_MX.po +++ b/addons/account_accountant/i18n/es_MX.po @@ -15,7 +15,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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/es_PY.po b/addons/account_accountant/i18n/es_PY.po index e322929e94e..41fd507d986 100644 --- a/addons/account_accountant/i18n/es_PY.po +++ b/addons/account_accountant/i18n/es_PY.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/et.po b/addons/account_accountant/i18n/et.po index eb27c19b3af..9145b5dbc63 100644 --- a/addons/account_accountant/i18n/et.po +++ b/addons/account_accountant/i18n/et.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/fa.po b/addons/account_accountant/i18n/fa.po index 86e751c7003..5f1c5af1f84 100644 --- a/addons/account_accountant/i18n/fa.po +++ b/addons/account_accountant/i18n/fa.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/fi.po b/addons/account_accountant/i18n/fi.po index 4c8456234f8..8a8d487a12c 100644 --- a/addons/account_accountant/i18n/fi.po +++ b/addons/account_accountant/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/fr.po b/addons/account_accountant/i18n/fr.po index c756fd8c678..0642a54eee8 100644 --- a/addons/account_accountant/i18n/fr.po +++ b/addons/account_accountant/i18n/fr.po @@ -15,7 +15,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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/gl.po b/addons/account_accountant/i18n/gl.po index a05af0a4b03..d2d841e8302 100644 --- a/addons/account_accountant/i18n/gl.po +++ b/addons/account_accountant/i18n/gl.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/he.po b/addons/account_accountant/i18n/he.po index e94f4f7d3c6..9d2d3854369 100644 --- a/addons/account_accountant/i18n/he.po +++ b/addons/account_accountant/i18n/he.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/hi.po b/addons/account_accountant/i18n/hi.po index a2bdf816e65..8b8a68a57ec 100644 --- a/addons/account_accountant/i18n/hi.po +++ b/addons/account_accountant/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/hr.po b/addons/account_accountant/i18n/hr.po index 071f722fd97..a05862022e2 100644 --- a/addons/account_accountant/i18n/hr.po +++ b/addons/account_accountant/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/hu.po b/addons/account_accountant/i18n/hu.po index 28243f68810..9176d6342a0 100644 --- a/addons/account_accountant/i18n/hu.po +++ b/addons/account_accountant/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/id.po b/addons/account_accountant/i18n/id.po index 12d0ec41703..b3d0656b8a5 100644 --- a/addons/account_accountant/i18n/id.po +++ b/addons/account_accountant/i18n/id.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/it.po b/addons/account_accountant/i18n/it.po index a8ad8b9d6bb..122a581647d 100644 --- a/addons/account_accountant/i18n/it.po +++ b/addons/account_accountant/i18n/it.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/ja.po b/addons/account_accountant/i18n/ja.po index 62f7bbebf94..9e2208e06cd 100644 --- a/addons/account_accountant/i18n/ja.po +++ b/addons/account_accountant/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/ko.po b/addons/account_accountant/i18n/ko.po index eeb38295dfb..6554e9e79fb 100644 --- a/addons/account_accountant/i18n/ko.po +++ b/addons/account_accountant/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/lo.po b/addons/account_accountant/i18n/lo.po index 9f718476280..a5325f185f5 100644 --- a/addons/account_accountant/i18n/lo.po +++ b/addons/account_accountant/i18n/lo.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/lt.po b/addons/account_accountant/i18n/lt.po index 782d748fb6c..ecd2fbd8655 100644 --- a/addons/account_accountant/i18n/lt.po +++ b/addons/account_accountant/i18n/lt.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/lv.po b/addons/account_accountant/i18n/lv.po index e6c3ee69ca6..347ea5013a8 100644 --- a/addons/account_accountant/i18n/lv.po +++ b/addons/account_accountant/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/mk.po b/addons/account_accountant/i18n/mk.po index 48f1f461480..03dbf6bbe55 100644 --- a/addons/account_accountant/i18n/mk.po +++ b/addons/account_accountant/i18n/mk.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/mn.po b/addons/account_accountant/i18n/mn.po index caf5e1c0350..d72a2dc5198 100644 --- a/addons/account_accountant/i18n/mn.po +++ b/addons/account_accountant/i18n/mn.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/nb.po b/addons/account_accountant/i18n/nb.po index af0c36a7b83..62f729882dd 100644 --- a/addons/account_accountant/i18n/nb.po +++ b/addons/account_accountant/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/nl.po b/addons/account_accountant/i18n/nl.po index d81048d594c..b9f0812c7cf 100644 --- a/addons/account_accountant/i18n/nl.po +++ b/addons/account_accountant/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/nl_BE.po b/addons/account_accountant/i18n/nl_BE.po index 1d93a1c8156..668f12a5152 100644 --- a/addons/account_accountant/i18n/nl_BE.po +++ b/addons/account_accountant/i18n/nl_BE.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/oc.po b/addons/account_accountant/i18n/oc.po index 32ed4a605bf..c06a7f7e64c 100644 --- a/addons/account_accountant/i18n/oc.po +++ b/addons/account_accountant/i18n/oc.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/pl.po b/addons/account_accountant/i18n/pl.po index 4ba7771e1d5..4e900fdeb1b 100644 --- a/addons/account_accountant/i18n/pl.po +++ b/addons/account_accountant/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/pt.po b/addons/account_accountant/i18n/pt.po index 23f001d15b6..3aca02629fd 100644 --- a/addons/account_accountant/i18n/pt.po +++ b/addons/account_accountant/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/pt_BR.po b/addons/account_accountant/i18n/pt_BR.po index df4ebd68e97..8b748ab1969 100644 --- a/addons/account_accountant/i18n/pt_BR.po +++ b/addons/account_accountant/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/ro.po b/addons/account_accountant/i18n/ro.po index 38b292a8481..25b972f4366 100644 --- a/addons/account_accountant/i18n/ro.po +++ b/addons/account_accountant/i18n/ro.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/ru.po b/addons/account_accountant/i18n/ru.po index 1392f95a663..c144136b8dc 100644 --- a/addons/account_accountant/i18n/ru.po +++ b/addons/account_accountant/i18n/ru.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/sk.po b/addons/account_accountant/i18n/sk.po index ab73ab5ff86..ea10b90ce3c 100644 --- a/addons/account_accountant/i18n/sk.po +++ b/addons/account_accountant/i18n/sk.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/sl.po b/addons/account_accountant/i18n/sl.po index 7ee31ff11e1..59bc032e763 100644 --- a/addons/account_accountant/i18n/sl.po +++ b/addons/account_accountant/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/sq.po b/addons/account_accountant/i18n/sq.po index 1585c1cb912..ced7b023367 100644 --- a/addons/account_accountant/i18n/sq.po +++ b/addons/account_accountant/i18n/sq.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/sr.po b/addons/account_accountant/i18n/sr.po index e194fe9d9b8..28209016799 100644 --- a/addons/account_accountant/i18n/sr.po +++ b/addons/account_accountant/i18n/sr.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/sr@latin.po b/addons/account_accountant/i18n/sr@latin.po index ea72c1743d6..635c1917d39 100644 --- a/addons/account_accountant/i18n/sr@latin.po +++ b/addons/account_accountant/i18n/sr@latin.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/sv.po b/addons/account_accountant/i18n/sv.po index 55e6e7263d0..6fadf354f61 100644 --- a/addons/account_accountant/i18n/sv.po +++ b/addons/account_accountant/i18n/sv.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/ta.po b/addons/account_accountant/i18n/ta.po index a6fb75b32ba..cd4f4b00311 100644 --- a/addons/account_accountant/i18n/ta.po +++ b/addons/account_accountant/i18n/ta.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/th.po b/addons/account_accountant/i18n/th.po index 28b21f770bd..93b99bbd49c 100644 --- a/addons/account_accountant/i18n/th.po +++ b/addons/account_accountant/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/tr.po b/addons/account_accountant/i18n/tr.po index ce26de00f0e..02e9331e00a 100644 --- a/addons/account_accountant/i18n/tr.po +++ b/addons/account_accountant/i18n/tr.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/uk.po b/addons/account_accountant/i18n/uk.po index 5849265053b..3b3fe041df2 100644 --- a/addons/account_accountant/i18n/uk.po +++ b/addons/account_accountant/i18n/uk.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/vi.po b/addons/account_accountant/i18n/vi.po index 672d78ab6eb..a34c7e21edc 100644 --- a/addons/account_accountant/i18n/vi.po +++ b/addons/account_accountant/i18n/vi.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/zh_CN.po b/addons/account_accountant/i18n/zh_CN.po index 594958a6be9..ecc12d62ad8 100644 --- a/addons/account_accountant/i18n/zh_CN.po +++ b/addons/account_accountant/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/zh_TW.po b/addons/account_accountant/i18n/zh_TW.po index 4ec74132353..57b62525197 100644 --- a/addons/account_accountant/i18n/zh_TW.po +++ b/addons/account_accountant/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_accountant diff --git a/addons/account_analytic_analysis/i18n/ar.po b/addons/account_analytic_analysis/i18n/ar.po index c58c36a2a7c..a1a978a6e94 100644 --- a/addons/account_analytic_analysis/i18n/ar.po +++ b/addons/account_analytic_analysis/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/bg.po b/addons/account_analytic_analysis/i18n/bg.po index 401a4304f90..73ffbf7e1ac 100644 --- a/addons/account_analytic_analysis/i18n/bg.po +++ b/addons/account_analytic_analysis/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/bs.po b/addons/account_analytic_analysis/i18n/bs.po index fffdecb9d08..861136a74ab 100644 --- a/addons/account_analytic_analysis/i18n/bs.po +++ b/addons/account_analytic_analysis/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/ca.po b/addons/account_analytic_analysis/i18n/ca.po index 39f831fca46..c476f2dd32a 100644 --- a/addons/account_analytic_analysis/i18n/ca.po +++ b/addons/account_analytic_analysis/i18n/ca.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/cs.po b/addons/account_analytic_analysis/i18n/cs.po index 643038e68d8..2e2e6caa70d 100644 --- a/addons/account_analytic_analysis/i18n/cs.po +++ b/addons/account_analytic_analysis/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/da.po b/addons/account_analytic_analysis/i18n/da.po index 5a49e2a9bea..d9a367282ff 100644 --- a/addons/account_analytic_analysis/i18n/da.po +++ b/addons/account_analytic_analysis/i18n/da.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/de.po b/addons/account_analytic_analysis/i18n/de.po index 929943560c5..8cb15939537 100644 --- a/addons/account_analytic_analysis/i18n/de.po +++ b/addons/account_analytic_analysis/i18n/de.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/el.po b/addons/account_analytic_analysis/i18n/el.po index 4c087e92820..a80f0069149 100644 --- a/addons/account_analytic_analysis/i18n/el.po +++ b/addons/account_analytic_analysis/i18n/el.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/en_GB.po b/addons/account_analytic_analysis/i18n/en_GB.po index 029b364a8e0..51acf03df75 100644 --- a/addons/account_analytic_analysis/i18n/en_GB.po +++ b/addons/account_analytic_analysis/i18n/en_GB.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/es.po b/addons/account_analytic_analysis/i18n/es.po index 2737290f65a..6edc665e86f 100644 --- a/addons/account_analytic_analysis/i18n/es.po +++ b/addons/account_analytic_analysis/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/es_AR.po b/addons/account_analytic_analysis/i18n/es_AR.po index 28e1eb363f6..bbc944a474e 100644 --- a/addons/account_analytic_analysis/i18n/es_AR.po +++ b/addons/account_analytic_analysis/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/es_CR.po b/addons/account_analytic_analysis/i18n/es_CR.po index 8af522b4393..4dddf07a516 100644 --- a/addons/account_analytic_analysis/i18n/es_CR.po +++ b/addons/account_analytic_analysis/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/account_analytic_analysis/i18n/es_EC.po b/addons/account_analytic_analysis/i18n/es_EC.po index 63536e47707..8d21363248c 100644 --- a/addons/account_analytic_analysis/i18n/es_EC.po +++ b/addons/account_analytic_analysis/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/es_MX.po b/addons/account_analytic_analysis/i18n/es_MX.po index ae8693ea76b..04dd5bd9ff0 100644 --- a/addons/account_analytic_analysis/i18n/es_MX.po +++ b/addons/account_analytic_analysis/i18n/es_MX.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/es_PY.po b/addons/account_analytic_analysis/i18n/es_PY.po index dbe5335516f..0fc7d959c39 100644 --- a/addons/account_analytic_analysis/i18n/es_PY.po +++ b/addons/account_analytic_analysis/i18n/es_PY.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/et.po b/addons/account_analytic_analysis/i18n/et.po index c1e2623918b..936e5ce1244 100644 --- a/addons/account_analytic_analysis/i18n/et.po +++ b/addons/account_analytic_analysis/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/fa.po b/addons/account_analytic_analysis/i18n/fa.po index 8414aa5d389..0a792d53ab2 100644 --- a/addons/account_analytic_analysis/i18n/fa.po +++ b/addons/account_analytic_analysis/i18n/fa.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/fi.po b/addons/account_analytic_analysis/i18n/fi.po index a9f0c9eb0bc..de2f6705571 100644 --- a/addons/account_analytic_analysis/i18n/fi.po +++ b/addons/account_analytic_analysis/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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/fr.po b/addons/account_analytic_analysis/i18n/fr.po index 903507ac44d..ac625e8cb31 100644 --- a/addons/account_analytic_analysis/i18n/fr.po +++ b/addons/account_analytic_analysis/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/gl.po b/addons/account_analytic_analysis/i18n/gl.po index 10cb508c668..46af589e2be 100644 --- a/addons/account_analytic_analysis/i18n/gl.po +++ b/addons/account_analytic_analysis/i18n/gl.po @@ -15,7 +15,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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/gu.po b/addons/account_analytic_analysis/i18n/gu.po index 35eaeda57fa..018583c830d 100644 --- a/addons/account_analytic_analysis/i18n/gu.po +++ b/addons/account_analytic_analysis/i18n/gu.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/hr.po b/addons/account_analytic_analysis/i18n/hr.po index 041e716e37b..262b6cbb688 100644 --- a/addons/account_analytic_analysis/i18n/hr.po +++ b/addons/account_analytic_analysis/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/hu.po b/addons/account_analytic_analysis/i18n/hu.po index 22f24bc31e6..efa5d907cc9 100644 --- a/addons/account_analytic_analysis/i18n/hu.po +++ b/addons/account_analytic_analysis/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/id.po b/addons/account_analytic_analysis/i18n/id.po index 8194e0648e4..0ac1114040d 100644 --- a/addons/account_analytic_analysis/i18n/id.po +++ b/addons/account_analytic_analysis/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/it.po b/addons/account_analytic_analysis/i18n/it.po index d3191818380..0bda88b3898 100644 --- a/addons/account_analytic_analysis/i18n/it.po +++ b/addons/account_analytic_analysis/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/ja.po b/addons/account_analytic_analysis/i18n/ja.po index 48e1a5cb99f..842adf79ac5 100644 --- a/addons/account_analytic_analysis/i18n/ja.po +++ b/addons/account_analytic_analysis/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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/ko.po b/addons/account_analytic_analysis/i18n/ko.po index 37efbc76067..c9635cb1db6 100644 --- a/addons/account_analytic_analysis/i18n/ko.po +++ b/addons/account_analytic_analysis/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/lt.po b/addons/account_analytic_analysis/i18n/lt.po index 0287adde0f3..aca06131694 100644 --- a/addons/account_analytic_analysis/i18n/lt.po +++ b/addons/account_analytic_analysis/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/lv.po b/addons/account_analytic_analysis/i18n/lv.po index b27a839e190..3a4f78bcf41 100644 --- a/addons/account_analytic_analysis/i18n/lv.po +++ b/addons/account_analytic_analysis/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/mk.po b/addons/account_analytic_analysis/i18n/mk.po index de9923127d8..dd2c74d27a6 100644 --- a/addons/account_analytic_analysis/i18n/mk.po +++ b/addons/account_analytic_analysis/i18n/mk.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/mn.po b/addons/account_analytic_analysis/i18n/mn.po index 9781c16d694..242bf558f84 100644 --- a/addons/account_analytic_analysis/i18n/mn.po +++ b/addons/account_analytic_analysis/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/nb.po b/addons/account_analytic_analysis/i18n/nb.po index f3028265d95..e7a28c78415 100644 --- a/addons/account_analytic_analysis/i18n/nb.po +++ b/addons/account_analytic_analysis/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/nl.po b/addons/account_analytic_analysis/i18n/nl.po index 57c6e77fb8c..52afaf67d1e 100644 --- a/addons/account_analytic_analysis/i18n/nl.po +++ b/addons/account_analytic_analysis/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/nl_BE.po b/addons/account_analytic_analysis/i18n/nl_BE.po index d5bbe7fd3cd..50122bc8f38 100644 --- a/addons/account_analytic_analysis/i18n/nl_BE.po +++ b/addons/account_analytic_analysis/i18n/nl_BE.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/oc.po b/addons/account_analytic_analysis/i18n/oc.po index 9425e740f96..b9eee924707 100644 --- a/addons/account_analytic_analysis/i18n/oc.po +++ b/addons/account_analytic_analysis/i18n/oc.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/pl.po b/addons/account_analytic_analysis/i18n/pl.po index bfd583e5696..850b8d37dd6 100644 --- a/addons/account_analytic_analysis/i18n/pl.po +++ b/addons/account_analytic_analysis/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/pt.po b/addons/account_analytic_analysis/i18n/pt.po index 3b528332b5f..50e150e1fd9 100644 --- a/addons/account_analytic_analysis/i18n/pt.po +++ b/addons/account_analytic_analysis/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/pt_BR.po b/addons/account_analytic_analysis/i18n/pt_BR.po index 7e1ecf6da45..f565520def5 100644 --- a/addons/account_analytic_analysis/i18n/pt_BR.po +++ b/addons/account_analytic_analysis/i18n/pt_BR.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis @@ -232,8 +232,8 @@ msgid "" "Number of time you spent on the analytic account (from timesheet). It " "computes quantities on all journal of type 'general'." msgstr "" -"Número de horas que você gastou na conta analítica (da planilha). Isso " -"inclui quantidades de todos os jornais do tipo 'geral'." +"Número de horas que você gastou na conta analítica (da planilha). Isto " +"calcula as quantidades de todos os diários do tipo 'geral'." #. 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 7f190fcd9fb..2b8dafdef78 100644 --- a/addons/account_analytic_analysis/i18n/ro.po +++ b/addons/account_analytic_analysis/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/ru.po b/addons/account_analytic_analysis/i18n/ru.po index 0c4dd560e8d..3944c48afb6 100644 --- a/addons/account_analytic_analysis/i18n/ru.po +++ b/addons/account_analytic_analysis/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/sl.po b/addons/account_analytic_analysis/i18n/sl.po index 5f8770309dc..27cb5c638ba 100644 --- a/addons/account_analytic_analysis/i18n/sl.po +++ b/addons/account_analytic_analysis/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/sq.po b/addons/account_analytic_analysis/i18n/sq.po index 6eac79f2ef2..05a78fe56a0 100644 --- a/addons/account_analytic_analysis/i18n/sq.po +++ b/addons/account_analytic_analysis/i18n/sq.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/sr.po b/addons/account_analytic_analysis/i18n/sr.po index 4f3e9c27535..56050beba06 100644 --- a/addons/account_analytic_analysis/i18n/sr.po +++ b/addons/account_analytic_analysis/i18n/sr.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/sr@latin.po b/addons/account_analytic_analysis/i18n/sr@latin.po index 857291bcec0..4d79b0e1b11 100644 --- a/addons/account_analytic_analysis/i18n/sr@latin.po +++ b/addons/account_analytic_analysis/i18n/sr@latin.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/sv.po b/addons/account_analytic_analysis/i18n/sv.po index 667fe32aaa1..aa157658ec2 100644 --- a/addons/account_analytic_analysis/i18n/sv.po +++ b/addons/account_analytic_analysis/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/tlh.po b/addons/account_analytic_analysis/i18n/tlh.po index 4a9b12eae58..2c22e7c57cf 100644 --- a/addons/account_analytic_analysis/i18n/tlh.po +++ b/addons/account_analytic_analysis/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/tr.po b/addons/account_analytic_analysis/i18n/tr.po index 851dbeb3ccc..0afb1bdeef1 100644 --- a/addons/account_analytic_analysis/i18n/tr.po +++ b/addons/account_analytic_analysis/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/uk.po b/addons/account_analytic_analysis/i18n/uk.po index 2886b9660e7..890025ffd93 100644 --- a/addons/account_analytic_analysis/i18n/uk.po +++ b/addons/account_analytic_analysis/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/vi.po b/addons/account_analytic_analysis/i18n/vi.po index 18113ffd000..5b6c608ac9f 100644 --- a/addons/account_analytic_analysis/i18n/vi.po +++ b/addons/account_analytic_analysis/i18n/vi.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/zh_CN.po b/addons/account_analytic_analysis/i18n/zh_CN.po index 77180aef23c..a0d53dfa783 100644 --- a/addons/account_analytic_analysis/i18n/zh_CN.po +++ b/addons/account_analytic_analysis/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/zh_TW.po b/addons/account_analytic_analysis/i18n/zh_TW.po index 9f0a442968f..d62f7d3b1c9 100644 --- a/addons/account_analytic_analysis/i18n/zh_TW.po +++ b/addons/account_analytic_analysis/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_default/i18n/ar.po b/addons/account_analytic_default/i18n/ar.po index 2cc174bee81..98d16cf2b3d 100644 --- a/addons/account_analytic_default/i18n/ar.po +++ b/addons/account_analytic_default/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/bg.po b/addons/account_analytic_default/i18n/bg.po index 29f3bce83c6..e30fe1094e4 100644 --- a/addons/account_analytic_default/i18n/bg.po +++ b/addons/account_analytic_default/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/bs.po b/addons/account_analytic_default/i18n/bs.po index 5b03fba05a1..52ff020c3cd 100644 --- a/addons/account_analytic_default/i18n/bs.po +++ b/addons/account_analytic_default/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/ca.po b/addons/account_analytic_default/i18n/ca.po index 102a3dedea9..3b537c54d23 100644 --- a/addons/account_analytic_default/i18n/ca.po +++ b/addons/account_analytic_default/i18n/ca.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/cs.po b/addons/account_analytic_default/i18n/cs.po index 67b891c7db6..5ecf8a0bbff 100644 --- a/addons/account_analytic_default/i18n/cs.po +++ b/addons/account_analytic_default/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/da.po b/addons/account_analytic_default/i18n/da.po index b20f83b9ba8..4167a2c16df 100644 --- a/addons/account_analytic_default/i18n/da.po +++ b/addons/account_analytic_default/i18n/da.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/de.po b/addons/account_analytic_default/i18n/de.po index 9291d553a28..d457dbb44db 100644 --- a/addons/account_analytic_default/i18n/de.po +++ b/addons/account_analytic_default/i18n/de.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/el.po b/addons/account_analytic_default/i18n/el.po index 4afbbd435ab..8b2b1e398a4 100644 --- a/addons/account_analytic_default/i18n/el.po +++ b/addons/account_analytic_default/i18n/el.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/en_GB.po b/addons/account_analytic_default/i18n/en_GB.po index b54fcbd0242..444471a2ad7 100644 --- a/addons/account_analytic_default/i18n/en_GB.po +++ b/addons/account_analytic_default/i18n/en_GB.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/es.po b/addons/account_analytic_default/i18n/es.po index 13ee18b6c48..8362fd07f05 100644 --- a/addons/account_analytic_default/i18n/es.po +++ b/addons/account_analytic_default/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/es_AR.po b/addons/account_analytic_default/i18n/es_AR.po index ec7a837d420..47798b1c815 100644 --- a/addons/account_analytic_default/i18n/es_AR.po +++ b/addons/account_analytic_default/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/es_CR.po b/addons/account_analytic_default/i18n/es_CR.po index 2a798a47bf5..1700aaaaeb9 100644 --- a/addons/account_analytic_default/i18n/es_CR.po +++ b/addons/account_analytic_default/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/account_analytic_default/i18n/es_EC.po b/addons/account_analytic_default/i18n/es_EC.po index fc8cf3337f3..20fc9aee338 100644 --- a/addons/account_analytic_default/i18n/es_EC.po +++ b/addons/account_analytic_default/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/es_MX.po b/addons/account_analytic_default/i18n/es_MX.po index 22627c4c0c5..c97dba75ce9 100644 --- a/addons/account_analytic_default/i18n/es_MX.po +++ b/addons/account_analytic_default/i18n/es_MX.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/es_PY.po b/addons/account_analytic_default/i18n/es_PY.po index 589fa28373e..ce19920d754 100644 --- a/addons/account_analytic_default/i18n/es_PY.po +++ b/addons/account_analytic_default/i18n/es_PY.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/et.po b/addons/account_analytic_default/i18n/et.po index bd0e99949b3..c23f457ce34 100644 --- a/addons/account_analytic_default/i18n/et.po +++ b/addons/account_analytic_default/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/fa.po b/addons/account_analytic_default/i18n/fa.po index 9edc107d568..574af4c2afe 100644 --- a/addons/account_analytic_default/i18n/fa.po +++ b/addons/account_analytic_default/i18n/fa.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/fi.po b/addons/account_analytic_default/i18n/fi.po index 600847e4817..7e5e22d8d9b 100644 --- a/addons/account_analytic_default/i18n/fi.po +++ b/addons/account_analytic_default/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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/fr.po b/addons/account_analytic_default/i18n/fr.po index 182ad61d978..d688825739b 100644 --- a/addons/account_analytic_default/i18n/fr.po +++ b/addons/account_analytic_default/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/gl.po b/addons/account_analytic_default/i18n/gl.po index e0a68031c45..d3789b17f50 100644 --- a/addons/account_analytic_default/i18n/gl.po +++ b/addons/account_analytic_default/i18n/gl.po @@ -15,7 +15,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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/gu.po b/addons/account_analytic_default/i18n/gu.po index 9065ee421b9..3ae51533745 100644 --- a/addons/account_analytic_default/i18n/gu.po +++ b/addons/account_analytic_default/i18n/gu.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/hr.po b/addons/account_analytic_default/i18n/hr.po index 5b748739908..699569a4318 100644 --- a/addons/account_analytic_default/i18n/hr.po +++ b/addons/account_analytic_default/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/hu.po b/addons/account_analytic_default/i18n/hu.po index 25dc66f6343..3696114dee2 100644 --- a/addons/account_analytic_default/i18n/hu.po +++ b/addons/account_analytic_default/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/id.po b/addons/account_analytic_default/i18n/id.po index 63015d9dc6d..68c7c41f589 100644 --- a/addons/account_analytic_default/i18n/id.po +++ b/addons/account_analytic_default/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/it.po b/addons/account_analytic_default/i18n/it.po index 4e2db472370..e81a42087b4 100644 --- a/addons/account_analytic_default/i18n/it.po +++ b/addons/account_analytic_default/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/ja.po b/addons/account_analytic_default/i18n/ja.po index c0729a93069..39291e5ee42 100644 --- a/addons/account_analytic_default/i18n/ja.po +++ b/addons/account_analytic_default/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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/ko.po b/addons/account_analytic_default/i18n/ko.po index 0b9f23883f9..890660df62c 100644 --- a/addons/account_analytic_default/i18n/ko.po +++ b/addons/account_analytic_default/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/lt.po b/addons/account_analytic_default/i18n/lt.po index 3493201dc7d..7a650b0eaea 100644 --- a/addons/account_analytic_default/i18n/lt.po +++ b/addons/account_analytic_default/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/lv.po b/addons/account_analytic_default/i18n/lv.po index bc4e34df302..75e7b96f8da 100644 --- a/addons/account_analytic_default/i18n/lv.po +++ b/addons/account_analytic_default/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/mk.po b/addons/account_analytic_default/i18n/mk.po index 9dbb256f35f..509460f8fb8 100644 --- a/addons/account_analytic_default/i18n/mk.po +++ b/addons/account_analytic_default/i18n/mk.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/mn.po b/addons/account_analytic_default/i18n/mn.po index 770e32d8973..53ce058fda2 100644 --- a/addons/account_analytic_default/i18n/mn.po +++ b/addons/account_analytic_default/i18n/mn.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/nb.po b/addons/account_analytic_default/i18n/nb.po index cf6be830740..ecbf50ca0b8 100644 --- a/addons/account_analytic_default/i18n/nb.po +++ b/addons/account_analytic_default/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/nl.po b/addons/account_analytic_default/i18n/nl.po index 0e5f677daa4..1a6af27587c 100644 --- a/addons/account_analytic_default/i18n/nl.po +++ b/addons/account_analytic_default/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/nl_BE.po b/addons/account_analytic_default/i18n/nl_BE.po index 8f50f40eeb8..4d7b5295f16 100644 --- a/addons/account_analytic_default/i18n/nl_BE.po +++ b/addons/account_analytic_default/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/oc.po b/addons/account_analytic_default/i18n/oc.po index 1b785149631..911243b40a7 100644 --- a/addons/account_analytic_default/i18n/oc.po +++ b/addons/account_analytic_default/i18n/oc.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/pl.po b/addons/account_analytic_default/i18n/pl.po index 62e2649adfe..891671c1d45 100644 --- a/addons/account_analytic_default/i18n/pl.po +++ b/addons/account_analytic_default/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/pt.po b/addons/account_analytic_default/i18n/pt.po index 03a68522ac6..895982afb79 100644 --- a/addons/account_analytic_default/i18n/pt.po +++ b/addons/account_analytic_default/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/pt_BR.po b/addons/account_analytic_default/i18n/pt_BR.po index f1e0f5a257a..96a4484a928 100644 --- a/addons/account_analytic_default/i18n/pt_BR.po +++ b/addons/account_analytic_default/i18n/pt_BR.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default @@ -27,7 +27,7 @@ msgstr "Regras Analíticas" #. module: account_analytic_default #: view:account.analytic.default:0 msgid "Group By..." -msgstr "Agrupar Por..." +msgstr "Agrupar por..." #. module: account_analytic_default #: help:account.analytic.default,date_stop:0 diff --git a/addons/account_analytic_default/i18n/ro.po b/addons/account_analytic_default/i18n/ro.po index 50b2d2de6b5..20cfa9b2047 100644 --- a/addons/account_analytic_default/i18n/ro.po +++ b/addons/account_analytic_default/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/ru.po b/addons/account_analytic_default/i18n/ru.po index e0fcd9ac11a..5199a8cfe2a 100644 --- a/addons/account_analytic_default/i18n/ru.po +++ b/addons/account_analytic_default/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/sk.po b/addons/account_analytic_default/i18n/sk.po index fb8a315d84d..639d99315a3 100644 --- a/addons/account_analytic_default/i18n/sk.po +++ b/addons/account_analytic_default/i18n/sk.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/sl.po b/addons/account_analytic_default/i18n/sl.po index c93da08ecb3..1a65fe37840 100644 --- a/addons/account_analytic_default/i18n/sl.po +++ b/addons/account_analytic_default/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/sq.po b/addons/account_analytic_default/i18n/sq.po index f3633b060f6..3c1bdd4481b 100644 --- a/addons/account_analytic_default/i18n/sq.po +++ b/addons/account_analytic_default/i18n/sq.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/sr.po b/addons/account_analytic_default/i18n/sr.po index 276006ab75d..fc8c47f7794 100644 --- a/addons/account_analytic_default/i18n/sr.po +++ b/addons/account_analytic_default/i18n/sr.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/sr@latin.po b/addons/account_analytic_default/i18n/sr@latin.po index 0252c04d4ce..bdd239b047b 100644 --- a/addons/account_analytic_default/i18n/sr@latin.po +++ b/addons/account_analytic_default/i18n/sr@latin.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/sv.po b/addons/account_analytic_default/i18n/sv.po index a66394a9f8f..9d7f0122cee 100644 --- a/addons/account_analytic_default/i18n/sv.po +++ b/addons/account_analytic_default/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/tlh.po b/addons/account_analytic_default/i18n/tlh.po index 6846a60911f..91ee0486605 100644 --- a/addons/account_analytic_default/i18n/tlh.po +++ b/addons/account_analytic_default/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/tr.po b/addons/account_analytic_default/i18n/tr.po index 7eb154070bd..909c72c2d17 100644 --- a/addons/account_analytic_default/i18n/tr.po +++ b/addons/account_analytic_default/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/uk.po b/addons/account_analytic_default/i18n/uk.po index 979d45bd3bc..cdb3191a5a9 100644 --- a/addons/account_analytic_default/i18n/uk.po +++ b/addons/account_analytic_default/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/vi.po b/addons/account_analytic_default/i18n/vi.po index dd6551d2f12..9a4f8a14d60 100644 --- a/addons/account_analytic_default/i18n/vi.po +++ b/addons/account_analytic_default/i18n/vi.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/zh_CN.po b/addons/account_analytic_default/i18n/zh_CN.po index b063d6ba830..6ec397e5a57 100644 --- a/addons/account_analytic_default/i18n/zh_CN.po +++ b/addons/account_analytic_default/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/zh_TW.po b/addons/account_analytic_default/i18n/zh_TW.po index bd8216c709d..44d896a812e 100644 --- a/addons/account_analytic_default/i18n/zh_TW.po +++ b/addons/account_analytic_default/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_default diff --git a/addons/account_analytic_plans/i18n/ar.po b/addons/account_analytic_plans/i18n/ar.po index 3389b00526d..840e371559a 100644 --- a/addons/account_analytic_plans/i18n/ar.po +++ b/addons/account_analytic_plans/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/bg.po b/addons/account_analytic_plans/i18n/bg.po index 62ebffd2f52..31cd759a3b3 100644 --- a/addons/account_analytic_plans/i18n/bg.po +++ b/addons/account_analytic_plans/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/bs.po b/addons/account_analytic_plans/i18n/bs.po index 397f893d912..dbebd224b64 100644 --- a/addons/account_analytic_plans/i18n/bs.po +++ b/addons/account_analytic_plans/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/ca.po b/addons/account_analytic_plans/i18n/ca.po index 3eb06cb8f88..2ee45149e58 100644 --- a/addons/account_analytic_plans/i18n/ca.po +++ b/addons/account_analytic_plans/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/cs.po b/addons/account_analytic_plans/i18n/cs.po index cbd3176de75..cdcc05e3a03 100644 --- a/addons/account_analytic_plans/i18n/cs.po +++ b/addons/account_analytic_plans/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/da.po b/addons/account_analytic_plans/i18n/da.po index c180781e683..266fe65b24f 100644 --- a/addons/account_analytic_plans/i18n/da.po +++ b/addons/account_analytic_plans/i18n/da.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/de.po b/addons/account_analytic_plans/i18n/de.po index a9c78df850b..87e05a93fee 100644 --- a/addons/account_analytic_plans/i18n/de.po +++ b/addons/account_analytic_plans/i18n/de.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/el.po b/addons/account_analytic_plans/i18n/el.po index 638a5dad44f..a7215ac15cc 100644 --- a/addons/account_analytic_plans/i18n/el.po +++ b/addons/account_analytic_plans/i18n/el.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/en_GB.po b/addons/account_analytic_plans/i18n/en_GB.po index 99117eb719a..c8fc268b57d 100644 --- a/addons/account_analytic_plans/i18n/en_GB.po +++ b/addons/account_analytic_plans/i18n/en_GB.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/es.po b/addons/account_analytic_plans/i18n/es.po index c8b4f40905d..37eb444d6b5 100644 --- a/addons/account_analytic_plans/i18n/es.po +++ b/addons/account_analytic_plans/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/es_AR.po b/addons/account_analytic_plans/i18n/es_AR.po index 4f79c148c03..0e446ae7178 100644 --- a/addons/account_analytic_plans/i18n/es_AR.po +++ b/addons/account_analytic_plans/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/es_CR.po b/addons/account_analytic_plans/i18n/es_CR.po index cc07107b921..f362e8183a9 100644 --- a/addons/account_analytic_plans/i18n/es_CR.po +++ b/addons/account_analytic_plans/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/account_analytic_plans/i18n/es_EC.po b/addons/account_analytic_plans/i18n/es_EC.po index 106fb5e3292..58886bc334f 100644 --- a/addons/account_analytic_plans/i18n/es_EC.po +++ b/addons/account_analytic_plans/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/es_MX.po b/addons/account_analytic_plans/i18n/es_MX.po index 7a957c93ffa..98a5abde243 100644 --- a/addons/account_analytic_plans/i18n/es_MX.po +++ b/addons/account_analytic_plans/i18n/es_MX.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/es_PY.po b/addons/account_analytic_plans/i18n/es_PY.po index b7a1b7b758e..f679548bde4 100644 --- a/addons/account_analytic_plans/i18n/es_PY.po +++ b/addons/account_analytic_plans/i18n/es_PY.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/et.po b/addons/account_analytic_plans/i18n/et.po index ba8ec0f3468..d19597e8b8a 100644 --- a/addons/account_analytic_plans/i18n/et.po +++ b/addons/account_analytic_plans/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #~ msgid "Printing date:" diff --git a/addons/account_analytic_plans/i18n/fa.po b/addons/account_analytic_plans/i18n/fa.po index 4b723dd1e42..f84ebd2a132 100644 --- a/addons/account_analytic_plans/i18n/fa.po +++ b/addons/account_analytic_plans/i18n/fa.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/fi.po b/addons/account_analytic_plans/i18n/fi.po index 3a1f7ee3628..46364d7482c 100644 --- a/addons/account_analytic_plans/i18n/fi.po +++ b/addons/account_analytic_plans/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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/fr.po b/addons/account_analytic_plans/i18n/fr.po index 3bfd4900888..f30ca53d74c 100644 --- a/addons/account_analytic_plans/i18n/fr.po +++ b/addons/account_analytic_plans/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/gl.po b/addons/account_analytic_plans/i18n/gl.po index fed1d9fc45a..48a3de24706 100644 --- a/addons/account_analytic_plans/i18n/gl.po +++ b/addons/account_analytic_plans/i18n/gl.po @@ -15,7 +15,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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/gu.po b/addons/account_analytic_plans/i18n/gu.po index 9db01eee598..d205a604b1a 100644 --- a/addons/account_analytic_plans/i18n/gu.po +++ b/addons/account_analytic_plans/i18n/gu.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/hr.po b/addons/account_analytic_plans/i18n/hr.po index 770018a1765..a30a995b22e 100644 --- a/addons/account_analytic_plans/i18n/hr.po +++ b/addons/account_analytic_plans/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/hu.po b/addons/account_analytic_plans/i18n/hu.po index 68f7d372b4b..cf15e0e9554 100644 --- a/addons/account_analytic_plans/i18n/hu.po +++ b/addons/account_analytic_plans/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/id.po b/addons/account_analytic_plans/i18n/id.po index f9cd2f39864..b231c0e54ce 100644 --- a/addons/account_analytic_plans/i18n/id.po +++ b/addons/account_analytic_plans/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/it.po b/addons/account_analytic_plans/i18n/it.po index 67394807d8e..b6f42c3b5f9 100644 --- a/addons/account_analytic_plans/i18n/it.po +++ b/addons/account_analytic_plans/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/ja.po b/addons/account_analytic_plans/i18n/ja.po index a259d4b9ba0..b52f4d1f772 100644 --- a/addons/account_analytic_plans/i18n/ja.po +++ b/addons/account_analytic_plans/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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/ko.po b/addons/account_analytic_plans/i18n/ko.po index d683b78f9ed..85c0ad752b3 100644 --- a/addons/account_analytic_plans/i18n/ko.po +++ b/addons/account_analytic_plans/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/lt.po b/addons/account_analytic_plans/i18n/lt.po index d428cd2f9eb..39e2f5156f4 100644 --- a/addons/account_analytic_plans/i18n/lt.po +++ b/addons/account_analytic_plans/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/lv.po b/addons/account_analytic_plans/i18n/lv.po index e2c20a0848e..cb098921a28 100644 --- a/addons/account_analytic_plans/i18n/lv.po +++ b/addons/account_analytic_plans/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/mk.po b/addons/account_analytic_plans/i18n/mk.po index cd81b707a33..d8faf9c3fbd 100644 --- a/addons/account_analytic_plans/i18n/mk.po +++ b/addons/account_analytic_plans/i18n/mk.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/mn.po b/addons/account_analytic_plans/i18n/mn.po index 28c4df01cf0..d9eaa9e8fc4 100644 --- a/addons/account_analytic_plans/i18n/mn.po +++ b/addons/account_analytic_plans/i18n/mn.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/nb.po b/addons/account_analytic_plans/i18n/nb.po index e2ef4693f60..02609ad891f 100644 --- a/addons/account_analytic_plans/i18n/nb.po +++ b/addons/account_analytic_plans/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/nl.po b/addons/account_analytic_plans/i18n/nl.po index 417bec5b95e..a1461375455 100644 --- a/addons/account_analytic_plans/i18n/nl.po +++ b/addons/account_analytic_plans/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/nl_BE.po b/addons/account_analytic_plans/i18n/nl_BE.po index 6869cf145a6..eed58230298 100644 --- a/addons/account_analytic_plans/i18n/nl_BE.po +++ b/addons/account_analytic_plans/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/oc.po b/addons/account_analytic_plans/i18n/oc.po index 4f7941b5664..ef2afc6c3bd 100644 --- a/addons/account_analytic_plans/i18n/oc.po +++ b/addons/account_analytic_plans/i18n/oc.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/pl.po b/addons/account_analytic_plans/i18n/pl.po index e395fdb7240..ad2d53da281 100644 --- a/addons/account_analytic_plans/i18n/pl.po +++ b/addons/account_analytic_plans/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/pt.po b/addons/account_analytic_plans/i18n/pt.po index c1041313934..0c53bd845c4 100644 --- a/addons/account_analytic_plans/i18n/pt.po +++ b/addons/account_analytic_plans/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/pt_BR.po b/addons/account_analytic_plans/i18n/pt_BR.po index 584f5142520..bb55189f436 100644 --- a/addons/account_analytic_plans/i18n/pt_BR.po +++ b/addons/account_analytic_plans/i18n/pt_BR.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans @@ -38,7 +38,7 @@ msgstr "ID Conta5" #. module: account_analytic_plans #: field:account.crossovered.analytic,date2:0 msgid "End Date" -msgstr "Data de Término" +msgstr "Data Final" #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,rate:0 @@ -366,7 +366,7 @@ msgstr "analytic.plan.create.model.action" #. module: account_analytic_plans #: field:account.analytic.plan.line,sequence:0 msgid "Sequence" -msgstr "Sequência" +msgstr "Seqüência" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_invoice_line diff --git a/addons/account_analytic_plans/i18n/ro.po b/addons/account_analytic_plans/i18n/ro.po index 50a48d8d88b..c749673f5e1 100644 --- a/addons/account_analytic_plans/i18n/ro.po +++ b/addons/account_analytic_plans/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/ru.po b/addons/account_analytic_plans/i18n/ru.po index d76dd42478b..ba32246e8d6 100644 --- a/addons/account_analytic_plans/i18n/ru.po +++ b/addons/account_analytic_plans/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/sl.po b/addons/account_analytic_plans/i18n/sl.po index d8b3318cf74..5908fd1f75f 100644 --- a/addons/account_analytic_plans/i18n/sl.po +++ b/addons/account_analytic_plans/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/sq.po b/addons/account_analytic_plans/i18n/sq.po index 69e930185a6..320607b2223 100644 --- a/addons/account_analytic_plans/i18n/sq.po +++ b/addons/account_analytic_plans/i18n/sq.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/sr.po b/addons/account_analytic_plans/i18n/sr.po index 5e5b5554c9e..4ab819762fe 100644 --- a/addons/account_analytic_plans/i18n/sr.po +++ b/addons/account_analytic_plans/i18n/sr.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/sr@latin.po b/addons/account_analytic_plans/i18n/sr@latin.po index 0e2ec9cd6a8..9852ec6fe5d 100644 --- a/addons/account_analytic_plans/i18n/sr@latin.po +++ b/addons/account_analytic_plans/i18n/sr@latin.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/sv.po b/addons/account_analytic_plans/i18n/sv.po index 6f4153a21ab..d2111fb04b2 100644 --- a/addons/account_analytic_plans/i18n/sv.po +++ b/addons/account_analytic_plans/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/tlh.po b/addons/account_analytic_plans/i18n/tlh.po index 89dbe269192..552f3cb906b 100644 --- a/addons/account_analytic_plans/i18n/tlh.po +++ b/addons/account_analytic_plans/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/tr.po b/addons/account_analytic_plans/i18n/tr.po index b21a72e30f0..07cb0a820c3 100644 --- a/addons/account_analytic_plans/i18n/tr.po +++ b/addons/account_analytic_plans/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/uk.po b/addons/account_analytic_plans/i18n/uk.po index 20bd2dd1e03..71861003be0 100644 --- a/addons/account_analytic_plans/i18n/uk.po +++ b/addons/account_analytic_plans/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/vi.po b/addons/account_analytic_plans/i18n/vi.po index 255d53d758a..d26ff1de49d 100644 --- a/addons/account_analytic_plans/i18n/vi.po +++ b/addons/account_analytic_plans/i18n/vi.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/zh_CN.po b/addons/account_analytic_plans/i18n/zh_CN.po index c800505abd6..8d3a78536a2 100644 --- a/addons/account_analytic_plans/i18n/zh_CN.po +++ b/addons/account_analytic_plans/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/zh_TW.po b/addons/account_analytic_plans/i18n/zh_TW.po index 49d2bd10de4..6bcd1f5425f 100644 --- a/addons/account_analytic_plans/i18n/zh_TW.po +++ b/addons/account_analytic_plans/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_analytic_plans diff --git a/addons/account_anglo_saxon/i18n/ar.po b/addons/account_anglo_saxon/i18n/ar.po index 170889a5209..fcd9ab75fb3 100644 --- a/addons/account_anglo_saxon/i18n/ar.po +++ b/addons/account_anglo_saxon/i18n/ar.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/bg.po b/addons/account_anglo_saxon/i18n/bg.po index 1ca53d21581..d8bd57ad7b5 100644 --- a/addons/account_anglo_saxon/i18n/bg.po +++ b/addons/account_anglo_saxon/i18n/bg.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/ca.po b/addons/account_anglo_saxon/i18n/ca.po index 82c31d2feec..c3b7397b2a9 100644 --- a/addons/account_anglo_saxon/i18n/ca.po +++ b/addons/account_anglo_saxon/i18n/ca.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/cs.po b/addons/account_anglo_saxon/i18n/cs.po index 40f2ae4e00e..6a056afd7c0 100644 --- a/addons/account_anglo_saxon/i18n/cs.po +++ b/addons/account_anglo_saxon/i18n/cs.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/da.po b/addons/account_anglo_saxon/i18n/da.po index b94a4164559..847066ee076 100644 --- a/addons/account_anglo_saxon/i18n/da.po +++ b/addons/account_anglo_saxon/i18n/da.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/de.po b/addons/account_anglo_saxon/i18n/de.po index 3d25e7051aa..5111383f237 100644 --- a/addons/account_anglo_saxon/i18n/de.po +++ b/addons/account_anglo_saxon/i18n/de.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/el.po b/addons/account_anglo_saxon/i18n/el.po index 48a5a564ad6..81d2e4a1436 100644 --- a/addons/account_anglo_saxon/i18n/el.po +++ b/addons/account_anglo_saxon/i18n/el.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/en_GB.po b/addons/account_anglo_saxon/i18n/en_GB.po index 3e78c3f7e6d..9f9c8b2f1a1 100644 --- a/addons/account_anglo_saxon/i18n/en_GB.po +++ b/addons/account_anglo_saxon/i18n/en_GB.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/es.po b/addons/account_anglo_saxon/i18n/es.po index 8edc9df462e..28764724e98 100644 --- a/addons/account_anglo_saxon/i18n/es.po +++ b/addons/account_anglo_saxon/i18n/es.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/es_CR.po b/addons/account_anglo_saxon/i18n/es_CR.po index e580df3528f..b7e0d077cdd 100644 --- a/addons/account_anglo_saxon/i18n/es_CR.po +++ b/addons/account_anglo_saxon/i18n/es_CR.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/account_anglo_saxon/i18n/es_EC.po b/addons/account_anglo_saxon/i18n/es_EC.po index b50f77eeaa7..0a253c74e1d 100644 --- a/addons/account_anglo_saxon/i18n/es_EC.po +++ b/addons/account_anglo_saxon/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/es_MX.po b/addons/account_anglo_saxon/i18n/es_MX.po index 17e879d855b..8f9f2997400 100644 --- a/addons/account_anglo_saxon/i18n/es_MX.po +++ b/addons/account_anglo_saxon/i18n/es_MX.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/es_PY.po b/addons/account_anglo_saxon/i18n/es_PY.po index d8d0360df03..456ece2ed9d 100644 --- a/addons/account_anglo_saxon/i18n/es_PY.po +++ b/addons/account_anglo_saxon/i18n/es_PY.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/et.po b/addons/account_anglo_saxon/i18n/et.po index 613fd74f4c3..7f3ffea6a9a 100644 --- a/addons/account_anglo_saxon/i18n/et.po +++ b/addons/account_anglo_saxon/i18n/et.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/fa.po b/addons/account_anglo_saxon/i18n/fa.po index 50bb8980494..e14885c072b 100644 --- a/addons/account_anglo_saxon/i18n/fa.po +++ b/addons/account_anglo_saxon/i18n/fa.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/fi.po b/addons/account_anglo_saxon/i18n/fi.po index af68e752e8d..d8ce3dfeade 100644 --- a/addons/account_anglo_saxon/i18n/fi.po +++ b/addons/account_anglo_saxon/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/fr.po b/addons/account_anglo_saxon/i18n/fr.po index 61b8f7548ca..bf3817f1c8d 100644 --- a/addons/account_anglo_saxon/i18n/fr.po +++ b/addons/account_anglo_saxon/i18n/fr.po @@ -15,7 +15,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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/gl.po b/addons/account_anglo_saxon/i18n/gl.po index 9abaeab6308..89ff94f7cc0 100644 --- a/addons/account_anglo_saxon/i18n/gl.po +++ b/addons/account_anglo_saxon/i18n/gl.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/gu.po b/addons/account_anglo_saxon/i18n/gu.po index 04912149f60..be6c0e12b67 100644 --- a/addons/account_anglo_saxon/i18n/gu.po +++ b/addons/account_anglo_saxon/i18n/gu.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/hi.po b/addons/account_anglo_saxon/i18n/hi.po index a2fc47365c5..31ea35ee862 100644 --- a/addons/account_anglo_saxon/i18n/hi.po +++ b/addons/account_anglo_saxon/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/hr.po b/addons/account_anglo_saxon/i18n/hr.po index 2e46735c3c1..3f9018d108e 100644 --- a/addons/account_anglo_saxon/i18n/hr.po +++ b/addons/account_anglo_saxon/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/hu.po b/addons/account_anglo_saxon/i18n/hu.po index 16166d1fb13..02ed2e3b072 100644 --- a/addons/account_anglo_saxon/i18n/hu.po +++ b/addons/account_anglo_saxon/i18n/hu.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/id.po b/addons/account_anglo_saxon/i18n/id.po index f32f015a942..5b78fb6db3a 100644 --- a/addons/account_anglo_saxon/i18n/id.po +++ b/addons/account_anglo_saxon/i18n/id.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/it.po b/addons/account_anglo_saxon/i18n/it.po index 6ca0982716b..711fd207a05 100644 --- a/addons/account_anglo_saxon/i18n/it.po +++ b/addons/account_anglo_saxon/i18n/it.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/ja.po b/addons/account_anglo_saxon/i18n/ja.po index c28441dce00..0e6043ffbe8 100644 --- a/addons/account_anglo_saxon/i18n/ja.po +++ b/addons/account_anglo_saxon/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/lv.po b/addons/account_anglo_saxon/i18n/lv.po index 5bacd710c91..8ed6f141ea5 100644 --- a/addons/account_anglo_saxon/i18n/lv.po +++ b/addons/account_anglo_saxon/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/mk.po b/addons/account_anglo_saxon/i18n/mk.po index 3bb340cbfa6..a4f6196d630 100644 --- a/addons/account_anglo_saxon/i18n/mk.po +++ b/addons/account_anglo_saxon/i18n/mk.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/mn.po b/addons/account_anglo_saxon/i18n/mn.po index 7789e16d93e..43fe5c6e4e5 100644 --- a/addons/account_anglo_saxon/i18n/mn.po +++ b/addons/account_anglo_saxon/i18n/mn.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/nb.po b/addons/account_anglo_saxon/i18n/nb.po index 13916aa0dbd..3ad31474989 100644 --- a/addons/account_anglo_saxon/i18n/nb.po +++ b/addons/account_anglo_saxon/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/nl.po b/addons/account_anglo_saxon/i18n/nl.po index fa16c36a133..b0d2c3d8d5a 100644 --- a/addons/account_anglo_saxon/i18n/nl.po +++ b/addons/account_anglo_saxon/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/nl_BE.po b/addons/account_anglo_saxon/i18n/nl_BE.po index b4f1bde3db6..5af9d25b07f 100644 --- a/addons/account_anglo_saxon/i18n/nl_BE.po +++ b/addons/account_anglo_saxon/i18n/nl_BE.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/oc.po b/addons/account_anglo_saxon/i18n/oc.po index 2128240c319..ee7d29b0d8d 100644 --- a/addons/account_anglo_saxon/i18n/oc.po +++ b/addons/account_anglo_saxon/i18n/oc.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/pl.po b/addons/account_anglo_saxon/i18n/pl.po index f750473bfa6..8a5e56f5806 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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/pt.po b/addons/account_anglo_saxon/i18n/pt.po index b01f66bded2..533f089ba61 100644 --- a/addons/account_anglo_saxon/i18n/pt.po +++ b/addons/account_anglo_saxon/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/pt_BR.po b/addons/account_anglo_saxon/i18n/pt_BR.po index 46c5015b696..56e2f3de7c0 100644 --- a/addons/account_anglo_saxon/i18n/pt_BR.po +++ b/addons/account_anglo_saxon/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon @@ -31,7 +31,7 @@ msgstr "Linha da Fatura" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_purchase_order msgid "Purchase Order" -msgstr "Ordem de Compra" +msgstr "Pedido de Compra" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_template diff --git a/addons/account_anglo_saxon/i18n/ro.po b/addons/account_anglo_saxon/i18n/ro.po index 227d27f461d..e6ef0ec11af 100644 --- a/addons/account_anglo_saxon/i18n/ro.po +++ b/addons/account_anglo_saxon/i18n/ro.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/ru.po b/addons/account_anglo_saxon/i18n/ru.po index cd253ef1873..d5b99d99311 100644 --- a/addons/account_anglo_saxon/i18n/ru.po +++ b/addons/account_anglo_saxon/i18n/ru.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/sl.po b/addons/account_anglo_saxon/i18n/sl.po index bc6114abf7f..e046087ea73 100644 --- a/addons/account_anglo_saxon/i18n/sl.po +++ b/addons/account_anglo_saxon/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/sq.po b/addons/account_anglo_saxon/i18n/sq.po index d1cefff8c80..eddc5d24f36 100644 --- a/addons/account_anglo_saxon/i18n/sq.po +++ b/addons/account_anglo_saxon/i18n/sq.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/sr@latin.po b/addons/account_anglo_saxon/i18n/sr@latin.po index a3274335ebf..8077128fa03 100644 --- a/addons/account_anglo_saxon/i18n/sr@latin.po +++ b/addons/account_anglo_saxon/i18n/sr@latin.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/sv.po b/addons/account_anglo_saxon/i18n/sv.po index 4fc66e874ca..31898f5da17 100644 --- a/addons/account_anglo_saxon/i18n/sv.po +++ b/addons/account_anglo_saxon/i18n/sv.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/ta.po b/addons/account_anglo_saxon/i18n/ta.po index 5e6610e722d..520630a54d9 100644 --- a/addons/account_anglo_saxon/i18n/ta.po +++ b/addons/account_anglo_saxon/i18n/ta.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/tr.po b/addons/account_anglo_saxon/i18n/tr.po index b0b869cfc07..82ebcf713e7 100644 --- a/addons/account_anglo_saxon/i18n/tr.po +++ b/addons/account_anglo_saxon/i18n/tr.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/zh_CN.po b/addons/account_anglo_saxon/i18n/zh_CN.po index 046ba3e0116..ede7ed5854d 100644 --- a/addons/account_anglo_saxon/i18n/zh_CN.po +++ b/addons/account_anglo_saxon/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/zh_TW.po b/addons/account_anglo_saxon/i18n/zh_TW.po index 9616e4e2e16..16504cf0517 100644 --- a/addons/account_anglo_saxon/i18n/zh_TW.po +++ b/addons/account_anglo_saxon/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_anglo_saxon diff --git a/addons/account_asset/i18n/ar.po b/addons/account_asset/i18n/ar.po index a405d4d206b..fabec666121 100644 --- a/addons/account_asset/i18n/ar.po +++ b/addons/account_asset/i18n/ar.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/ca.po b/addons/account_asset/i18n/ca.po index b887768f95f..d70b342678f 100755 --- a/addons/account_asset/i18n/ca.po +++ b/addons/account_asset/i18n/ca.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/cs.po b/addons/account_asset/i18n/cs.po index 06d8d13009a..1b5b7cd222e 100644 --- a/addons/account_asset/i18n/cs.po +++ b/addons/account_asset/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/account_asset/i18n/da.po b/addons/account_asset/i18n/da.po index 0911dcdf15b..3232de8892c 100644 --- a/addons/account_asset/i18n/da.po +++ b/addons/account_asset/i18n/da.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/de.po b/addons/account_asset/i18n/de.po index 808907065fd..ac238f16696 100755 --- a/addons/account_asset/i18n/de.po +++ b/addons/account_asset/i18n/de.po @@ -15,7 +15,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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/en_GB.po b/addons/account_asset/i18n/en_GB.po index b8d584ac07f..8fb8729b4bc 100644 --- a/addons/account_asset/i18n/en_GB.po +++ b/addons/account_asset/i18n/en_GB.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/es.po b/addons/account_asset/i18n/es.po index 0a70217eff7..6e56020d608 100755 --- a/addons/account_asset/i18n/es.po +++ b/addons/account_asset/i18n/es.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/es_AR.po b/addons/account_asset/i18n/es_AR.po index edc3c048bfc..99fc92a886a 100644 --- a/addons/account_asset/i18n/es_AR.po +++ b/addons/account_asset/i18n/es_AR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/es_CR.po b/addons/account_asset/i18n/es_CR.po index 9f52586c9f1..ef841d754ad 100755 --- a/addons/account_asset/i18n/es_CR.po +++ b/addons/account_asset/i18n/es_CR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/account_asset/i18n/es_EC.po b/addons/account_asset/i18n/es_EC.po index ea2334f2ef9..5c1f50184d9 100644 --- a/addons/account_asset/i18n/es_EC.po +++ b/addons/account_asset/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/es_MX.po b/addons/account_asset/i18n/es_MX.po index 79786ab163b..b510f97a370 100644 --- a/addons/account_asset/i18n/es_MX.po +++ b/addons/account_asset/i18n/es_MX.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/et.po b/addons/account_asset/i18n/et.po index 727f2a9a8bb..d42d63552d4 100644 --- a/addons/account_asset/i18n/et.po +++ b/addons/account_asset/i18n/et.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/fi.po b/addons/account_asset/i18n/fi.po index a5477e89068..93b8d38393e 100644 --- a/addons/account_asset/i18n/fi.po +++ b/addons/account_asset/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/fr.po b/addons/account_asset/i18n/fr.po index 8aebff577ca..f32a8bdb42c 100755 --- a/addons/account_asset/i18n/fr.po +++ b/addons/account_asset/i18n/fr.po @@ -15,7 +15,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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/gu.po b/addons/account_asset/i18n/gu.po index 1a1a87a2290..33a5bfb9596 100644 --- a/addons/account_asset/i18n/gu.po +++ b/addons/account_asset/i18n/gu.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/hr.po b/addons/account_asset/i18n/hr.po index a3486de6c14..cdcd970ff0d 100644 --- a/addons/account_asset/i18n/hr.po +++ b/addons/account_asset/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/id.po b/addons/account_asset/i18n/id.po index ec461a8ae84..e55ea5039b3 100644 --- a/addons/account_asset/i18n/id.po +++ b/addons/account_asset/i18n/id.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/it.po b/addons/account_asset/i18n/it.po index e15ffd4a1bf..d7567af4299 100644 --- a/addons/account_asset/i18n/it.po +++ b/addons/account_asset/i18n/it.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/ja.po b/addons/account_asset/i18n/ja.po index 32f6437034b..436e902a6d7 100644 --- a/addons/account_asset/i18n/ja.po +++ b/addons/account_asset/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/ko.po b/addons/account_asset/i18n/ko.po new file mode 100644 index 00000000000..1185333020b --- /dev/null +++ b/addons/account_asset/i18n/ko.po @@ -0,0 +1,741 @@ +# Korean translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"PO-Revision-Date: 2013-03-15 19:16+0000\n" +"Last-Translator: FULL NAME \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-03-16 05:50+0000\n" +"X-Generator: Launchpad (build 16532)\n" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Assets in draft and open states" +msgstr "" + +#. 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 "" + +#. module: account_asset +#: field:account.asset.asset,value_residual:0 +msgid "Residual Value" +msgstr "" + +#. module: account_asset +#: field:account.asset.category,account_expense_depreciation_id:0 +msgid "Depr. Expense Account" +msgstr "" + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Group By..." +msgstr "" + +#. module: account_asset +#: field:asset.asset.report,gross_value:0 +msgid "Gross Amount" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +#: field:account.asset.depreciation.line,asset_id:0 +#: field:account.asset.history,asset_id:0 +#: field:account.move.line,asset_id:0 +#: view:asset.asset.report:0 +#: field:asset.asset.report,asset_id:0 +#: model:ir.model,name:account_asset.model_account_asset_asset +msgid "Asset" +msgstr "" + +#. module: account_asset +#: help:account.asset.asset,prorata:0 +#: help:account.asset.category,prorata:0 +msgid "" +"Indicates that the first depreciation entry for this asset have to be done " +"from the purchase date instead of the first January" +msgstr "" + +#. module: account_asset +#: selection:account.asset.asset,method:0 +#: selection:account.asset.category,method:0 +msgid "Linear" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,company_id:0 +#: field:account.asset.category,company_id:0 +#: view:asset.asset.report:0 +#: field:asset.asset.report,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_asset +#: view:asset.modify:0 +msgid "Modify" +msgstr "" + +#. module: account_asset +#: selection:account.asset.asset,state:0 +#: view:asset.asset.report:0 +#: selection:asset.asset.report,state:0 +msgid "Running" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Set to Draft" +msgstr "" + +#. module: account_asset +#: view:asset.asset.report:0 +#: model:ir.actions.act_window,name:account_asset.action_asset_asset_report +#: model:ir.model,name:account_asset.model_asset_asset_report +#: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report +msgid "Assets Analysis" +msgstr "" + +#. module: account_asset +#: field:asset.modify,name:0 +msgid "Reason" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,method_progress_factor:0 +#: field:account.asset.category,method_progress_factor:0 +msgid "Degressive Factor" +msgstr "" + +#. module: account_asset +#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal +#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_list_normal +msgid "Asset Categories" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +#: field:account.asset.asset,account_move_line_ids:0 +#: field:account.move.line,entry_ids:0 +#: model:ir.actions.act_window,name:account_asset.act_entries_open +msgid "Entries" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +#: field:account.asset.asset,depreciation_line_ids:0 +msgid "Depreciation Lines" +msgstr "" + +#. module: account_asset +#: help:account.asset.asset,salvage_value:0 +msgid "It is the amount you plan to have that you cannot depreciate." +msgstr "" + +#. module: account_asset +#: help:account.asset.asset,method_period:0 +msgid "The amount of time between two depreciations, in months" +msgstr "" + +#. module: account_asset +#: field:account.asset.depreciation.line,depreciation_date:0 +#: view:asset.asset.report:0 +#: field:asset.asset.report,depreciation_date:0 +msgid "Depreciation Date" +msgstr "" + +#. module: account_asset +#: constraint:account.asset.asset:0 +msgid "Error ! You cannot create recursive assets." +msgstr "" + +#. module: account_asset +#: field:asset.asset.report,posted_value:0 +msgid "Posted Amount" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +#: view:asset.asset.report:0 +#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_form +#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_form +#: model:ir.ui.menu,name:account_asset.menu_finance_assets +#: model:ir.ui.menu,name:account_asset.menu_finance_config_assets +msgid "Assets" +msgstr "" + +#. module: account_asset +#: field:account.asset.category,account_depreciation_id:0 +msgid "Depreciation Account" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +#: view:account.asset.category:0 +#: view:account.asset.history:0 +#: view:asset.modify:0 +#: field:asset.modify,note:0 +msgid "Notes" +msgstr "" + +#. module: account_asset +#: field:account.asset.depreciation.line,move_id:0 +msgid "Depreciation Entry" +msgstr "" + +#. module: account_asset +#: view:asset.asset.report:0 +#: field:asset.asset.report,nbr:0 +msgid "# of Depreciation Lines" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,method_period:0 +msgid "Number of Months in a Period" +msgstr "" + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Assets in draft state" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,method_end:0 +#: selection:account.asset.asset,method_time:0 +#: selection:account.asset.category,method_time:0 +#: selection:account.asset.history,method_time:0 +msgid "Ending Date" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,code:0 +msgid "Reference" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Account Asset" +msgstr "" + +#. 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 "" + +#. module: account_asset +#: field:account.asset.category,method_period:0 +#: field:account.asset.history,method_period:0 +#: field:asset.modify,method_period:0 +msgid "Period Length" +msgstr "" + +#. module: account_asset +#: selection:account.asset.asset,state:0 +#: view:asset.asset.report:0 +#: selection:asset.asset.report,state:0 +msgid "Draft" +msgstr "" + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Date of asset purchase" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Change Duration" +msgstr "" + +#. 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 "" + +#. module: account_asset +#: view:account.asset.category:0 +msgid "Analytic Information" +msgstr "" + +#. module: account_asset +#: field:account.asset.category,account_analytic_id:0 +msgid "Analytic account" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,method:0 +#: field:account.asset.category,method:0 +msgid "Computation Method" +msgstr "" + +#. module: account_asset +#: constraint:account.asset.asset:0 +msgid "" +"Prorata temporis can be applied only for time method \"number of " +"depreciations\"." +msgstr "" + +#. module: account_asset +#: field:account.asset.depreciation.line,remaining_value:0 +msgid "Next Period Depreciation" +msgstr "" + +#. module: account_asset +#: help:account.asset.history,method_period:0 +msgid "Time in month between two depreciations" +msgstr "" + +#. 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 "" + +#. module: account_asset +#: field:account.asset.asset,salvage_value:0 +msgid "Salvage Value" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,category_id:0 +#: view:account.asset.category:0 +#: field:account.invoice.line,asset_category_id:0 +#: view:asset.asset.report:0 +msgid "Asset Category" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Assets in closed state" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,parent_id:0 +msgid "Parent Asset" +msgstr "" + +#. module: account_asset +#: view:account.asset.history:0 +#: model:ir.model,name:account_asset.model_account_asset_history +msgid "Asset history" +msgstr "" + +#. module: account_asset +#: view:account.asset.category:0 +msgid "Search Asset Category" +msgstr "" + +#. module: account_asset +#: view:asset.modify:0 +msgid "months" +msgstr "" + +#. module: account_asset +#: model:ir.model,name:account_asset.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Depreciation Board" +msgstr "" + +#. module: account_asset +#: field:asset.asset.report,unposted_value:0 +msgid "Unposted Amount" +msgstr "" + +#. 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 "" + +#. module: account_asset +#: view:asset.depreciation.confirmation.wizard:0 +#: view:asset.modify:0 +msgid "or" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,note:0 +#: field:account.asset.category,note:0 +#: field:account.asset.history,note:0 +msgid "Note" +msgstr "" + +#. module: account_asset +#: help:account.asset.history,method_time:0 +msgid "" +"The method to use to compute the dates and number of depreciation lines.\n" +"Number of Depreciations: Fix the number of depreciation lines and the time " +"between 2 depreciations.\n" +"Ending Date: Choose the time between 2 depreciations and the date the " +"depreciations won't go beyond." +msgstr "" + +#. module: account_asset +#: help:account.asset.asset,method_time:0 +#: help:account.asset.category,method_time:0 +msgid "" +"Choose the method to use to compute the dates and number of depreciation " +"lines.\n" +" * Number of Depreciations: Fix the number of depreciation lines and the " +"time between 2 depreciations.\n" +" * Ending Date: Choose the time between 2 depreciations and the date the " +"depreciations won't go beyond." +msgstr "" + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Assets in running state" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Closed" +msgstr "" + +#. module: account_asset +#: help:account.asset.asset,state:0 +msgid "" +"When an asset is created, the status is 'Draft'.\n" +"If the asset is confirmed, the status goes in 'Running' and the depreciation " +"lines can be posted in the accounting.\n" +"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 "" + +#. module: account_asset +#: field:account.asset.asset,state:0 +#: field:asset.asset.report,state:0 +msgid "Status" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,partner_id:0 +#: field:asset.asset.report,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Posted depreciation lines" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,child_ids:0 +msgid "Children Assets" +msgstr "" + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Date of depreciation" +msgstr "" + +#. module: account_asset +#: field:account.asset.history,user_id:0 +msgid "User" +msgstr "" + +#. module: account_asset +#: field:account.asset.category,account_asset_id:0 +msgid "Asset Account" +msgstr "" + +#. module: account_asset +#: view:asset.asset.report:0 +msgid "Extended Filters..." +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +#: view:asset.depreciation.confirmation.wizard:0 +msgid "Compute" +msgstr "" + +#. module: account_asset +#: view:account.asset.history:0 +msgid "Asset History" +msgstr "" + +#. module: account_asset +#: model:ir.model,name:account_asset.model_asset_depreciation_confirmation_wizard +msgid "asset.depreciation.confirmation.wizard" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,active:0 +msgid "Active" +msgstr "" + +#. module: account_asset +#: field:account.asset.depreciation.line,parent_state:0 +msgid "State of Asset" +msgstr "" + +#. module: account_asset +#: field:account.asset.depreciation.line,name:0 +msgid "Depreciation Name" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +#: field:account.asset.asset,history_ids:0 +msgid "History" +msgstr "" + +#. module: account_asset +#: view:asset.depreciation.confirmation.wizard:0 +msgid "Compute Asset" +msgstr "" + +#. module: account_asset +#: field:asset.depreciation.confirmation.wizard,period_id:0 +msgid "Period" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "General" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,prorata:0 +#: field:account.asset.category,prorata:0 +msgid "Prorata Temporis" +msgstr "" + +#. module: account_asset +#: model:ir.model,name:account_asset.model_account_invoice +msgid "Invoice" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Set to Close" +msgstr "" + +#. module: account_asset +#: view:asset.depreciation.confirmation.wizard:0 +#: view:asset.modify:0 +msgid "Cancel" +msgstr "" + +#. module: account_asset +#: selection:account.asset.asset,state:0 +#: selection:asset.asset.report,state:0 +msgid "Close" +msgstr "" + +#. module: account_asset +#: model:ir.model,name:account_asset.model_account_move_line +msgid "Journal Items" +msgstr "" + +#. module: account_asset +#: view:asset.modify:0 +msgid "Asset Durations to Modify" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,purchase_date:0 +#: view:asset.asset.report:0 +#: field:asset.asset.report,purchase_date:0 +msgid "Purchase Date" +msgstr "" + +#. module: account_asset +#: selection:account.asset.asset,method:0 +#: selection:account.asset.category,method:0 +msgid "Degressive" +msgstr "" + +#. module: account_asset +#: help:asset.depreciation.confirmation.wizard,period_id:0 +msgid "" +"Choose the period for which you want to automatically post the depreciation " +"lines of running assets" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Current" +msgstr "" + +#. module: account_asset +#: view:account.asset.category:0 +msgid "Depreciation Method" +msgstr "" + +#. module: account_asset +#: field:account.asset.depreciation.line,amount:0 +msgid "Current Depreciation" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,name:0 +msgid "Asset Name" +msgstr "" + +#. module: account_asset +#: field:account.asset.category,open_asset:0 +msgid "Skip Draft State" +msgstr "" + +#. module: account_asset +#: view:account.asset.category:0 +msgid "Depreciation Dates" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account_asset +#: field:account.asset.category,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account_asset +#: field:account.asset.history,name:0 +msgid "History name" +msgstr "" + +#. module: account_asset +#: field:account.asset.depreciation.line,depreciated_value:0 +msgid "Amount Already Depreciated" +msgstr "" + +#. module: account_asset +#: help:account.asset.asset,method:0 +#: help:account.asset.category,method:0 +msgid "" +"Choose the method to use to compute the amount of depreciation lines.\n" +" * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n" +" * Degressive: Calculated on basis of: Residual Value * Degressive Factor" +msgstr "" + +#. module: account_asset +#: field:account.asset.depreciation.line,move_check:0 +#: view:asset.asset.report:0 +#: field:asset.asset.report,move_check:0 +msgid "Posted" +msgstr "" + +#. module: account_asset +#: model:ir.actions.act_window,help:account_asset.action_asset_asset_report +msgid "" +"

\n" +" From this report, you can have an overview on all depreciation. " +"The\n" +" tool search can also be used to personalise your Assets reports " +"and\n" +" so, match this analysis to your needs;\n" +"

\n" +" " +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,purchase_value:0 +msgid "Gross Value" +msgstr "" + +#. module: account_asset +#: field:account.asset.category,name:0 +msgid "Name" +msgstr "" + +#. module: account_asset +#: help:account.asset.category,open_asset:0 +msgid "" +"Check this if you want to automatically confirm the assets of this category " +"when created by invoices." +msgstr "" + +#. module: account_asset +#: field:asset.asset.report,name:0 +msgid "Year" +msgstr "" + +#. module: account_asset +#: model:ir.model,name:account_asset.model_account_asset_depreciation_line +msgid "Asset depreciation line" +msgstr "" + +#. module: account_asset +#: view:account.asset.category:0 +#: field:asset.asset.report,asset_category_id:0 +#: model:ir.model,name:account_asset.model_account_asset_category +msgid "Asset category" +msgstr "" + +#. module: account_asset +#: view:asset.asset.report:0 +#: field:asset.asset.report,depreciation_value:0 +msgid "Amount of Depreciation Lines" +msgstr "" + +#. module: account_asset +#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#, python-format +msgid "Created Asset Moves" +msgstr "" + +#. module: account_asset +#: field:account.asset.depreciation.line,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: account_asset +#: help:account.asset.category,method_period:0 +msgid "State here the time between 2 depreciations, in months" +msgstr "" + +#. module: account_asset +#: field:account.asset.history,date:0 +msgid "Date" +msgstr "" + +#. module: account_asset +#: field:account.asset.asset,method_number:0 +#: selection:account.asset.asset,method_time:0 +#: field:account.asset.category,method_number:0 +#: selection:account.asset.category,method_time:0 +#: field:account.asset.history,method_number:0 +#: selection:account.asset.history,method_time:0 +#: field:asset.modify,method_number:0 +msgid "Number of Depreciations" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Create Move" +msgstr "" + +#. module: account_asset +#: view:account.asset.asset:0 +msgid "Confirm Asset" +msgstr "" + +#. 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 "" diff --git a/addons/account_asset/i18n/lt.po b/addons/account_asset/i18n/lt.po index 04fccf08e80..85d578241af 100644 --- a/addons/account_asset/i18n/lt.po +++ b/addons/account_asset/i18n/lt.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/mk.po b/addons/account_asset/i18n/mk.po index 57f747278c1..1f08c8620d2 100644 --- a/addons/account_asset/i18n/mk.po +++ b/addons/account_asset/i18n/mk.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/mn.po b/addons/account_asset/i18n/mn.po index 85824bd59c5..91e55e7a698 100644 --- a/addons/account_asset/i18n/mn.po +++ b/addons/account_asset/i18n/mn.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/nb.po b/addons/account_asset/i18n/nb.po index d62b0b083fa..de87533a58c 100644 --- a/addons/account_asset/i18n/nb.po +++ b/addons/account_asset/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/nl.po b/addons/account_asset/i18n/nl.po index 7b17db8057f..bfadaa0dba9 100644 --- a/addons/account_asset/i18n/nl.po +++ b/addons/account_asset/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/nl_BE.po b/addons/account_asset/i18n/nl_BE.po index 3ee15a871b0..5bee5f9bfd9 100644 --- a/addons/account_asset/i18n/nl_BE.po +++ b/addons/account_asset/i18n/nl_BE.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/pl.po b/addons/account_asset/i18n/pl.po index 4b64a849431..007c65e0f23 100755 --- 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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/pt.po b/addons/account_asset/i18n/pt.po index e6e57101871..76162329c3c 100755 --- a/addons/account_asset/i18n/pt.po +++ b/addons/account_asset/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/pt_BR.po b/addons/account_asset/i18n/pt_BR.po index 495db92d7fd..17094692595 100644 --- a/addons/account_asset/i18n/pt_BR.po +++ b/addons/account_asset/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/ro.po b/addons/account_asset/i18n/ro.po index c15d532c807..4e0363a89e4 100644 --- a/addons/account_asset/i18n/ro.po +++ b/addons/account_asset/i18n/ro.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/ru.po b/addons/account_asset/i18n/ru.po index bd68369afae..a0950a98370 100644 --- a/addons/account_asset/i18n/ru.po +++ b/addons/account_asset/i18n/ru.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/sl.po b/addons/account_asset/i18n/sl.po index 475cc52661d..188f701aab5 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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/sr@latin.po b/addons/account_asset/i18n/sr@latin.po index 73deec4330f..54d81791f73 100644 --- a/addons/account_asset/i18n/sr@latin.po +++ b/addons/account_asset/i18n/sr@latin.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/sv.po b/addons/account_asset/i18n/sv.po index 31340c6ca58..1bf58855317 100755 --- a/addons/account_asset/i18n/sv.po +++ b/addons/account_asset/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/tr.po b/addons/account_asset/i18n/tr.po index f024c712eeb..4593ec68032 100644 --- a/addons/account_asset/i18n/tr.po +++ b/addons/account_asset/i18n/tr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/vi.po b/addons/account_asset/i18n/vi.po index b8b9b733fb1..b137f24d29c 100644 --- a/addons/account_asset/i18n/vi.po +++ b/addons/account_asset/i18n/vi.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/zh_CN.po b/addons/account_asset/i18n/zh_CN.po index c34175f4b16..aca22a8c9fb 100644 --- a/addons/account_asset/i18n/zh_CN.po +++ b/addons/account_asset/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_asset/i18n/zh_TW.po b/addons/account_asset/i18n/zh_TW.po index ebb3183b39d..d824a9ad4d6 100644 --- a/addons/account_asset/i18n/zh_TW.po +++ b/addons/account_asset/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_asset diff --git a/addons/account_bank_statement_extensions/i18n/ar.po b/addons/account_bank_statement_extensions/i18n/ar.po index c7c8db0fef7..d3230fc15fb 100644 --- a/addons/account_bank_statement_extensions/i18n/ar.po +++ b/addons/account_bank_statement_extensions/i18n/ar.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/de.po b/addons/account_bank_statement_extensions/i18n/de.po index 225ab32352e..fec8dd92f3f 100644 --- a/addons/account_bank_statement_extensions/i18n/de.po +++ b/addons/account_bank_statement_extensions/i18n/de.po @@ -15,7 +15,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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/en_GB.po b/addons/account_bank_statement_extensions/i18n/en_GB.po index e7370e860a9..650724963b1 100644 --- a/addons/account_bank_statement_extensions/i18n/en_GB.po +++ b/addons/account_bank_statement_extensions/i18n/en_GB.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/es.po b/addons/account_bank_statement_extensions/i18n/es.po index 9a2751c9e93..56dded2fea0 100644 --- a/addons/account_bank_statement_extensions/i18n/es.po +++ b/addons/account_bank_statement_extensions/i18n/es.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/es_CR.po b/addons/account_bank_statement_extensions/i18n/es_CR.po index 5fce352edb8..8d42b1ba620 100644 --- a/addons/account_bank_statement_extensions/i18n/es_CR.po +++ b/addons/account_bank_statement_extensions/i18n/es_CR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/es_EC.po b/addons/account_bank_statement_extensions/i18n/es_EC.po index a7350da92b8..d6a9619d17c 100644 --- a/addons/account_bank_statement_extensions/i18n/es_EC.po +++ b/addons/account_bank_statement_extensions/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/es_MX.po b/addons/account_bank_statement_extensions/i18n/es_MX.po index 072ec4346f1..1dea6446b5c 100644 --- a/addons/account_bank_statement_extensions/i18n/es_MX.po +++ b/addons/account_bank_statement_extensions/i18n/es_MX.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/fi.po b/addons/account_bank_statement_extensions/i18n/fi.po index 741860ec4d6..ca8f56985cb 100644 --- a/addons/account_bank_statement_extensions/i18n/fi.po +++ b/addons/account_bank_statement_extensions/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/fr.po b/addons/account_bank_statement_extensions/i18n/fr.po index 6ba6cfa15a1..703ddc8d222 100644 --- a/addons/account_bank_statement_extensions/i18n/fr.po +++ b/addons/account_bank_statement_extensions/i18n/fr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/gu.po b/addons/account_bank_statement_extensions/i18n/gu.po index 8a5f12133f2..653807b7d8b 100644 --- a/addons/account_bank_statement_extensions/i18n/gu.po +++ b/addons/account_bank_statement_extensions/i18n/gu.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/hr.po b/addons/account_bank_statement_extensions/i18n/hr.po index 4e16919bda9..e8a51f9d5b3 100644 --- a/addons/account_bank_statement_extensions/i18n/hr.po +++ b/addons/account_bank_statement_extensions/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/it.po b/addons/account_bank_statement_extensions/i18n/it.po index 39e65cb590a..b6a32420ecf 100644 --- a/addons/account_bank_statement_extensions/i18n/it.po +++ b/addons/account_bank_statement_extensions/i18n/it.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/ja.po b/addons/account_bank_statement_extensions/i18n/ja.po index fc0be3ab6b8..114cf379dbf 100644 --- a/addons/account_bank_statement_extensions/i18n/ja.po +++ b/addons/account_bank_statement_extensions/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/mk.po b/addons/account_bank_statement_extensions/i18n/mk.po index 05a412d134c..55d719d004b 100644 --- a/addons/account_bank_statement_extensions/i18n/mk.po +++ b/addons/account_bank_statement_extensions/i18n/mk.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\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 bbb109d8be4..03f11d2dba9 100644 --- a/addons/account_bank_statement_extensions/i18n/mn.po +++ b/addons/account_bank_statement_extensions/i18n/mn.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/nb.po b/addons/account_bank_statement_extensions/i18n/nb.po index b1106b636d1..b09f1cbbc63 100644 --- a/addons/account_bank_statement_extensions/i18n/nb.po +++ b/addons/account_bank_statement_extensions/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/nl.po b/addons/account_bank_statement_extensions/i18n/nl.po index 96df4b713d7..a2afd2fcde3 100644 --- a/addons/account_bank_statement_extensions/i18n/nl.po +++ b/addons/account_bank_statement_extensions/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/pl.po b/addons/account_bank_statement_extensions/i18n/pl.po index c6a025a30d7..26ee9631791 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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\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 2060f5a7cc6..375d1a537b3 100644 --- a/addons/account_bank_statement_extensions/i18n/pt.po +++ b/addons/account_bank_statement_extensions/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/pt_BR.po b/addons/account_bank_statement_extensions/i18n/pt_BR.po index 26c1b94d613..c80230e0fe6 100644 --- a/addons/account_bank_statement_extensions/i18n/pt_BR.po +++ b/addons/account_bank_statement_extensions/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/ro.po b/addons/account_bank_statement_extensions/i18n/ro.po index 550d9d93253..e82c0c757d0 100644 --- a/addons/account_bank_statement_extensions/i18n/ro.po +++ b/addons/account_bank_statement_extensions/i18n/ro.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/sl.po b/addons/account_bank_statement_extensions/i18n/sl.po index d346a04b8bc..40c5983d1ed 100644 --- a/addons/account_bank_statement_extensions/i18n/sl.po +++ b/addons/account_bank_statement_extensions/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/sr@latin.po b/addons/account_bank_statement_extensions/i18n/sr@latin.po index 2d1b3e839f9..a04c56e8bab 100644 --- a/addons/account_bank_statement_extensions/i18n/sr@latin.po +++ b/addons/account_bank_statement_extensions/i18n/sr@latin.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/sv.po b/addons/account_bank_statement_extensions/i18n/sv.po index 296f0742849..fef21e53a8a 100644 --- a/addons/account_bank_statement_extensions/i18n/sv.po +++ b/addons/account_bank_statement_extensions/i18n/sv.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/tr.po b/addons/account_bank_statement_extensions/i18n/tr.po index bcc31030577..c2f9ad07f4c 100644 --- a/addons/account_bank_statement_extensions/i18n/tr.po +++ b/addons/account_bank_statement_extensions/i18n/tr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\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 033fa6bcf9a..25f27524ef0 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_CN.po +++ b/addons/account_bank_statement_extensions/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/zh_TW.po b/addons/account_bank_statement_extensions/i18n/zh_TW.po index 5ce97249f89..4ff26f2a0f6 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_TW.po +++ b/addons/account_bank_statement_extensions/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_bank_statement_extensions diff --git a/addons/account_budget/i18n/ar.po b/addons/account_budget/i18n/ar.po index 211ff704bbf..6a24ab59302 100644 --- a/addons/account_budget/i18n/ar.po +++ b/addons/account_budget/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/bg.po b/addons/account_budget/i18n/bg.po index 3526c0f46d7..9430f7e7345 100644 --- a/addons/account_budget/i18n/bg.po +++ b/addons/account_budget/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/bs.po b/addons/account_budget/i18n/bs.po index 5d0ad448561..6f0ec313295 100644 --- a/addons/account_budget/i18n/bs.po +++ b/addons/account_budget/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/ca.po b/addons/account_budget/i18n/ca.po index 467cd7d62de..bef64019461 100644 --- a/addons/account_budget/i18n/ca.po +++ b/addons/account_budget/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/cs.po b/addons/account_budget/i18n/cs.po index 619e68047df..4d9ab187067 100644 --- a/addons/account_budget/i18n/cs.po +++ b/addons/account_budget/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/da.po b/addons/account_budget/i18n/da.po index bb92562b051..ffb8e6294da 100644 --- a/addons/account_budget/i18n/da.po +++ b/addons/account_budget/i18n/da.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/de.po b/addons/account_budget/i18n/de.po index 2c412e0b8e2..67384f36a6b 100644 --- a/addons/account_budget/i18n/de.po +++ b/addons/account_budget/i18n/de.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/el.po b/addons/account_budget/i18n/el.po index 717edce27ec..30e9b2c0e73 100644 --- a/addons/account_budget/i18n/el.po +++ b/addons/account_budget/i18n/el.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/en_GB.po b/addons/account_budget/i18n/en_GB.po index 05f5a0e25f2..95e99e402c9 100644 --- a/addons/account_budget/i18n/en_GB.po +++ b/addons/account_budget/i18n/en_GB.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/es.po b/addons/account_budget/i18n/es.po index 16bc5572a97..913659239d2 100644 --- a/addons/account_budget/i18n/es.po +++ b/addons/account_budget/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/es_AR.po b/addons/account_budget/i18n/es_AR.po index 47d94ca0bcc..669eb086715 100644 --- a/addons/account_budget/i18n/es_AR.po +++ b/addons/account_budget/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/es_CR.po b/addons/account_budget/i18n/es_CR.po index 8aaadcfb4e9..7f7e9d0db93 100644 --- a/addons/account_budget/i18n/es_CR.po +++ b/addons/account_budget/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/account_budget/i18n/es_EC.po b/addons/account_budget/i18n/es_EC.po index aded420f505..50c978dbb21 100644 --- a/addons/account_budget/i18n/es_EC.po +++ b/addons/account_budget/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/es_MX.po b/addons/account_budget/i18n/es_MX.po index 6e996a07c40..0152eabae9c 100644 --- a/addons/account_budget/i18n/es_MX.po +++ b/addons/account_budget/i18n/es_MX.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/es_PY.po b/addons/account_budget/i18n/es_PY.po index c16883abd34..850daae6e03 100644 --- a/addons/account_budget/i18n/es_PY.po +++ b/addons/account_budget/i18n/es_PY.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/et.po b/addons/account_budget/i18n/et.po index 68a522d9b98..7e8ff9fe09d 100644 --- a/addons/account_budget/i18n/et.po +++ b/addons/account_budget/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/fa.po b/addons/account_budget/i18n/fa.po index 67c80b3d8ff..bd6e905a476 100644 --- a/addons/account_budget/i18n/fa.po +++ b/addons/account_budget/i18n/fa.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/fi.po b/addons/account_budget/i18n/fi.po index 4b47bc4f391..46753523eff 100644 --- a/addons/account_budget/i18n/fi.po +++ b/addons/account_budget/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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/fr.po b/addons/account_budget/i18n/fr.po index e2c28a566b7..1544460d3fd 100644 --- a/addons/account_budget/i18n/fr.po +++ b/addons/account_budget/i18n/fr.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/gl.po b/addons/account_budget/i18n/gl.po index acfe86561d6..dcb96e5f7f7 100644 --- a/addons/account_budget/i18n/gl.po +++ b/addons/account_budget/i18n/gl.po @@ -15,7 +15,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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/gu.po b/addons/account_budget/i18n/gu.po index c563bc66bc5..917995592a5 100644 --- a/addons/account_budget/i18n/gu.po +++ b/addons/account_budget/i18n/gu.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/he.po b/addons/account_budget/i18n/he.po index f76d4f78f70..48c9508ef4b 100644 --- a/addons/account_budget/i18n/he.po +++ b/addons/account_budget/i18n/he.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/hi.po b/addons/account_budget/i18n/hi.po index efb28ce3f3d..3dc5c2cfbb4 100644 --- a/addons/account_budget/i18n/hi.po +++ b/addons/account_budget/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/hr.po b/addons/account_budget/i18n/hr.po index 0357c5deda1..603ebb577aa 100644 --- a/addons/account_budget/i18n/hr.po +++ b/addons/account_budget/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/hu.po b/addons/account_budget/i18n/hu.po index cf24dab7b11..0497b9bc47b 100644 --- a/addons/account_budget/i18n/hu.po +++ b/addons/account_budget/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/id.po b/addons/account_budget/i18n/id.po index 976956424e0..e5baec19618 100644 --- a/addons/account_budget/i18n/id.po +++ b/addons/account_budget/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/it.po b/addons/account_budget/i18n/it.po index a4e755fb7bd..403c58648e6 100644 --- a/addons/account_budget/i18n/it.po +++ b/addons/account_budget/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/ja.po b/addons/account_budget/i18n/ja.po index f9fe06459a2..f69a34b9a82 100644 --- a/addons/account_budget/i18n/ja.po +++ b/addons/account_budget/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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/ko.po b/addons/account_budget/i18n/ko.po index e2bcb777e36..8a8a7ff3a14 100644 --- a/addons/account_budget/i18n/ko.po +++ b/addons/account_budget/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/lo.po b/addons/account_budget/i18n/lo.po index 733976532dd..5c761030d08 100644 --- a/addons/account_budget/i18n/lo.po +++ b/addons/account_budget/i18n/lo.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/lt.po b/addons/account_budget/i18n/lt.po index 68352a765cb..dba52c798f7 100644 --- a/addons/account_budget/i18n/lt.po +++ b/addons/account_budget/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/lv.po b/addons/account_budget/i18n/lv.po index da4adc48b54..ec7b886a270 100644 --- a/addons/account_budget/i18n/lv.po +++ b/addons/account_budget/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/mk.po b/addons/account_budget/i18n/mk.po index f476033f65f..3eabc04177e 100644 --- a/addons/account_budget/i18n/mk.po +++ b/addons/account_budget/i18n/mk.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/mn.po b/addons/account_budget/i18n/mn.po index 9501ab5cc38..327f03a76ed 100644 --- a/addons/account_budget/i18n/mn.po +++ b/addons/account_budget/i18n/mn.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/nb.po b/addons/account_budget/i18n/nb.po index 6d678c130e5..ddbd48d31c8 100644 --- a/addons/account_budget/i18n/nb.po +++ b/addons/account_budget/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/nl.po b/addons/account_budget/i18n/nl.po index 5fef5e5134e..6bfe13b47f2 100644 --- a/addons/account_budget/i18n/nl.po +++ b/addons/account_budget/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/nl_BE.po b/addons/account_budget/i18n/nl_BE.po index cf4b78aec2c..ff1ba274fdd 100644 --- a/addons/account_budget/i18n/nl_BE.po +++ b/addons/account_budget/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/oc.po b/addons/account_budget/i18n/oc.po index 6c926083ed2..027df686fb2 100644 --- a/addons/account_budget/i18n/oc.po +++ b/addons/account_budget/i18n/oc.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/pl.po b/addons/account_budget/i18n/pl.po index dbd058b4b23..a5b8841f8db 100644 --- a/addons/account_budget/i18n/pl.po +++ b/addons/account_budget/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/pt.po b/addons/account_budget/i18n/pt.po index 817a76bc8b4..1423558c25c 100644 --- a/addons/account_budget/i18n/pt.po +++ b/addons/account_budget/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/pt_BR.po b/addons/account_budget/i18n/pt_BR.po index a580df62a6d..38779fd690a 100644 --- a/addons/account_budget/i18n/pt_BR.po +++ b/addons/account_budget/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/ro.po b/addons/account_budget/i18n/ro.po index 51502f8c01f..2042daed84d 100644 --- a/addons/account_budget/i18n/ro.po +++ b/addons/account_budget/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/ru.po b/addons/account_budget/i18n/ru.po index 61ed0f0bc2b..387402a0e3b 100644 --- a/addons/account_budget/i18n/ru.po +++ b/addons/account_budget/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/sl.po b/addons/account_budget/i18n/sl.po index b6db74a4ca9..402b6e31efe 100644 --- a/addons/account_budget/i18n/sl.po +++ b/addons/account_budget/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/sq.po b/addons/account_budget/i18n/sq.po index c045504a844..86f3e1ddbf4 100644 --- a/addons/account_budget/i18n/sq.po +++ b/addons/account_budget/i18n/sq.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/sr.po b/addons/account_budget/i18n/sr.po index ecddbe465bb..4acf2f20ba5 100644 --- a/addons/account_budget/i18n/sr.po +++ b/addons/account_budget/i18n/sr.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/sr@latin.po b/addons/account_budget/i18n/sr@latin.po index 708335996f3..941a411ed7b 100644 --- a/addons/account_budget/i18n/sr@latin.po +++ b/addons/account_budget/i18n/sr@latin.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/sv.po b/addons/account_budget/i18n/sv.po index 328e453730f..fb3bf7c23df 100644 --- a/addons/account_budget/i18n/sv.po +++ b/addons/account_budget/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/tlh.po b/addons/account_budget/i18n/tlh.po index b55fff6a389..7874048fc92 100644 --- a/addons/account_budget/i18n/tlh.po +++ b/addons/account_budget/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/tr.po b/addons/account_budget/i18n/tr.po index b6668939c8d..466102b6e1a 100644 --- a/addons/account_budget/i18n/tr.po +++ b/addons/account_budget/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/uk.po b/addons/account_budget/i18n/uk.po index 24d6b11e3ca..d78be638fd4 100644 --- a/addons/account_budget/i18n/uk.po +++ b/addons/account_budget/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/vi.po b/addons/account_budget/i18n/vi.po index 174cda79ccf..1a063539696 100644 --- a/addons/account_budget/i18n/vi.po +++ b/addons/account_budget/i18n/vi.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/zh_CN.po b/addons/account_budget/i18n/zh_CN.po index cda4f37e2b8..6bbb0ca8f29 100644 --- a/addons/account_budget/i18n/zh_CN.po +++ b/addons/account_budget/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_budget/i18n/zh_TW.po b/addons/account_budget/i18n/zh_TW.po index 1493eab5fa0..61dfbe1cb60 100644 --- a/addons/account_budget/i18n/zh_TW.po +++ b/addons/account_budget/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_budget diff --git a/addons/account_cancel/i18n/ar.po b/addons/account_cancel/i18n/ar.po index 67c5687553e..00e62f39e63 100644 --- a/addons/account_cancel/i18n/ar.po +++ b/addons/account_cancel/i18n/ar.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/bg.po b/addons/account_cancel/i18n/bg.po index 57b861273a3..747f223c263 100644 --- a/addons/account_cancel/i18n/bg.po +++ b/addons/account_cancel/i18n/bg.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/bn.po b/addons/account_cancel/i18n/bn.po index a1b2e555cf0..61a5e146113 100644 --- a/addons/account_cancel/i18n/bn.po +++ b/addons/account_cancel/i18n/bn.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/br.po b/addons/account_cancel/i18n/br.po index c40e7bc7c5d..26a04eac044 100644 --- a/addons/account_cancel/i18n/br.po +++ b/addons/account_cancel/i18n/br.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/bs.po b/addons/account_cancel/i18n/bs.po index 2cfbb7bc987..1bb948499b0 100644 --- a/addons/account_cancel/i18n/bs.po +++ b/addons/account_cancel/i18n/bs.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/ca.po b/addons/account_cancel/i18n/ca.po index 516e98cfc72..8212c35d466 100644 --- a/addons/account_cancel/i18n/ca.po +++ b/addons/account_cancel/i18n/ca.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/cs.po b/addons/account_cancel/i18n/cs.po index 82be2914bec..261b2b5262d 100644 --- a/addons/account_cancel/i18n/cs.po +++ b/addons/account_cancel/i18n/cs.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/da.po b/addons/account_cancel/i18n/da.po index e3e1dbbc623..79872b27954 100644 --- a/addons/account_cancel/i18n/da.po +++ b/addons/account_cancel/i18n/da.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/de.po b/addons/account_cancel/i18n/de.po index ab71aa1f1e8..36d930f4d26 100644 --- a/addons/account_cancel/i18n/de.po +++ b/addons/account_cancel/i18n/de.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/el.po b/addons/account_cancel/i18n/el.po index 362241a2921..67dcbfd9d02 100644 --- a/addons/account_cancel/i18n/el.po +++ b/addons/account_cancel/i18n/el.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/en_GB.po b/addons/account_cancel/i18n/en_GB.po index 2beaf563e92..4394fc7d531 100644 --- a/addons/account_cancel/i18n/en_GB.po +++ b/addons/account_cancel/i18n/en_GB.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/es.po b/addons/account_cancel/i18n/es.po index 8c52e01938e..75da00b10c2 100644 --- a/addons/account_cancel/i18n/es.po +++ b/addons/account_cancel/i18n/es.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/es_CL.po b/addons/account_cancel/i18n/es_CL.po index 58beaaf867c..9e607f50651 100644 --- a/addons/account_cancel/i18n/es_CL.po +++ b/addons/account_cancel/i18n/es_CL.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/es_CR.po b/addons/account_cancel/i18n/es_CR.po index f9fb006598e..27d3422ab18 100644 --- a/addons/account_cancel/i18n/es_CR.po +++ b/addons/account_cancel/i18n/es_CR.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/account_cancel/i18n/es_EC.po b/addons/account_cancel/i18n/es_EC.po index 6b5200cfdfc..dfcc068a4f0 100644 --- a/addons/account_cancel/i18n/es_EC.po +++ b/addons/account_cancel/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/es_MX.po b/addons/account_cancel/i18n/es_MX.po index df10c892852..a813009db01 100644 --- a/addons/account_cancel/i18n/es_MX.po +++ b/addons/account_cancel/i18n/es_MX.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/es_PY.po b/addons/account_cancel/i18n/es_PY.po index 4ee53b76319..15f8bfcebe1 100644 --- a/addons/account_cancel/i18n/es_PY.po +++ b/addons/account_cancel/i18n/es_PY.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/fa.po b/addons/account_cancel/i18n/fa.po index df6a3e04868..7f54fcf4afe 100644 --- a/addons/account_cancel/i18n/fa.po +++ b/addons/account_cancel/i18n/fa.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/fi.po b/addons/account_cancel/i18n/fi.po index 41353b30b89..ed9ed08868d 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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/fr.po b/addons/account_cancel/i18n/fr.po index 81cea4af2ba..a5ddd548229 100644 --- a/addons/account_cancel/i18n/fr.po +++ b/addons/account_cancel/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/gl.po b/addons/account_cancel/i18n/gl.po index 3b49f80a9df..80770ece238 100644 --- a/addons/account_cancel/i18n/gl.po +++ b/addons/account_cancel/i18n/gl.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/gu.po b/addons/account_cancel/i18n/gu.po index d054f6ae9cd..0c608986421 100644 --- a/addons/account_cancel/i18n/gu.po +++ b/addons/account_cancel/i18n/gu.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/hi.po b/addons/account_cancel/i18n/hi.po index a5cc744712b..1c964ed4ae6 100644 --- a/addons/account_cancel/i18n/hi.po +++ b/addons/account_cancel/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/hr.po b/addons/account_cancel/i18n/hr.po index 0c06c5d2105..c852da9ac36 100644 --- a/addons/account_cancel/i18n/hr.po +++ b/addons/account_cancel/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/hu.po b/addons/account_cancel/i18n/hu.po index d7ebb1824da..6b63bb37bb2 100644 --- a/addons/account_cancel/i18n/hu.po +++ b/addons/account_cancel/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/id.po b/addons/account_cancel/i18n/id.po index 935d4d47532..5f2f04dac00 100644 --- a/addons/account_cancel/i18n/id.po +++ b/addons/account_cancel/i18n/id.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/it.po b/addons/account_cancel/i18n/it.po index f8a4746836c..49669baeda6 100644 --- a/addons/account_cancel/i18n/it.po +++ b/addons/account_cancel/i18n/it.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/ja.po b/addons/account_cancel/i18n/ja.po index 9a511834262..2633c1fe104 100644 --- a/addons/account_cancel/i18n/ja.po +++ b/addons/account_cancel/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/kk.po b/addons/account_cancel/i18n/kk.po index d4b20df9c29..0fada8b6012 100644 --- a/addons/account_cancel/i18n/kk.po +++ b/addons/account_cancel/i18n/kk.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/lo.po b/addons/account_cancel/i18n/lo.po index 464785c5541..51f38c5d641 100644 --- a/addons/account_cancel/i18n/lo.po +++ b/addons/account_cancel/i18n/lo.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/lt.po b/addons/account_cancel/i18n/lt.po index 224cd0510a9..751603fc823 100644 --- a/addons/account_cancel/i18n/lt.po +++ b/addons/account_cancel/i18n/lt.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/lv.po b/addons/account_cancel/i18n/lv.po index b41a1394638..816cd55496b 100644 --- a/addons/account_cancel/i18n/lv.po +++ b/addons/account_cancel/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/mk.po b/addons/account_cancel/i18n/mk.po index f6a6089f533..565258605c2 100644 --- a/addons/account_cancel/i18n/mk.po +++ b/addons/account_cancel/i18n/mk.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/mn.po b/addons/account_cancel/i18n/mn.po index 3c30b08edbd..951542fbb84 100644 --- a/addons/account_cancel/i18n/mn.po +++ b/addons/account_cancel/i18n/mn.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/nb.po b/addons/account_cancel/i18n/nb.po index 9f60922fab1..90bfd87ffbf 100644 --- a/addons/account_cancel/i18n/nb.po +++ b/addons/account_cancel/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/nl.po b/addons/account_cancel/i18n/nl.po index efe9d766ddc..c1873b0b4fd 100644 --- a/addons/account_cancel/i18n/nl.po +++ b/addons/account_cancel/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/nl_BE.po b/addons/account_cancel/i18n/nl_BE.po index 2364cf260b2..279eb922a62 100644 --- a/addons/account_cancel/i18n/nl_BE.po +++ b/addons/account_cancel/i18n/nl_BE.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/oc.po b/addons/account_cancel/i18n/oc.po index 3b19bbeb85c..75402c75648 100644 --- a/addons/account_cancel/i18n/oc.po +++ b/addons/account_cancel/i18n/oc.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/pl.po b/addons/account_cancel/i18n/pl.po index 5a521dee8e8..781b2bc5610 100644 --- a/addons/account_cancel/i18n/pl.po +++ b/addons/account_cancel/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/pt.po b/addons/account_cancel/i18n/pt.po index 43c873b4cb0..20603f3eaa8 100644 --- a/addons/account_cancel/i18n/pt.po +++ b/addons/account_cancel/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/pt_BR.po b/addons/account_cancel/i18n/pt_BR.po index fd8a1c9df4e..1ef6492edfe 100644 --- a/addons/account_cancel/i18n/pt_BR.po +++ b/addons/account_cancel/i18n/pt_BR.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/ro.po b/addons/account_cancel/i18n/ro.po index 0120d8b29af..6adf2791aca 100644 --- a/addons/account_cancel/i18n/ro.po +++ b/addons/account_cancel/i18n/ro.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/ru.po b/addons/account_cancel/i18n/ru.po index 8c78d1dc59a..77485b73c1a 100644 --- a/addons/account_cancel/i18n/ru.po +++ b/addons/account_cancel/i18n/ru.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/sl.po b/addons/account_cancel/i18n/sl.po index bee79641fa3..748f0a3053c 100644 --- a/addons/account_cancel/i18n/sl.po +++ b/addons/account_cancel/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/sq.po b/addons/account_cancel/i18n/sq.po index 037a1e0649a..04b7e213c5d 100644 --- a/addons/account_cancel/i18n/sq.po +++ b/addons/account_cancel/i18n/sq.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/sr.po b/addons/account_cancel/i18n/sr.po index 8a1fc825fbd..1dd65353a80 100644 --- a/addons/account_cancel/i18n/sr.po +++ b/addons/account_cancel/i18n/sr.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/sr@latin.po b/addons/account_cancel/i18n/sr@latin.po index 425aefe484a..804e48da484 100644 --- a/addons/account_cancel/i18n/sr@latin.po +++ b/addons/account_cancel/i18n/sr@latin.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/sv.po b/addons/account_cancel/i18n/sv.po index abd246f3800..f3958c9fce3 100644 --- a/addons/account_cancel/i18n/sv.po +++ b/addons/account_cancel/i18n/sv.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/ta.po b/addons/account_cancel/i18n/ta.po index 35512a7e9bb..6fe3b01cf78 100644 --- a/addons/account_cancel/i18n/ta.po +++ b/addons/account_cancel/i18n/ta.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/tr.po b/addons/account_cancel/i18n/tr.po index 5848ee0adf9..8be33609c0f 100644 --- a/addons/account_cancel/i18n/tr.po +++ b/addons/account_cancel/i18n/tr.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/vi.po b/addons/account_cancel/i18n/vi.po index d03d03d7054..8198e802022 100644 --- a/addons/account_cancel/i18n/vi.po +++ b/addons/account_cancel/i18n/vi.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/zh_CN.po b/addons/account_cancel/i18n/zh_CN.po index c2bfb606380..5a62e356c38 100644 --- a/addons/account_cancel/i18n/zh_CN.po +++ b/addons/account_cancel/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/zh_TW.po b/addons/account_cancel/i18n/zh_TW.po index 7b409de07d3..fe3176caa13 100644 --- a/addons/account_cancel/i18n/zh_TW.po +++ b/addons/account_cancel/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_cancel diff --git a/addons/account_chart/i18n/ar.po b/addons/account_chart/i18n/ar.po index 756228c1862..e791c7c54c9 100644 --- a/addons/account_chart/i18n/ar.po +++ b/addons/account_chart/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/bg.po b/addons/account_chart/i18n/bg.po index 5f105f0eff9..d31c966ebe2 100644 --- a/addons/account_chart/i18n/bg.po +++ b/addons/account_chart/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/bs.po b/addons/account_chart/i18n/bs.po index 51679b0822a..0d92a6556c5 100644 --- a/addons/account_chart/i18n/bs.po +++ b/addons/account_chart/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/ca.po b/addons/account_chart/i18n/ca.po index da88e6df1ef..87fed8c266b 100644 --- a/addons/account_chart/i18n/ca.po +++ b/addons/account_chart/i18n/ca.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/cs.po b/addons/account_chart/i18n/cs.po index 54b86b9c739..7063d7233dc 100644 --- a/addons/account_chart/i18n/cs.po +++ b/addons/account_chart/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/da.po b/addons/account_chart/i18n/da.po index 465be41ee86..6bffa78de64 100644 --- a/addons/account_chart/i18n/da.po +++ b/addons/account_chart/i18n/da.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/de.po b/addons/account_chart/i18n/de.po index dc7fa059b1e..a46cc4d3af7 100644 --- a/addons/account_chart/i18n/de.po +++ b/addons/account_chart/i18n/de.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/el.po b/addons/account_chart/i18n/el.po index 7960c179a0d..85aa787ffc6 100644 --- a/addons/account_chart/i18n/el.po +++ b/addons/account_chart/i18n/el.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/en_GB.po b/addons/account_chart/i18n/en_GB.po index 2a93e918b05..bd490568e83 100644 --- a/addons/account_chart/i18n/en_GB.po +++ b/addons/account_chart/i18n/en_GB.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/es.po b/addons/account_chart/i18n/es.po index d90a1d5d3e3..66d1cc7fc4b 100644 --- a/addons/account_chart/i18n/es.po +++ b/addons/account_chart/i18n/es.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/es_AR.po b/addons/account_chart/i18n/es_AR.po index 797087df5e7..6061ea372b5 100644 --- a/addons/account_chart/i18n/es_AR.po +++ b/addons/account_chart/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/es_CL.po b/addons/account_chart/i18n/es_CL.po index aeb112e02ea..f119ba9fae5 100644 --- a/addons/account_chart/i18n/es_CL.po +++ b/addons/account_chart/i18n/es_CL.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/es_CR.po b/addons/account_chart/i18n/es_CR.po index bdff1ed226f..45ef18bffbd 100644 --- a/addons/account_chart/i18n/es_CR.po +++ b/addons/account_chart/i18n/es_CR.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/account_chart/i18n/es_EC.po b/addons/account_chart/i18n/es_EC.po index b11c858e15a..06fc88f3a71 100644 --- a/addons/account_chart/i18n/es_EC.po +++ b/addons/account_chart/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/es_MX.po b/addons/account_chart/i18n/es_MX.po index 563554a2abf..8035b8a1cdf 100644 --- a/addons/account_chart/i18n/es_MX.po +++ b/addons/account_chart/i18n/es_MX.po @@ -15,7 +15,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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/es_PY.po b/addons/account_chart/i18n/es_PY.po index 53ec0df638b..f8c2346b813 100644 --- a/addons/account_chart/i18n/es_PY.po +++ b/addons/account_chart/i18n/es_PY.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/et.po b/addons/account_chart/i18n/et.po index c68d1a5bded..a50100e4df6 100644 --- a/addons/account_chart/i18n/et.po +++ b/addons/account_chart/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/eu.po b/addons/account_chart/i18n/eu.po index f5003e1becc..a7eed70c0a1 100644 --- a/addons/account_chart/i18n/eu.po +++ b/addons/account_chart/i18n/eu.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/fa.po b/addons/account_chart/i18n/fa.po index 155d98bdfd8..895b60033d0 100644 --- a/addons/account_chart/i18n/fa.po +++ b/addons/account_chart/i18n/fa.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/fi.po b/addons/account_chart/i18n/fi.po index 75a0fd0b938..b08fb20735a 100644 --- a/addons/account_chart/i18n/fi.po +++ b/addons/account_chart/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/fr.po b/addons/account_chart/i18n/fr.po index 7e846aab94b..198d899f915 100644 --- a/addons/account_chart/i18n/fr.po +++ b/addons/account_chart/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/gl.po b/addons/account_chart/i18n/gl.po index 2a56d08bf64..43ae6dc4345 100644 --- a/addons/account_chart/i18n/gl.po +++ b/addons/account_chart/i18n/gl.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/gu.po b/addons/account_chart/i18n/gu.po index 2a7cd494e61..d76d1e45c38 100644 --- a/addons/account_chart/i18n/gu.po +++ b/addons/account_chart/i18n/gu.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/hi.po b/addons/account_chart/i18n/hi.po index ad49b38bd61..ce2a91d06a9 100644 --- a/addons/account_chart/i18n/hi.po +++ b/addons/account_chart/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/hr.po b/addons/account_chart/i18n/hr.po index d4301e9cc93..3d359127db6 100644 --- a/addons/account_chart/i18n/hr.po +++ b/addons/account_chart/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/hu.po b/addons/account_chart/i18n/hu.po index 094f70400d7..20f62de045e 100644 --- a/addons/account_chart/i18n/hu.po +++ b/addons/account_chart/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/id.po b/addons/account_chart/i18n/id.po index 26f14b424ae..7dec16c02ba 100644 --- a/addons/account_chart/i18n/id.po +++ b/addons/account_chart/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/it.po b/addons/account_chart/i18n/it.po index 6b5b3ebbe4d..e331dd18749 100644 --- a/addons/account_chart/i18n/it.po +++ b/addons/account_chart/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/ja.po b/addons/account_chart/i18n/ja.po index 798f1b934b0..61497f75b7f 100644 --- a/addons/account_chart/i18n/ja.po +++ b/addons/account_chart/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/ko.po b/addons/account_chart/i18n/ko.po index 571613f8bac..2456e6b2876 100644 --- a/addons/account_chart/i18n/ko.po +++ b/addons/account_chart/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/lo.po b/addons/account_chart/i18n/lo.po index e4383c18403..33bba394f7c 100644 --- a/addons/account_chart/i18n/lo.po +++ b/addons/account_chart/i18n/lo.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/lt.po b/addons/account_chart/i18n/lt.po index b942d3a0996..8467e209195 100644 --- a/addons/account_chart/i18n/lt.po +++ b/addons/account_chart/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/lv.po b/addons/account_chart/i18n/lv.po index 5aad73f230b..ecae603551f 100644 --- a/addons/account_chart/i18n/lv.po +++ b/addons/account_chart/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/mk.po b/addons/account_chart/i18n/mk.po index 21484f06189..6fb26264a19 100644 --- a/addons/account_chart/i18n/mk.po +++ b/addons/account_chart/i18n/mk.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/mn.po b/addons/account_chart/i18n/mn.po index b51360f848a..bc9ffdeb3a8 100644 --- a/addons/account_chart/i18n/mn.po +++ b/addons/account_chart/i18n/mn.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/nb.po b/addons/account_chart/i18n/nb.po index 8b54d070e04..9e7502cfd77 100644 --- a/addons/account_chart/i18n/nb.po +++ b/addons/account_chart/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/nl.po b/addons/account_chart/i18n/nl.po index cc52241137d..b9ceb02b2bf 100644 --- a/addons/account_chart/i18n/nl.po +++ b/addons/account_chart/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/nl_BE.po b/addons/account_chart/i18n/nl_BE.po index cd2767b6e58..2d3cfa37ca0 100644 --- a/addons/account_chart/i18n/nl_BE.po +++ b/addons/account_chart/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/oc.po b/addons/account_chart/i18n/oc.po index b8f15c772ee..8f498048c58 100644 --- a/addons/account_chart/i18n/oc.po +++ b/addons/account_chart/i18n/oc.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/pl.po b/addons/account_chart/i18n/pl.po index 2fce6ed65d4..dffdbc5f3c3 100644 --- a/addons/account_chart/i18n/pl.po +++ b/addons/account_chart/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/pt.po b/addons/account_chart/i18n/pt.po index cfd60110b17..24498e6df82 100644 --- a/addons/account_chart/i18n/pt.po +++ b/addons/account_chart/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/pt_BR.po b/addons/account_chart/i18n/pt_BR.po index bdda7383e63..d8cbb502ad9 100644 --- a/addons/account_chart/i18n/pt_BR.po +++ b/addons/account_chart/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/ro.po b/addons/account_chart/i18n/ro.po index cdafa4dac62..c1b3a98ad68 100644 --- a/addons/account_chart/i18n/ro.po +++ b/addons/account_chart/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/ru.po b/addons/account_chart/i18n/ru.po index f23257581cd..0da9f51ea51 100644 --- a/addons/account_chart/i18n/ru.po +++ b/addons/account_chart/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/sk.po b/addons/account_chart/i18n/sk.po index e1abdaf2cd6..8327579a5e5 100644 --- a/addons/account_chart/i18n/sk.po +++ b/addons/account_chart/i18n/sk.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/sl.po b/addons/account_chart/i18n/sl.po index b5a14e4864f..82aa063fffe 100644 --- a/addons/account_chart/i18n/sl.po +++ b/addons/account_chart/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/sq.po b/addons/account_chart/i18n/sq.po index 5fc1de71c5f..20a171b4c3c 100644 --- a/addons/account_chart/i18n/sq.po +++ b/addons/account_chart/i18n/sq.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/sr.po b/addons/account_chart/i18n/sr.po index 6864e2c80bc..53bb599db48 100644 --- a/addons/account_chart/i18n/sr.po +++ b/addons/account_chart/i18n/sr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/sr@latin.po b/addons/account_chart/i18n/sr@latin.po index 36f74ae7ffc..ee621b57108 100644 --- a/addons/account_chart/i18n/sr@latin.po +++ b/addons/account_chart/i18n/sr@latin.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/sv.po b/addons/account_chart/i18n/sv.po index 63d561d82ee..9286a44f81f 100644 --- a/addons/account_chart/i18n/sv.po +++ b/addons/account_chart/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/ta.po b/addons/account_chart/i18n/ta.po index 40aef39226d..247ed3802d5 100644 --- a/addons/account_chart/i18n/ta.po +++ b/addons/account_chart/i18n/ta.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/th.po b/addons/account_chart/i18n/th.po index 26308522ddf..94df384df0c 100644 --- a/addons/account_chart/i18n/th.po +++ b/addons/account_chart/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/tr.po b/addons/account_chart/i18n/tr.po index 313e8013811..91a10446b81 100644 --- a/addons/account_chart/i18n/tr.po +++ b/addons/account_chart/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/uk.po b/addons/account_chart/i18n/uk.po index 3964c49f4b4..4d5b6f68d33 100644 --- a/addons/account_chart/i18n/uk.po +++ b/addons/account_chart/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/vi.po b/addons/account_chart/i18n/vi.po index c24db03e990..89bdf916f57 100644 --- a/addons/account_chart/i18n/vi.po +++ b/addons/account_chart/i18n/vi.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/zh_CN.po b/addons/account_chart/i18n/zh_CN.po index 864073a18d1..42fc8696005 100644 --- a/addons/account_chart/i18n/zh_CN.po +++ b/addons/account_chart/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_chart/i18n/zh_TW.po b/addons/account_chart/i18n/zh_TW.po index 2a991664243..eb1c304faca 100644 --- a/addons/account_chart/i18n/zh_TW.po +++ b/addons/account_chart/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_chart diff --git a/addons/account_check_writing/i18n/ar.po b/addons/account_check_writing/i18n/ar.po index fa4e8fae422..c07d586e1ba 100644 --- a/addons/account_check_writing/i18n/ar.po +++ b/addons/account_check_writing/i18n/ar.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/cs.po b/addons/account_check_writing/i18n/cs.po index 3b23e3fd5ee..147c35bf4a9 100644 --- a/addons/account_check_writing/i18n/cs.po +++ b/addons/account_check_writing/i18n/cs.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/de.po b/addons/account_check_writing/i18n/de.po index af459aa504f..d9b678dd237 100644 --- a/addons/account_check_writing/i18n/de.po +++ b/addons/account_check_writing/i18n/de.po @@ -15,7 +15,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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/en_GB.po b/addons/account_check_writing/i18n/en_GB.po index 430838ed713..5cfbd89687c 100644 --- a/addons/account_check_writing/i18n/en_GB.po +++ b/addons/account_check_writing/i18n/en_GB.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/es.po b/addons/account_check_writing/i18n/es.po index 58725217c40..20d0cca84c9 100644 --- a/addons/account_check_writing/i18n/es.po +++ b/addons/account_check_writing/i18n/es.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/es_CR.po b/addons/account_check_writing/i18n/es_CR.po index 0d7581aacf0..556abae21e4 100644 --- a/addons/account_check_writing/i18n/es_CR.po +++ b/addons/account_check_writing/i18n/es_CR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/es_EC.po b/addons/account_check_writing/i18n/es_EC.po index eb2cc7b821b..c3b827d8f42 100644 --- a/addons/account_check_writing/i18n/es_EC.po +++ b/addons/account_check_writing/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/es_MX.po b/addons/account_check_writing/i18n/es_MX.po index 9e4a1fcf109..e0499e30384 100644 --- a/addons/account_check_writing/i18n/es_MX.po +++ b/addons/account_check_writing/i18n/es_MX.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/fi.po b/addons/account_check_writing/i18n/fi.po index 418506bb3db..d719f4da53e 100644 --- a/addons/account_check_writing/i18n/fi.po +++ b/addons/account_check_writing/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/fr.po b/addons/account_check_writing/i18n/fr.po index 825d295dc98..de23aea7b9f 100644 --- a/addons/account_check_writing/i18n/fr.po +++ b/addons/account_check_writing/i18n/fr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/gu.po b/addons/account_check_writing/i18n/gu.po index 98d38250fde..e4428d2c96e 100644 --- a/addons/account_check_writing/i18n/gu.po +++ b/addons/account_check_writing/i18n/gu.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/hr.po b/addons/account_check_writing/i18n/hr.po index 90dd2a9e7c6..b674dbef542 100644 --- a/addons/account_check_writing/i18n/hr.po +++ b/addons/account_check_writing/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/ja.po b/addons/account_check_writing/i18n/ja.po index 56e7abac3b4..11bf5314025 100644 --- a/addons/account_check_writing/i18n/ja.po +++ b/addons/account_check_writing/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/lt.po b/addons/account_check_writing/i18n/lt.po index 142cee10b24..f7f77dcb0d7 100644 --- a/addons/account_check_writing/i18n/lt.po +++ b/addons/account_check_writing/i18n/lt.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/mk.po b/addons/account_check_writing/i18n/mk.po index 3e8c19bc918..ee265e8166b 100644 --- a/addons/account_check_writing/i18n/mk.po +++ b/addons/account_check_writing/i18n/mk.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/mn.po b/addons/account_check_writing/i18n/mn.po index 67c5e8069f9..da122c036b1 100644 --- a/addons/account_check_writing/i18n/mn.po +++ b/addons/account_check_writing/i18n/mn.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/nb.po b/addons/account_check_writing/i18n/nb.po index 6667dec2bd5..cb5806eed37 100644 --- a/addons/account_check_writing/i18n/nb.po +++ b/addons/account_check_writing/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/nl.po b/addons/account_check_writing/i18n/nl.po index b3e25b22e2a..a5213eb32d5 100644 --- a/addons/account_check_writing/i18n/nl.po +++ b/addons/account_check_writing/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/pl.po b/addons/account_check_writing/i18n/pl.po index c1dd6a251de..91a0008610a 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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/pt.po b/addons/account_check_writing/i18n/pt.po index 1dc3039af5c..66eacc8e492 100644 --- a/addons/account_check_writing/i18n/pt.po +++ b/addons/account_check_writing/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/pt_BR.po b/addons/account_check_writing/i18n/pt_BR.po index fc14ff1a227..462875b29e9 100644 --- a/addons/account_check_writing/i18n/pt_BR.po +++ b/addons/account_check_writing/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing @@ -92,7 +92,7 @@ msgstr "Diário" #: 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 "Escrever Cheques" +msgstr "Preencher Cheques" #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -116,7 +116,7 @@ msgstr "Modelo de Cheque" #. module: account_check_writing #: field:account.voucher,allow_check:0 msgid "Allow Check Writing" -msgstr "Permite escrever Cheques" +msgstr "Permite preencher Cheques" #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -133,7 +133,7 @@ msgstr "Usar cheques pré-impressos" #. module: account_check_writing #: model:ir.actions.report.xml,name:account_check_writing.account_print_check_bottom msgid "Print Check (Bottom)" -msgstr "Imprimir o Cheque" +msgstr "Imprimir o Cheque (Rodapé)" #. module: account_check_writing #: model:ir.actions.act_window,help:account_check_writing.action_write_check diff --git a/addons/account_check_writing/i18n/ro.po b/addons/account_check_writing/i18n/ro.po index a2829bdf273..b84ca947f43 100644 --- a/addons/account_check_writing/i18n/ro.po +++ b/addons/account_check_writing/i18n/ro.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/ru.po b/addons/account_check_writing/i18n/ru.po index f8ac7b9cc09..ba474c72a22 100644 --- a/addons/account_check_writing/i18n/ru.po +++ b/addons/account_check_writing/i18n/ru.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/sl.po b/addons/account_check_writing/i18n/sl.po index 6b2f8ef99c1..e1f991478ef 100644 --- a/addons/account_check_writing/i18n/sl.po +++ b/addons/account_check_writing/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/sr@latin.po b/addons/account_check_writing/i18n/sr@latin.po index 2d0b0e0e854..4140b959921 100644 --- a/addons/account_check_writing/i18n/sr@latin.po +++ b/addons/account_check_writing/i18n/sr@latin.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/sv.po b/addons/account_check_writing/i18n/sv.po index 67ef748f753..07e53b33448 100644 --- a/addons/account_check_writing/i18n/sv.po +++ b/addons/account_check_writing/i18n/sv.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/tr.po b/addons/account_check_writing/i18n/tr.po index a36f6efc705..938610c7a62 100644 --- a/addons/account_check_writing/i18n/tr.po +++ b/addons/account_check_writing/i18n/tr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\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 fe5b85327be..59bd10a21ad 100644 --- a/addons/account_check_writing/i18n/zh_CN.po +++ b/addons/account_check_writing/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/zh_TW.po b/addons/account_check_writing/i18n/zh_TW.po index 478fa6a8042..300d7b8dfbc 100644 --- a/addons/account_check_writing/i18n/zh_TW.po +++ b/addons/account_check_writing/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_check_writing diff --git a/addons/account_followup/i18n/ar.po b/addons/account_followup/i18n/ar.po index 3f1b8ca7e40..8ec196555ae 100644 --- a/addons/account_followup/i18n/ar.po +++ b/addons/account_followup/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/bg.po b/addons/account_followup/i18n/bg.po index 93d00af0f5b..2e9427e48f2 100644 --- a/addons/account_followup/i18n/bg.po +++ b/addons/account_followup/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/bs.po b/addons/account_followup/i18n/bs.po index 8a1da66cf1e..3f4f1842f5a 100644 --- a/addons/account_followup/i18n/bs.po +++ b/addons/account_followup/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/ca.po b/addons/account_followup/i18n/ca.po index 24c2cfb115d..07ddebde6c6 100644 --- a/addons/account_followup/i18n/ca.po +++ b/addons/account_followup/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/cs.po b/addons/account_followup/i18n/cs.po index 0eadbf9e66b..82e9f49777f 100644 --- a/addons/account_followup/i18n/cs.po +++ b/addons/account_followup/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/da.po b/addons/account_followup/i18n/da.po index 8fcc3fc67e0..023da2bbedb 100644 --- a/addons/account_followup/i18n/da.po +++ b/addons/account_followup/i18n/da.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/de.po b/addons/account_followup/i18n/de.po index 8408706c81a..185cbe55448 100644 --- a/addons/account_followup/i18n/de.po +++ b/addons/account_followup/i18n/de.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/el.po b/addons/account_followup/i18n/el.po index f14bc2866fa..edf3c5d33f1 100644 --- a/addons/account_followup/i18n/el.po +++ b/addons/account_followup/i18n/el.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/en_GB.po b/addons/account_followup/i18n/en_GB.po index a95f311a3fc..63a5dcdd945 100644 --- a/addons/account_followup/i18n/en_GB.po +++ b/addons/account_followup/i18n/en_GB.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/es.po b/addons/account_followup/i18n/es.po index f273e661101..e9ca44add9b 100644 --- a/addons/account_followup/i18n/es.po +++ b/addons/account_followup/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/es_AR.po b/addons/account_followup/i18n/es_AR.po index 63a02586c21..a942289a489 100644 --- a/addons/account_followup/i18n/es_AR.po +++ b/addons/account_followup/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/es_CR.po b/addons/account_followup/i18n/es_CR.po index b9233240723..464cbed727d 100644 --- a/addons/account_followup/i18n/es_CR.po +++ b/addons/account_followup/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/account_followup/i18n/es_EC.po b/addons/account_followup/i18n/es_EC.po index d4af908c231..45f300a756e 100644 --- a/addons/account_followup/i18n/es_EC.po +++ b/addons/account_followup/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/es_PY.po b/addons/account_followup/i18n/es_PY.po index 2f3974c8e43..f05f2f32a9f 100644 --- a/addons/account_followup/i18n/es_PY.po +++ b/addons/account_followup/i18n/es_PY.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/et.po b/addons/account_followup/i18n/et.po index 6f90370c51a..28f957f1dd0 100644 --- a/addons/account_followup/i18n/et.po +++ b/addons/account_followup/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/fa.po b/addons/account_followup/i18n/fa.po index 75a04389652..8c2bcc2a669 100644 --- a/addons/account_followup/i18n/fa.po +++ b/addons/account_followup/i18n/fa.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/fi.po b/addons/account_followup/i18n/fi.po index 6bb192e18f5..efbf58ed7aa 100644 --- a/addons/account_followup/i18n/fi.po +++ b/addons/account_followup/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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/fr.po b/addons/account_followup/i18n/fr.po index 3385100eaba..cb1903631fd 100644 --- a/addons/account_followup/i18n/fr.po +++ b/addons/account_followup/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/gl.po b/addons/account_followup/i18n/gl.po index f9417eafa84..257ef062041 100644 --- a/addons/account_followup/i18n/gl.po +++ b/addons/account_followup/i18n/gl.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/hr.po b/addons/account_followup/i18n/hr.po index 02a1b034099..551ff6be120 100644 --- a/addons/account_followup/i18n/hr.po +++ b/addons/account_followup/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/hu.po b/addons/account_followup/i18n/hu.po index 4aa83102da4..a8fc4f8963c 100644 --- a/addons/account_followup/i18n/hu.po +++ b/addons/account_followup/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/id.po b/addons/account_followup/i18n/id.po index 2503d35d094..784d5579875 100644 --- a/addons/account_followup/i18n/id.po +++ b/addons/account_followup/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/it.po b/addons/account_followup/i18n/it.po index a6587b870e7..1d7ce3f4db1 100644 --- a/addons/account_followup/i18n/it.po +++ b/addons/account_followup/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/ja.po b/addons/account_followup/i18n/ja.po index 734200dfce5..1c716d0b1c8 100644 --- a/addons/account_followup/i18n/ja.po +++ b/addons/account_followup/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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/ko.po b/addons/account_followup/i18n/ko.po index d2a16638151..d81f337d074 100644 --- a/addons/account_followup/i18n/ko.po +++ b/addons/account_followup/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/lt.po b/addons/account_followup/i18n/lt.po index 14ae710095a..8653b241ec3 100644 --- a/addons/account_followup/i18n/lt.po +++ b/addons/account_followup/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/mk.po b/addons/account_followup/i18n/mk.po index e49773101f4..8bbd00027a9 100644 --- a/addons/account_followup/i18n/mk.po +++ b/addons/account_followup/i18n/mk.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/mn.po b/addons/account_followup/i18n/mn.po index 9f92c807df7..a0af118a5e5 100644 --- a/addons/account_followup/i18n/mn.po +++ b/addons/account_followup/i18n/mn.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/nb.po b/addons/account_followup/i18n/nb.po index 66847c3928d..ca1e28e3cc7 100644 --- a/addons/account_followup/i18n/nb.po +++ b/addons/account_followup/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/nl.po b/addons/account_followup/i18n/nl.po index aca040d32b2..1616c7541ee 100644 --- a/addons/account_followup/i18n/nl.po +++ b/addons/account_followup/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup @@ -1185,7 +1185,7 @@ msgstr "Factuur" #. module: account_followup #: view:account_followup.followup.line:0 msgid "After" -msgstr "Erna" +msgstr "Na" #. module: account_followup #: view:account_followup.stat:0 diff --git a/addons/account_followup/i18n/nl_BE.po b/addons/account_followup/i18n/nl_BE.po index 373643ca67a..1a92e60dfc9 100644 --- a/addons/account_followup/i18n/nl_BE.po +++ b/addons/account_followup/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/oc.po b/addons/account_followup/i18n/oc.po index a0955f12496..14f3700f7cf 100644 --- a/addons/account_followup/i18n/oc.po +++ b/addons/account_followup/i18n/oc.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/pl.po b/addons/account_followup/i18n/pl.po index cbf79f02d24..4b4aa0aa66c 100644 --- a/addons/account_followup/i18n/pl.po +++ b/addons/account_followup/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/pt.po b/addons/account_followup/i18n/pt.po index 142e561d58d..01c057f9da9 100644 --- a/addons/account_followup/i18n/pt.po +++ b/addons/account_followup/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/pt_BR.po b/addons/account_followup/i18n/pt_BR.po index 61f6341c4df..d2ef1e8f6b8 100644 --- a/addons/account_followup/i18n/pt_BR.po +++ b/addons/account_followup/i18n/pt_BR.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/ro.po b/addons/account_followup/i18n/ro.po index 2bde8fb796f..96f220bd5e3 100644 --- a/addons/account_followup/i18n/ro.po +++ b/addons/account_followup/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/ru.po b/addons/account_followup/i18n/ru.po index 5c8bd538fb9..f6cb2cf0412 100644 --- a/addons/account_followup/i18n/ru.po +++ b/addons/account_followup/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/sl.po b/addons/account_followup/i18n/sl.po index 7f4c51172ee..f2317d159a1 100644 --- a/addons/account_followup/i18n/sl.po +++ b/addons/account_followup/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/sq.po b/addons/account_followup/i18n/sq.po index 84f71ff633b..d0065c04831 100644 --- a/addons/account_followup/i18n/sq.po +++ b/addons/account_followup/i18n/sq.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/sr.po b/addons/account_followup/i18n/sr.po index 63b9f2f0e6d..a6ab47df33b 100644 --- a/addons/account_followup/i18n/sr.po +++ b/addons/account_followup/i18n/sr.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/sr@latin.po b/addons/account_followup/i18n/sr@latin.po index 109a3b0aa8c..db9b57fca03 100644 --- a/addons/account_followup/i18n/sr@latin.po +++ b/addons/account_followup/i18n/sr@latin.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/sv.po b/addons/account_followup/i18n/sv.po index b693d984835..c409a296386 100644 --- a/addons/account_followup/i18n/sv.po +++ b/addons/account_followup/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/tlh.po b/addons/account_followup/i18n/tlh.po index ac818ece426..6e40aaf4eba 100644 --- a/addons/account_followup/i18n/tlh.po +++ b/addons/account_followup/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/tr.po b/addons/account_followup/i18n/tr.po index e242251636a..c6eadc0e05c 100644 --- a/addons/account_followup/i18n/tr.po +++ b/addons/account_followup/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/uk.po b/addons/account_followup/i18n/uk.po index ef5f9d7fc23..568999316af 100644 --- a/addons/account_followup/i18n/uk.po +++ b/addons/account_followup/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/vi.po b/addons/account_followup/i18n/vi.po index 739df212a86..594a0ae6c05 100644 --- a/addons/account_followup/i18n/vi.po +++ b/addons/account_followup/i18n/vi.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/zh_CN.po b/addons/account_followup/i18n/zh_CN.po index df528fe4d16..eaf33ff4734 100644 --- a/addons/account_followup/i18n/zh_CN.po +++ b/addons/account_followup/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_followup/i18n/zh_TW.po b/addons/account_followup/i18n/zh_TW.po index 736b114513b..50e929c4b79 100644 --- a/addons/account_followup/i18n/zh_TW.po +++ b/addons/account_followup/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_followup diff --git a/addons/account_payment/i18n/am.po b/addons/account_payment/i18n/am.po index 343a590a03e..8fd61969110 100644 --- a/addons/account_payment/i18n/am.po +++ b/addons/account_payment/i18n/am.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/ar.po b/addons/account_payment/i18n/ar.po index db97a5a1730..129285d2d01 100644 --- a/addons/account_payment/i18n/ar.po +++ b/addons/account_payment/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/bg.po b/addons/account_payment/i18n/bg.po index 84a9b8b83e2..190cce18c5f 100644 --- a/addons/account_payment/i18n/bg.po +++ b/addons/account_payment/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/bs.po b/addons/account_payment/i18n/bs.po index a958f6843e1..c7e3077fbec 100644 --- a/addons/account_payment/i18n/bs.po +++ b/addons/account_payment/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/ca.po b/addons/account_payment/i18n/ca.po index 7f6f9b78dae..b85ce630619 100644 --- a/addons/account_payment/i18n/ca.po +++ b/addons/account_payment/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/cs.po b/addons/account_payment/i18n/cs.po index f59f4392e72..1f5cdd54ed0 100644 --- a/addons/account_payment/i18n/cs.po +++ b/addons/account_payment/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/da.po b/addons/account_payment/i18n/da.po index 22a44a2f4a6..3e1ff5011bb 100644 --- a/addons/account_payment/i18n/da.po +++ b/addons/account_payment/i18n/da.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/de.po b/addons/account_payment/i18n/de.po index 76e7b401332..600c52876c6 100644 --- a/addons/account_payment/i18n/de.po +++ b/addons/account_payment/i18n/de.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/el.po b/addons/account_payment/i18n/el.po index 8e75d284ed4..7b4f0596033 100644 --- a/addons/account_payment/i18n/el.po +++ b/addons/account_payment/i18n/el.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/en_GB.po b/addons/account_payment/i18n/en_GB.po index 338d41b34f6..71700f79289 100644 --- a/addons/account_payment/i18n/en_GB.po +++ b/addons/account_payment/i18n/en_GB.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/es.po b/addons/account_payment/i18n/es.po index 5ba4acd6e23..b86f24ed658 100644 --- a/addons/account_payment/i18n/es.po +++ b/addons/account_payment/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/es_AR.po b/addons/account_payment/i18n/es_AR.po index 8034bf32bf6..7fb69b50f9b 100644 --- a/addons/account_payment/i18n/es_AR.po +++ b/addons/account_payment/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/es_CL.po b/addons/account_payment/i18n/es_CL.po index 57bca6422f6..585519b067e 100644 --- a/addons/account_payment/i18n/es_CL.po +++ b/addons/account_payment/i18n/es_CL.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/es_CR.po b/addons/account_payment/i18n/es_CR.po index cd314643ef8..1d557fddb15 100644 --- a/addons/account_payment/i18n/es_CR.po +++ b/addons/account_payment/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/account_payment/i18n/es_EC.po b/addons/account_payment/i18n/es_EC.po index 7c9531699ac..8451c52d09e 100644 --- a/addons/account_payment/i18n/es_EC.po +++ b/addons/account_payment/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/es_PY.po b/addons/account_payment/i18n/es_PY.po index a886f6f5b87..69ec01e455f 100644 --- a/addons/account_payment/i18n/es_PY.po +++ b/addons/account_payment/i18n/es_PY.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/et.po b/addons/account_payment/i18n/et.po index f14905ac2ce..e94b2732ebc 100644 --- a/addons/account_payment/i18n/et.po +++ b/addons/account_payment/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/fa.po b/addons/account_payment/i18n/fa.po index 4b4af024bcf..35e735be625 100644 --- a/addons/account_payment/i18n/fa.po +++ b/addons/account_payment/i18n/fa.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/fi.po b/addons/account_payment/i18n/fi.po index 78301af0c45..21c1eb488d1 100644 --- a/addons/account_payment/i18n/fi.po +++ b/addons/account_payment/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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/fr.po b/addons/account_payment/i18n/fr.po index b824c989649..d4b4dae0eba 100644 --- a/addons/account_payment/i18n/fr.po +++ b/addons/account_payment/i18n/fr.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #~ msgid "Total debit" diff --git a/addons/account_payment/i18n/gl.po b/addons/account_payment/i18n/gl.po index f80fb197dda..c885d181557 100644 --- a/addons/account_payment/i18n/gl.po +++ b/addons/account_payment/i18n/gl.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/hi.po b/addons/account_payment/i18n/hi.po index 1989d3e5264..13942a37dba 100644 --- a/addons/account_payment/i18n/hi.po +++ b/addons/account_payment/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/hr.po b/addons/account_payment/i18n/hr.po index 32ef27ed54a..eb9f92a7f8f 100644 --- a/addons/account_payment/i18n/hr.po +++ b/addons/account_payment/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/hu.po b/addons/account_payment/i18n/hu.po index 5796e5d6353..d45c8e42485 100644 --- a/addons/account_payment/i18n/hu.po +++ b/addons/account_payment/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/id.po b/addons/account_payment/i18n/id.po index 01d61a1d5a5..7d5c3e49d81 100644 --- a/addons/account_payment/i18n/id.po +++ b/addons/account_payment/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/it.po b/addons/account_payment/i18n/it.po index 743db002d46..6f9ae609688 100644 --- a/addons/account_payment/i18n/it.po +++ b/addons/account_payment/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/ja.po b/addons/account_payment/i18n/ja.po index b3384b8e9a8..69b0e5a799f 100644 --- a/addons/account_payment/i18n/ja.po +++ b/addons/account_payment/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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/ko.po b/addons/account_payment/i18n/ko.po index af9d6c7baee..5637d35f689 100644 --- a/addons/account_payment/i18n/ko.po +++ b/addons/account_payment/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/lt.po b/addons/account_payment/i18n/lt.po index a0db346e030..46431d36f07 100644 --- a/addons/account_payment/i18n/lt.po +++ b/addons/account_payment/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/lv.po b/addons/account_payment/i18n/lv.po index cb8a4592155..0c36de0a6f1 100644 --- a/addons/account_payment/i18n/lv.po +++ b/addons/account_payment/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/mk.po b/addons/account_payment/i18n/mk.po index 134db8ecfa1..5ff6085f296 100644 --- a/addons/account_payment/i18n/mk.po +++ b/addons/account_payment/i18n/mk.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/mn.po b/addons/account_payment/i18n/mn.po index 46362b757ab..94005639e2a 100644 --- a/addons/account_payment/i18n/mn.po +++ b/addons/account_payment/i18n/mn.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/nb.po b/addons/account_payment/i18n/nb.po index a0c78b77aa1..7209f6dd72d 100644 --- a/addons/account_payment/i18n/nb.po +++ b/addons/account_payment/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/nl.po b/addons/account_payment/i18n/nl.po index dddc1fae074..854eda95696 100644 --- a/addons/account_payment/i18n/nl.po +++ b/addons/account_payment/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/nl_BE.po b/addons/account_payment/i18n/nl_BE.po index 57af0a1e93c..8b7f1263ffd 100644 --- a/addons/account_payment/i18n/nl_BE.po +++ b/addons/account_payment/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/oc.po b/addons/account_payment/i18n/oc.po index 27f3aba1d78..5f904eb907d 100644 --- a/addons/account_payment/i18n/oc.po +++ b/addons/account_payment/i18n/oc.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/pl.po b/addons/account_payment/i18n/pl.po index 2659c38d601..949993a2819 100644 --- a/addons/account_payment/i18n/pl.po +++ b/addons/account_payment/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/pt.po b/addons/account_payment/i18n/pt.po index 61c444bbaea..05862b11fb9 100644 --- a/addons/account_payment/i18n/pt.po +++ b/addons/account_payment/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/pt_BR.po b/addons/account_payment/i18n/pt_BR.po index 19dd01ab4ef..25de1343d0a 100644 --- a/addons/account_payment/i18n/pt_BR.po +++ b/addons/account_payment/i18n/pt_BR.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/ro.po b/addons/account_payment/i18n/ro.po index db36586752c..24894fd0792 100644 --- a/addons/account_payment/i18n/ro.po +++ b/addons/account_payment/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/ru.po b/addons/account_payment/i18n/ru.po index 6118e26fd95..2123498e3bd 100644 --- a/addons/account_payment/i18n/ru.po +++ b/addons/account_payment/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/sl.po b/addons/account_payment/i18n/sl.po index 3da6e1c2ac8..394d85542b0 100644 --- a/addons/account_payment/i18n/sl.po +++ b/addons/account_payment/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/sq.po b/addons/account_payment/i18n/sq.po index 53c5a6b62ab..9cb9aeeea71 100644 --- a/addons/account_payment/i18n/sq.po +++ b/addons/account_payment/i18n/sq.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/sr.po b/addons/account_payment/i18n/sr.po index 22330201a0e..ea67ccbb86c 100644 --- a/addons/account_payment/i18n/sr.po +++ b/addons/account_payment/i18n/sr.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/sr@latin.po b/addons/account_payment/i18n/sr@latin.po index 047daf94890..425ab04ac55 100644 --- a/addons/account_payment/i18n/sr@latin.po +++ b/addons/account_payment/i18n/sr@latin.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/sv.po b/addons/account_payment/i18n/sv.po index e36432a3cbe..9ec14ce1022 100644 --- a/addons/account_payment/i18n/sv.po +++ b/addons/account_payment/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/tlh.po b/addons/account_payment/i18n/tlh.po index 5b827469eb4..2b9a232ad0d 100644 --- a/addons/account_payment/i18n/tlh.po +++ b/addons/account_payment/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/tr.po b/addons/account_payment/i18n/tr.po index f5a80e2dd63..b895415a1ee 100644 --- a/addons/account_payment/i18n/tr.po +++ b/addons/account_payment/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/uk.po b/addons/account_payment/i18n/uk.po index 853bea36558..6a80b9bbf13 100644 --- a/addons/account_payment/i18n/uk.po +++ b/addons/account_payment/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/vi.po b/addons/account_payment/i18n/vi.po index 8e6068e3b61..5dba538ba7a 100644 --- a/addons/account_payment/i18n/vi.po +++ b/addons/account_payment/i18n/vi.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/zh_CN.po b/addons/account_payment/i18n/zh_CN.po index 7f3b4e6fd99..c5ef90562c1 100644 --- a/addons/account_payment/i18n/zh_CN.po +++ b/addons/account_payment/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_payment/i18n/zh_TW.po b/addons/account_payment/i18n/zh_TW.po index 1e777866a3a..a1df089aa02 100644 --- a/addons/account_payment/i18n/zh_TW.po +++ b/addons/account_payment/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:26+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_payment diff --git a/addons/account_sequence/i18n/ar.po b/addons/account_sequence/i18n/ar.po index 453f8b1d9e5..0c06417692c 100644 --- a/addons/account_sequence/i18n/ar.po +++ b/addons/account_sequence/i18n/ar.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/bg.po b/addons/account_sequence/i18n/bg.po index c02f3203b91..e7af967b3c0 100644 --- a/addons/account_sequence/i18n/bg.po +++ b/addons/account_sequence/i18n/bg.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/ca.po b/addons/account_sequence/i18n/ca.po index 204849ce718..30898d35bf6 100644 --- a/addons/account_sequence/i18n/ca.po +++ b/addons/account_sequence/i18n/ca.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/da.po b/addons/account_sequence/i18n/da.po index 3f20a62c7dd..42d464ad61a 100644 --- a/addons/account_sequence/i18n/da.po +++ b/addons/account_sequence/i18n/da.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/de.po b/addons/account_sequence/i18n/de.po index 5f9e19fa3a4..6b791bfc622 100644 --- a/addons/account_sequence/i18n/de.po +++ b/addons/account_sequence/i18n/de.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/el.po b/addons/account_sequence/i18n/el.po index 37caacc691b..c15be4f9cfd 100644 --- a/addons/account_sequence/i18n/el.po +++ b/addons/account_sequence/i18n/el.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/en_GB.po b/addons/account_sequence/i18n/en_GB.po index 951ed8f494e..bf7439640b3 100644 --- a/addons/account_sequence/i18n/en_GB.po +++ b/addons/account_sequence/i18n/en_GB.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/es.po b/addons/account_sequence/i18n/es.po index 72f09ffa349..6fce2892620 100644 --- a/addons/account_sequence/i18n/es.po +++ b/addons/account_sequence/i18n/es.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/es_CR.po b/addons/account_sequence/i18n/es_CR.po index 79fabb10926..7288d0fa81f 100644 --- a/addons/account_sequence/i18n/es_CR.po +++ b/addons/account_sequence/i18n/es_CR.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/account_sequence/i18n/es_EC.po b/addons/account_sequence/i18n/es_EC.po index 1b13f6b0fbf..c1941a4ba70 100644 --- a/addons/account_sequence/i18n/es_EC.po +++ b/addons/account_sequence/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/es_PY.po b/addons/account_sequence/i18n/es_PY.po index 9fc1352081f..938a532d9c5 100644 --- a/addons/account_sequence/i18n/es_PY.po +++ b/addons/account_sequence/i18n/es_PY.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/fa.po b/addons/account_sequence/i18n/fa.po index df643212303..d549cc03d83 100644 --- a/addons/account_sequence/i18n/fa.po +++ b/addons/account_sequence/i18n/fa.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/fr.po b/addons/account_sequence/i18n/fr.po index 58581673dad..436cdc48684 100644 --- a/addons/account_sequence/i18n/fr.po +++ b/addons/account_sequence/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/gl.po b/addons/account_sequence/i18n/gl.po index faed6788a5b..d868fac0711 100644 --- a/addons/account_sequence/i18n/gl.po +++ b/addons/account_sequence/i18n/gl.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/hr.po b/addons/account_sequence/i18n/hr.po index b4d7985c01c..176491b09f6 100644 --- a/addons/account_sequence/i18n/hr.po +++ b/addons/account_sequence/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/hu.po b/addons/account_sequence/i18n/hu.po index cade8cdf4e5..27f107b7bd6 100644 --- a/addons/account_sequence/i18n/hu.po +++ b/addons/account_sequence/i18n/hu.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/id.po b/addons/account_sequence/i18n/id.po index c9cd0eb3849..5828dd35f4c 100644 --- a/addons/account_sequence/i18n/id.po +++ b/addons/account_sequence/i18n/id.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/it.po b/addons/account_sequence/i18n/it.po index 3585a81be95..060cbb28ce1 100644 --- a/addons/account_sequence/i18n/it.po +++ b/addons/account_sequence/i18n/it.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/ja.po b/addons/account_sequence/i18n/ja.po index aa180bd44e8..ee4d49ef41b 100644 --- a/addons/account_sequence/i18n/ja.po +++ b/addons/account_sequence/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/lv.po b/addons/account_sequence/i18n/lv.po index f049d5ea779..79e7b6dc322 100644 --- a/addons/account_sequence/i18n/lv.po +++ b/addons/account_sequence/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/mk.po b/addons/account_sequence/i18n/mk.po index 493c9ee802c..ed2ecc175be 100644 --- a/addons/account_sequence/i18n/mk.po +++ b/addons/account_sequence/i18n/mk.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/mn.po b/addons/account_sequence/i18n/mn.po index 45730e62b72..368ed342f93 100644 --- a/addons/account_sequence/i18n/mn.po +++ b/addons/account_sequence/i18n/mn.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/nb.po b/addons/account_sequence/i18n/nb.po index 4580b87dce9..c96a43a86c1 100644 --- a/addons/account_sequence/i18n/nb.po +++ b/addons/account_sequence/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/nl.po b/addons/account_sequence/i18n/nl.po index 4a77b204682..096dc7284c7 100644 --- a/addons/account_sequence/i18n/nl.po +++ b/addons/account_sequence/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/nl_BE.po b/addons/account_sequence/i18n/nl_BE.po index 5a4349565e2..58d707ee477 100644 --- a/addons/account_sequence/i18n/nl_BE.po +++ b/addons/account_sequence/i18n/nl_BE.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/pl.po b/addons/account_sequence/i18n/pl.po index 8dae9efcc43..d4f5c3ee7aa 100644 --- a/addons/account_sequence/i18n/pl.po +++ b/addons/account_sequence/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/pt.po b/addons/account_sequence/i18n/pt.po index 1dd6ffaa4aa..0cd6990533a 100644 --- a/addons/account_sequence/i18n/pt.po +++ b/addons/account_sequence/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/pt_BR.po b/addons/account_sequence/i18n/pt_BR.po index 5b105f8adb6..22636cf9e8f 100644 --- a/addons/account_sequence/i18n/pt_BR.po +++ b/addons/account_sequence/i18n/pt_BR.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/ro.po b/addons/account_sequence/i18n/ro.po index 466ab11ba43..d9df352872c 100644 --- a/addons/account_sequence/i18n/ro.po +++ b/addons/account_sequence/i18n/ro.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/ru.po b/addons/account_sequence/i18n/ru.po index 0896d8eaffb..5c041748b31 100644 --- a/addons/account_sequence/i18n/ru.po +++ b/addons/account_sequence/i18n/ru.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/sl.po b/addons/account_sequence/i18n/sl.po index 2e233aa6789..9464d9b2553 100644 --- a/addons/account_sequence/i18n/sl.po +++ b/addons/account_sequence/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/sq.po b/addons/account_sequence/i18n/sq.po index 3e618574323..e0460b08b28 100644 --- a/addons/account_sequence/i18n/sq.po +++ b/addons/account_sequence/i18n/sq.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/sr@latin.po b/addons/account_sequence/i18n/sr@latin.po index ca456764d45..be3b460209f 100644 --- a/addons/account_sequence/i18n/sr@latin.po +++ b/addons/account_sequence/i18n/sr@latin.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/sv.po b/addons/account_sequence/i18n/sv.po index 753e4e9a194..da3ce321fde 100644 --- a/addons/account_sequence/i18n/sv.po +++ b/addons/account_sequence/i18n/sv.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/tr.po b/addons/account_sequence/i18n/tr.po index 7e3b71ebec0..83a26eeefa9 100644 --- a/addons/account_sequence/i18n/tr.po +++ b/addons/account_sequence/i18n/tr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/vi.po b/addons/account_sequence/i18n/vi.po index 700c9b0336e..132ad7e7026 100644 --- a/addons/account_sequence/i18n/vi.po +++ b/addons/account_sequence/i18n/vi.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/zh_CN.po b/addons/account_sequence/i18n/zh_CN.po index f573399ce1a..d38db61e87e 100644 --- a/addons/account_sequence/i18n/zh_CN.po +++ b/addons/account_sequence/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/zh_TW.po b/addons/account_sequence/i18n/zh_TW.po index b8ad4e55226..a64047e614a 100644 --- a/addons/account_sequence/i18n/zh_TW.po +++ b/addons/account_sequence/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_sequence diff --git a/addons/account_test/i18n/ar.po b/addons/account_test/i18n/ar.po index 7b6e189ff6b..164ab18e362 100644 --- a/addons/account_test/i18n/ar.po +++ b/addons/account_test/i18n/ar.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/en_GB.po b/addons/account_test/i18n/en_GB.po index 41f25c0a2a4..cdc49d79f7c 100644 --- a/addons/account_test/i18n/en_GB.po +++ b/addons/account_test/i18n/en_GB.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/es.po b/addons/account_test/i18n/es.po index 1d00df83659..c02014b8113 100644 --- a/addons/account_test/i18n/es.po +++ b/addons/account_test/i18n/es.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/fr.po b/addons/account_test/i18n/fr.po index 3c89354d8d2..8e8f4c9c6b1 100644 --- a/addons/account_test/i18n/fr.po +++ b/addons/account_test/i18n/fr.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/hr.po b/addons/account_test/i18n/hr.po index 1750c70f534..275241481ad 100644 --- a/addons/account_test/i18n/hr.po +++ b/addons/account_test/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/it.po b/addons/account_test/i18n/it.po index cfe87bebd81..63fa483a331 100644 --- a/addons/account_test/i18n/it.po +++ b/addons/account_test/i18n/it.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/mk.po b/addons/account_test/i18n/mk.po index 2413f25f04b..d43db78b079 100644 --- a/addons/account_test/i18n/mk.po +++ b/addons/account_test/i18n/mk.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/mn.po b/addons/account_test/i18n/mn.po index 8f5310890b5..97b33c00beb 100644 --- a/addons/account_test/i18n/mn.po +++ b/addons/account_test/i18n/mn.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/nb.po b/addons/account_test/i18n/nb.po index 70455517bda..e3535a79897 100644 --- a/addons/account_test/i18n/nb.po +++ b/addons/account_test/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/nl.po b/addons/account_test/i18n/nl.po index 94cb298b397..9b6fd444d5c 100644 --- a/addons/account_test/i18n/nl.po +++ b/addons/account_test/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/pt.po b/addons/account_test/i18n/pt.po index 5f533420f43..7ffb7b9a90c 100644 --- a/addons/account_test/i18n/pt.po +++ b/addons/account_test/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/pt_BR.po b/addons/account_test/i18n/pt_BR.po index ba8eb754199..52cc90db120 100644 --- a/addons/account_test/i18n/pt_BR.po +++ b/addons/account_test/i18n/pt_BR.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/ro.po b/addons/account_test/i18n/ro.po index 618073f81c2..e637e781eb4 100644 --- a/addons/account_test/i18n/ro.po +++ b/addons/account_test/i18n/ro.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/sl.po b/addons/account_test/i18n/sl.po index 250ed90b36c..7467cbbcb6e 100644 --- a/addons/account_test/i18n/sl.po +++ b/addons/account_test/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_test/i18n/tr.po b/addons/account_test/i18n/tr.po index f45260375c6..8fa008c73cd 100644 --- a/addons/account_test/i18n/tr.po +++ b/addons/account_test/i18n/tr.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_test diff --git a/addons/account_voucher/i18n/ar.po b/addons/account_voucher/i18n/ar.po index 55f95322089..f5229846c3e 100644 --- a/addons/account_voucher/i18n/ar.po +++ b/addons/account_voucher/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/bg.po b/addons/account_voucher/i18n/bg.po index 43e79f5f7dd..40067995db1 100644 --- a/addons/account_voucher/i18n/bg.po +++ b/addons/account_voucher/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/bs.po b/addons/account_voucher/i18n/bs.po index 1302d587e91..d4be7c9d091 100644 --- a/addons/account_voucher/i18n/bs.po +++ b/addons/account_voucher/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/ca.po b/addons/account_voucher/i18n/ca.po index bae18fa3523..828ef6e25ac 100644 --- a/addons/account_voucher/i18n/ca.po +++ b/addons/account_voucher/i18n/ca.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/cs.po b/addons/account_voucher/i18n/cs.po index 04a7ac45d1f..5b253a3fe7e 100644 --- a/addons/account_voucher/i18n/cs.po +++ b/addons/account_voucher/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/da.po b/addons/account_voucher/i18n/da.po index 16fafec51b2..76c18f883c6 100644 --- a/addons/account_voucher/i18n/da.po +++ b/addons/account_voucher/i18n/da.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/de.po b/addons/account_voucher/i18n/de.po index 1cbb778b39f..c61bb01483b 100644 --- a/addons/account_voucher/i18n/de.po +++ b/addons/account_voucher/i18n/de.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/el.po b/addons/account_voucher/i18n/el.po index 0cbaf2f9df4..f2793dd33e0 100644 --- a/addons/account_voucher/i18n/el.po +++ b/addons/account_voucher/i18n/el.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/en_GB.po b/addons/account_voucher/i18n/en_GB.po index 1b2d0f95574..426bcd8b2f7 100644 --- a/addons/account_voucher/i18n/en_GB.po +++ b/addons/account_voucher/i18n/en_GB.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/es.po b/addons/account_voucher/i18n/es.po index bfa7cc963ef..8fec335419f 100644 --- a/addons/account_voucher/i18n/es.po +++ b/addons/account_voucher/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/es_AR.po b/addons/account_voucher/i18n/es_AR.po index 99d39efe76a..266168bd33d 100644 --- a/addons/account_voucher/i18n/es_AR.po +++ b/addons/account_voucher/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/es_CR.po b/addons/account_voucher/i18n/es_CR.po index 3a9f961b835..14ace8540e9 100644 --- a/addons/account_voucher/i18n/es_CR.po +++ b/addons/account_voucher/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/account_voucher/i18n/es_EC.po b/addons/account_voucher/i18n/es_EC.po index 1245b1f38bb..c1faa2ae30c 100644 --- a/addons/account_voucher/i18n/es_EC.po +++ b/addons/account_voucher/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/es_PY.po b/addons/account_voucher/i18n/es_PY.po index 7cdf21ba87f..50b923abc09 100644 --- a/addons/account_voucher/i18n/es_PY.po +++ b/addons/account_voucher/i18n/es_PY.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/et.po b/addons/account_voucher/i18n/et.po index fa58bcb895f..787f2184858 100644 --- a/addons/account_voucher/i18n/et.po +++ b/addons/account_voucher/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #~ msgid "Bank Receipt Voucher" diff --git a/addons/account_voucher/i18n/fa.po b/addons/account_voucher/i18n/fa.po index 38a77734b13..66dae12e4cd 100644 --- a/addons/account_voucher/i18n/fa.po +++ b/addons/account_voucher/i18n/fa.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/fr.po b/addons/account_voucher/i18n/fr.po index 87ca79b7023..e4919f7c687 100644 --- a/addons/account_voucher/i18n/fr.po +++ b/addons/account_voucher/i18n/fr.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/gl.po b/addons/account_voucher/i18n/gl.po index 3e40187d4c2..2be40946ee3 100644 --- a/addons/account_voucher/i18n/gl.po +++ b/addons/account_voucher/i18n/gl.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/gu.po b/addons/account_voucher/i18n/gu.po index 923078ee1d0..effc88bf54b 100644 --- a/addons/account_voucher/i18n/gu.po +++ b/addons/account_voucher/i18n/gu.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/hi.po b/addons/account_voucher/i18n/hi.po index 68480985158..7226233f625 100644 --- a/addons/account_voucher/i18n/hi.po +++ b/addons/account_voucher/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/hr.po b/addons/account_voucher/i18n/hr.po index 653edb121e1..6e16eb61f49 100644 --- a/addons/account_voucher/i18n/hr.po +++ b/addons/account_voucher/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/hu.po b/addons/account_voucher/i18n/hu.po index ac06b18ca04..12f12ce6eb9 100644 --- a/addons/account_voucher/i18n/hu.po +++ b/addons/account_voucher/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/id.po b/addons/account_voucher/i18n/id.po index b5b677fbdfb..ab7c31a1f52 100644 --- a/addons/account_voucher/i18n/id.po +++ b/addons/account_voucher/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/it.po b/addons/account_voucher/i18n/it.po index dead85e601f..8a4145856fa 100644 --- a/addons/account_voucher/i18n/it.po +++ b/addons/account_voucher/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/ja.po b/addons/account_voucher/i18n/ja.po index ff8719e39f2..a23129dcec2 100644 --- a/addons/account_voucher/i18n/ja.po +++ b/addons/account_voucher/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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/ko.po b/addons/account_voucher/i18n/ko.po index 274b80d0d1d..ecc6045a5b5 100644 --- a/addons/account_voucher/i18n/ko.po +++ b/addons/account_voucher/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/lt.po b/addons/account_voucher/i18n/lt.po index c36a0338ae7..b930f9ad1aa 100644 --- a/addons/account_voucher/i18n/lt.po +++ b/addons/account_voucher/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/mk.po b/addons/account_voucher/i18n/mk.po index f378ee92713..1345aa5d6e7 100644 --- a/addons/account_voucher/i18n/mk.po +++ b/addons/account_voucher/i18n/mk.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/mn.po b/addons/account_voucher/i18n/mn.po index 1dcd46a36bf..02c3a4a0c76 100644 --- a/addons/account_voucher/i18n/mn.po +++ b/addons/account_voucher/i18n/mn.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/nb.po b/addons/account_voucher/i18n/nb.po index 5ab20e6d752..fad3cfe5853 100644 --- a/addons/account_voucher/i18n/nb.po +++ b/addons/account_voucher/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/nl.po b/addons/account_voucher/i18n/nl.po index b0752196640..9842be54abd 100644 --- a/addons/account_voucher/i18n/nl.po +++ b/addons/account_voucher/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher @@ -65,7 +65,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "(Update)" +msgstr "(bijwerken)" #. module: account_voucher #: view:account.voucher:0 @@ -349,7 +349,7 @@ msgstr "Betalingsinformatie" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "(update)" +msgstr "(bijwerken)" #. module: account_voucher #: view:account.voucher:0 diff --git a/addons/account_voucher/i18n/nl_BE.po b/addons/account_voucher/i18n/nl_BE.po index ea9a5400334..0cdc8cd8399 100644 --- a/addons/account_voucher/i18n/nl_BE.po +++ b/addons/account_voucher/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: nl\n" diff --git a/addons/account_voucher/i18n/oc.po b/addons/account_voucher/i18n/oc.po index 75f72c8dc77..962231d1e61 100644 --- a/addons/account_voucher/i18n/oc.po +++ b/addons/account_voucher/i18n/oc.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/pl.po b/addons/account_voucher/i18n/pl.po index b3f58891670..422cfcaa50f 100644 --- a/addons/account_voucher/i18n/pl.po +++ b/addons/account_voucher/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/pt.po b/addons/account_voucher/i18n/pt.po index 438e3c6e746..6bb1a048d71 100644 --- a/addons/account_voucher/i18n/pt.po +++ b/addons/account_voucher/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/pt_BR.po b/addons/account_voucher/i18n/pt_BR.po index 461a0e6ffff..c2268b61e4c 100644 --- a/addons/account_voucher/i18n/pt_BR.po +++ b/addons/account_voucher/i18n/pt_BR.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/ro.po b/addons/account_voucher/i18n/ro.po index cca9e9433d9..8a8485eea37 100644 --- a/addons/account_voucher/i18n/ro.po +++ b/addons/account_voucher/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/ru.po b/addons/account_voucher/i18n/ru.po index 210711cd1d9..63cad344ed0 100644 --- a/addons/account_voucher/i18n/ru.po +++ b/addons/account_voucher/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/sl.po b/addons/account_voucher/i18n/sl.po index a72fb2b5f93..2e086000ffb 100644 --- a/addons/account_voucher/i18n/sl.po +++ b/addons/account_voucher/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/sq.po b/addons/account_voucher/i18n/sq.po index d6ba2b34c9e..fee2048f7d1 100644 --- a/addons/account_voucher/i18n/sq.po +++ b/addons/account_voucher/i18n/sq.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/sr.po b/addons/account_voucher/i18n/sr.po index 33ccd2d2d0d..e2050d1867e 100644 --- a/addons/account_voucher/i18n/sr.po +++ b/addons/account_voucher/i18n/sr.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/sr@latin.po b/addons/account_voucher/i18n/sr@latin.po index 31945099f4d..f323748059d 100644 --- a/addons/account_voucher/i18n/sr@latin.po +++ b/addons/account_voucher/i18n/sr@latin.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/sv.po b/addons/account_voucher/i18n/sv.po index 1ad9129cd00..e60032b7199 100644 --- a/addons/account_voucher/i18n/sv.po +++ b/addons/account_voucher/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/tlh.po b/addons/account_voucher/i18n/tlh.po index dd40b04e75e..6a686118ad4 100644 --- a/addons/account_voucher/i18n/tlh.po +++ b/addons/account_voucher/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/tr.po b/addons/account_voucher/i18n/tr.po index c7fffa414e1..9db7f1927f1 100644 --- a/addons/account_voucher/i18n/tr.po +++ b/addons/account_voucher/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/uk.po b/addons/account_voucher/i18n/uk.po index ba64f0001c6..44c6ca3535f 100644 --- a/addons/account_voucher/i18n/uk.po +++ b/addons/account_voucher/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/vi.po b/addons/account_voucher/i18n/vi.po index ad6358c4a1f..633285bf856 100644 --- a/addons/account_voucher/i18n/vi.po +++ b/addons/account_voucher/i18n/vi.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/zh_CN.po b/addons/account_voucher/i18n/zh_CN.po index b024efb48a5..e8ad42ee1ae 100644 --- a/addons/account_voucher/i18n/zh_CN.po +++ b/addons/account_voucher/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/zh_TW.po b/addons/account_voucher/i18n/zh_TW.po index 241a70b9bdc..893d1749727 100644 --- a/addons/account_voucher/i18n/zh_TW.po +++ b/addons/account_voucher/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: account_voucher diff --git a/addons/analytic/i18n/ar.po b/addons/analytic/i18n/ar.po index 7c954d74f97..68af10155d4 100644 --- a/addons/analytic/i18n/ar.po +++ b/addons/analytic/i18n/ar.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/bg.po b/addons/analytic/i18n/bg.po index bbe3be363d2..c4550629edd 100644 --- a/addons/analytic/i18n/bg.po +++ b/addons/analytic/i18n/bg.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/bs.po b/addons/analytic/i18n/bs.po index 2d5fd0c8fd2..c88d15f2b99 100644 --- a/addons/analytic/i18n/bs.po +++ b/addons/analytic/i18n/bs.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/ca.po b/addons/analytic/i18n/ca.po index aac78a78e8c..4622b62ebc7 100644 --- a/addons/analytic/i18n/ca.po +++ b/addons/analytic/i18n/ca.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/cs.po b/addons/analytic/i18n/cs.po index 5030c643a0c..9ac5eb9c971 100644 --- a/addons/analytic/i18n/cs.po +++ b/addons/analytic/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: czech\n" diff --git a/addons/analytic/i18n/da.po b/addons/analytic/i18n/da.po index 95bd7c33cbc..4d45e8d262b 100644 --- a/addons/analytic/i18n/da.po +++ b/addons/analytic/i18n/da.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/de.po b/addons/analytic/i18n/de.po index 55b836210a2..88a3f4dc54d 100644 --- a/addons/analytic/i18n/de.po +++ b/addons/analytic/i18n/de.po @@ -15,7 +15,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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/el.po b/addons/analytic/i18n/el.po index cd649ec1acc..8b6b56cc979 100644 --- a/addons/analytic/i18n/el.po +++ b/addons/analytic/i18n/el.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/en_GB.po b/addons/analytic/i18n/en_GB.po index a59cc6e24cc..94d2a1e0003 100644 --- a/addons/analytic/i18n/en_GB.po +++ b/addons/analytic/i18n/en_GB.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/es.po b/addons/analytic/i18n/es.po index 7cb159449f8..731f447ffc1 100644 --- a/addons/analytic/i18n/es.po +++ b/addons/analytic/i18n/es.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/es_CR.po b/addons/analytic/i18n/es_CR.po index a2d431bbff2..f149ece74e7 100644 --- a/addons/analytic/i18n/es_CR.po +++ b/addons/analytic/i18n/es_CR.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/analytic/i18n/es_EC.po b/addons/analytic/i18n/es_EC.po index 80412eb178c..20919535c26 100644 --- a/addons/analytic/i18n/es_EC.po +++ b/addons/analytic/i18n/es_EC.po @@ -9,7 +9,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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/es_PY.po b/addons/analytic/i18n/es_PY.po index c7c783b675a..4a5fa63e960 100644 --- a/addons/analytic/i18n/es_PY.po +++ b/addons/analytic/i18n/es_PY.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/et.po b/addons/analytic/i18n/et.po index 333ef80198d..02abb6568b8 100644 --- a/addons/analytic/i18n/et.po +++ b/addons/analytic/i18n/et.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/fa.po b/addons/analytic/i18n/fa.po index eea3c044661..4f2934b0450 100644 --- a/addons/analytic/i18n/fa.po +++ b/addons/analytic/i18n/fa.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/fi.po b/addons/analytic/i18n/fi.po index ff29afe811e..0512c792f54 100644 --- a/addons/analytic/i18n/fi.po +++ b/addons/analytic/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/fr.po b/addons/analytic/i18n/fr.po index b6aa3a04a87..2cefcfd929a 100644 --- a/addons/analytic/i18n/fr.po +++ b/addons/analytic/i18n/fr.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/gl.po b/addons/analytic/i18n/gl.po index a62f241504f..efe72c6e4ca 100644 --- a/addons/analytic/i18n/gl.po +++ b/addons/analytic/i18n/gl.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/hr.po b/addons/analytic/i18n/hr.po index 2edf4854c4f..f335d9c6c62 100644 --- a/addons/analytic/i18n/hr.po +++ b/addons/analytic/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/hu.po b/addons/analytic/i18n/hu.po index 667bd347e43..bf379e9f17c 100644 --- a/addons/analytic/i18n/hu.po +++ b/addons/analytic/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/it.po b/addons/analytic/i18n/it.po index c720a774ac4..05bbeedc91f 100644 --- a/addons/analytic/i18n/it.po +++ b/addons/analytic/i18n/it.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/ja.po b/addons/analytic/i18n/ja.po index 6ad87f1bb4b..46418d239b5 100644 --- a/addons/analytic/i18n/ja.po +++ b/addons/analytic/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/lv.po b/addons/analytic/i18n/lv.po index e3f379bc017..c6f44a142d6 100644 --- a/addons/analytic/i18n/lv.po +++ b/addons/analytic/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/mk.po b/addons/analytic/i18n/mk.po index 2e9f44ac808..37f9d73ec6a 100644 --- a/addons/analytic/i18n/mk.po +++ b/addons/analytic/i18n/mk.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/mn.po b/addons/analytic/i18n/mn.po index 09d2515f492..63fa487d3a6 100644 --- a/addons/analytic/i18n/mn.po +++ b/addons/analytic/i18n/mn.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/nb.po b/addons/analytic/i18n/nb.po index 0b327bfc8c6..4e674d5d4ba 100644 --- a/addons/analytic/i18n/nb.po +++ b/addons/analytic/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/nl.po b/addons/analytic/i18n/nl.po index 0cccca37198..e07b78872ed 100644 --- a/addons/analytic/i18n/nl.po +++ b/addons/analytic/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/nl_BE.po b/addons/analytic/i18n/nl_BE.po index e61b11482e6..3643f3a8052 100644 --- a/addons/analytic/i18n/nl_BE.po +++ b/addons/analytic/i18n/nl_BE.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/pl.po b/addons/analytic/i18n/pl.po index b25296195b9..aaa53cfce6c 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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/pt.po b/addons/analytic/i18n/pt.po index aafa4a6d29e..6e2a38b52a5 100644 --- a/addons/analytic/i18n/pt.po +++ b/addons/analytic/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/pt_BR.po b/addons/analytic/i18n/pt_BR.po index 5290eb80dd9..0110bc66e3a 100644 --- a/addons/analytic/i18n/pt_BR.po +++ b/addons/analytic/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic @@ -89,20 +89,16 @@ msgid "" " customer." msgstr "" "Uma vez que a data final do contrato é\n" -"                                         ultrapassada ou o número máximo de " -"unidades \n" -"                                         de serviço (por exemplo, contrato " -"de suporte) é\n" -"                                         atingido, o gerente de contas é " -"notificado\n" -"                                         por e-mail para renovar o contrato " -"com o\n" -"                                         cliente." +"ultrapassada ou o número máximo de unidades \n" +"de serviço (por exemplo, contrato de suporte) é\n" +"atingido, o gerente de contas é notificado\n" +"por e-mail para renovar o contrato com o\n" +"cliente." #. module: analytic #: selection:account.analytic.account,type:0 msgid "Contract or Project" -msgstr "Contrato ou Projeto" +msgstr "Contrato" #. module: analytic #: field:account.analytic.account,name:0 @@ -122,7 +118,7 @@ msgstr "Seguidores" #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" -msgstr "Fechado" +msgstr "Finalizado" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_pending @@ -242,7 +238,7 @@ msgstr "Data" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_closed msgid "Contract Finished" -msgstr "Contrato Terminado" +msgstr "Finalizar Contrato" #. module: analytic #: view:account.analytic.account:0 @@ -327,7 +323,7 @@ msgstr "Visualização Analítica" #. module: analytic #: field:account.analytic.account,balance:0 msgid "Balance" -msgstr "Balanço" +msgstr "Saldo" #. module: analytic #: help:account.analytic.account,message_unread:0 @@ -348,7 +344,7 @@ msgstr "Quantidade" #. module: analytic #: field:account.analytic.account,date:0 msgid "Date End" -msgstr "Data de término" +msgstr "Data Final" #. module: analytic #: field:account.analytic.account,code:0 diff --git a/addons/analytic/i18n/ro.po b/addons/analytic/i18n/ro.po index 696d3ea5809..cd14ca270e1 100644 --- a/addons/analytic/i18n/ro.po +++ b/addons/analytic/i18n/ro.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/ru.po b/addons/analytic/i18n/ru.po index cf4e694382b..2ad2308f9da 100644 --- a/addons/analytic/i18n/ru.po +++ b/addons/analytic/i18n/ru.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/sl.po b/addons/analytic/i18n/sl.po index 756a978f11b..7bedbbe3637 100644 --- a/addons/analytic/i18n/sl.po +++ b/addons/analytic/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/sq.po b/addons/analytic/i18n/sq.po index 818d9fe0245..bac06d8d001 100644 --- a/addons/analytic/i18n/sq.po +++ b/addons/analytic/i18n/sq.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/sr.po b/addons/analytic/i18n/sr.po index 3b6bd0ed784..41f42159e5d 100644 --- a/addons/analytic/i18n/sr.po +++ b/addons/analytic/i18n/sr.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/sr@latin.po b/addons/analytic/i18n/sr@latin.po index 998f4737a2e..9953ca7bb01 100644 --- a/addons/analytic/i18n/sr@latin.po +++ b/addons/analytic/i18n/sr@latin.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/sv.po b/addons/analytic/i18n/sv.po index a687643aad1..94defe9da4c 100644 --- a/addons/analytic/i18n/sv.po +++ b/addons/analytic/i18n/sv.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/tr.po b/addons/analytic/i18n/tr.po index d1cfbff3b73..d801f3c7cfd 100644 --- a/addons/analytic/i18n/tr.po +++ b/addons/analytic/i18n/tr.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/vi.po b/addons/analytic/i18n/vi.po index f2cd1a1fe15..fa4f56fce1b 100644 --- a/addons/analytic/i18n/vi.po +++ b/addons/analytic/i18n/vi.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/zh_CN.po b/addons/analytic/i18n/zh_CN.po index 458619ce973..320b89d10fe 100644 --- a/addons/analytic/i18n/zh_CN.po +++ b/addons/analytic/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic/i18n/zh_TW.po b/addons/analytic/i18n/zh_TW.po index f2ef422d91e..180b2073ae7 100644 --- a/addons/analytic/i18n/zh_TW.po +++ b/addons/analytic/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic diff --git a/addons/analytic_contract_hr_expense/i18n/ar.po b/addons/analytic_contract_hr_expense/i18n/ar.po index e0cb6aea37d..1c1370ad3fc 100644 --- a/addons/analytic_contract_hr_expense/i18n/ar.po +++ b/addons/analytic_contract_hr_expense/i18n/ar.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/de.po b/addons/analytic_contract_hr_expense/i18n/de.po index 60ad5d31f5d..f8f1ad111c6 100644 --- a/addons/analytic_contract_hr_expense/i18n/de.po +++ b/addons/analytic_contract_hr_expense/i18n/de.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/en_GB.po b/addons/analytic_contract_hr_expense/i18n/en_GB.po index 0455e1ca030..47fa279deea 100644 --- a/addons/analytic_contract_hr_expense/i18n/en_GB.po +++ b/addons/analytic_contract_hr_expense/i18n/en_GB.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/es.po b/addons/analytic_contract_hr_expense/i18n/es.po index 690ef3b0486..bdad7830df4 100644 --- a/addons/analytic_contract_hr_expense/i18n/es.po +++ b/addons/analytic_contract_hr_expense/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/fr.po b/addons/analytic_contract_hr_expense/i18n/fr.po index a1470875ef4..52ddf426a1c 100644 --- a/addons/analytic_contract_hr_expense/i18n/fr.po +++ b/addons/analytic_contract_hr_expense/i18n/fr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/hr.po b/addons/analytic_contract_hr_expense/i18n/hr.po index 0f6e86342cd..a29973ca7f2 100644 --- a/addons/analytic_contract_hr_expense/i18n/hr.po +++ b/addons/analytic_contract_hr_expense/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/it.po b/addons/analytic_contract_hr_expense/i18n/it.po index e2f7e51d891..7d096b4826e 100644 --- a/addons/analytic_contract_hr_expense/i18n/it.po +++ b/addons/analytic_contract_hr_expense/i18n/it.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/mk.po b/addons/analytic_contract_hr_expense/i18n/mk.po index f053b4a625b..48c6c6b2985 100644 --- a/addons/analytic_contract_hr_expense/i18n/mk.po +++ b/addons/analytic_contract_hr_expense/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\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 b31f2e65822..eedb509e38e 100644 --- a/addons/analytic_contract_hr_expense/i18n/mn.po +++ b/addons/analytic_contract_hr_expense/i18n/mn.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/nb.po b/addons/analytic_contract_hr_expense/i18n/nb.po index d42a3b33f1b..c867b6b3760 100644 --- a/addons/analytic_contract_hr_expense/i18n/nb.po +++ b/addons/analytic_contract_hr_expense/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/nl.po b/addons/analytic_contract_hr_expense/i18n/nl.po index 84c256e16b9..ea6dc151e10 100644 --- a/addons/analytic_contract_hr_expense/i18n/nl.po +++ b/addons/analytic_contract_hr_expense/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/pl.po b/addons/analytic_contract_hr_expense/i18n/pl.po index 05f50294be3..c0cd04686b8 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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\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 33dbdcd6fe8..4d66e6c1f22 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt.po +++ b/addons/analytic_contract_hr_expense/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/pt_BR.po b/addons/analytic_contract_hr_expense/i18n/pt_BR.po index 4df2d94891e..4696b88cd27 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt_BR.po +++ b/addons/analytic_contract_hr_expense/i18n/pt_BR.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/ro.po b/addons/analytic_contract_hr_expense/i18n/ro.po index f36eeb3366b..9a7d20db4c1 100644 --- a/addons/analytic_contract_hr_expense/i18n/ro.po +++ b/addons/analytic_contract_hr_expense/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/sl.po b/addons/analytic_contract_hr_expense/i18n/sl.po index a7bcb820c47..bc9b1f4266b 100644 --- a/addons/analytic_contract_hr_expense/i18n/sl.po +++ b/addons/analytic_contract_hr_expense/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/tr.po b/addons/analytic_contract_hr_expense/i18n/tr.po index d93c3e73dad..ac44ba8705c 100644 --- a/addons/analytic_contract_hr_expense/i18n/tr.po +++ b/addons/analytic_contract_hr_expense/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_contract_hr_expense/i18n/zh_CN.po b/addons/analytic_contract_hr_expense/i18n/zh_CN.po index 593250f8208..bcdd07cad9c 100644 --- a/addons/analytic_contract_hr_expense/i18n/zh_CN.po +++ b/addons/analytic_contract_hr_expense/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_contract_hr_expense diff --git a/addons/analytic_user_function/i18n/ar.po b/addons/analytic_user_function/i18n/ar.po index db598ed6d60..65bfca4760d 100644 --- a/addons/analytic_user_function/i18n/ar.po +++ b/addons/analytic_user_function/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/bg.po b/addons/analytic_user_function/i18n/bg.po index 2cf62dee303..ebe2ffe7fd0 100644 --- a/addons/analytic_user_function/i18n/bg.po +++ b/addons/analytic_user_function/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/bs.po b/addons/analytic_user_function/i18n/bs.po index 2c4a2ef4a55..36cf66cbdba 100644 --- a/addons/analytic_user_function/i18n/bs.po +++ b/addons/analytic_user_function/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/ca.po b/addons/analytic_user_function/i18n/ca.po index 0007f6df39b..ef7a651fc81 100644 --- a/addons/analytic_user_function/i18n/ca.po +++ b/addons/analytic_user_function/i18n/ca.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/cs.po b/addons/analytic_user_function/i18n/cs.po index ac581e80ac2..8eeb41c03ad 100644 --- a/addons/analytic_user_function/i18n/cs.po +++ b/addons/analytic_user_function/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/da.po b/addons/analytic_user_function/i18n/da.po index 51b904a3064..3c89078ee41 100644 --- a/addons/analytic_user_function/i18n/da.po +++ b/addons/analytic_user_function/i18n/da.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/de.po b/addons/analytic_user_function/i18n/de.po index 4014b6fbdc4..89df16151b0 100644 --- a/addons/analytic_user_function/i18n/de.po +++ b/addons/analytic_user_function/i18n/de.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/el.po b/addons/analytic_user_function/i18n/el.po index 877a6daca93..a46747dd8c3 100644 --- a/addons/analytic_user_function/i18n/el.po +++ b/addons/analytic_user_function/i18n/el.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/en_GB.po b/addons/analytic_user_function/i18n/en_GB.po index e8d48181119..e1ee56cf8be 100644 --- a/addons/analytic_user_function/i18n/en_GB.po +++ b/addons/analytic_user_function/i18n/en_GB.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/es.po b/addons/analytic_user_function/i18n/es.po index f68fa526fd6..7fe9fcde53c 100644 --- a/addons/analytic_user_function/i18n/es.po +++ b/addons/analytic_user_function/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/es_AR.po b/addons/analytic_user_function/i18n/es_AR.po index 9794fedd1fc..80e27ac2833 100644 --- a/addons/analytic_user_function/i18n/es_AR.po +++ b/addons/analytic_user_function/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/es_CR.po b/addons/analytic_user_function/i18n/es_CR.po index ad0709e10ab..0b7b9acdd27 100644 --- a/addons/analytic_user_function/i18n/es_CR.po +++ b/addons/analytic_user_function/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/analytic_user_function/i18n/es_EC.po b/addons/analytic_user_function/i18n/es_EC.po index 996340d25f7..9f78cd760b3 100644 --- a/addons/analytic_user_function/i18n/es_EC.po +++ b/addons/analytic_user_function/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/es_PY.po b/addons/analytic_user_function/i18n/es_PY.po index eee6acded40..bcded963063 100644 --- a/addons/analytic_user_function/i18n/es_PY.po +++ b/addons/analytic_user_function/i18n/es_PY.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/et.po b/addons/analytic_user_function/i18n/et.po index d74a37391ef..7746ce454e8 100644 --- a/addons/analytic_user_function/i18n/et.po +++ b/addons/analytic_user_function/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/fa.po b/addons/analytic_user_function/i18n/fa.po index 1e460f61baa..671dbd93a75 100644 --- a/addons/analytic_user_function/i18n/fa.po +++ b/addons/analytic_user_function/i18n/fa.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/fi.po b/addons/analytic_user_function/i18n/fi.po index 7c4553623f0..57a5abd4efb 100644 --- a/addons/analytic_user_function/i18n/fi.po +++ b/addons/analytic_user_function/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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/fr.po b/addons/analytic_user_function/i18n/fr.po index 9927b6d1af3..365ed582f29 100644 --- a/addons/analytic_user_function/i18n/fr.po +++ b/addons/analytic_user_function/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/gl.po b/addons/analytic_user_function/i18n/gl.po index b1bad860739..a3b9b8eafa1 100644 --- a/addons/analytic_user_function/i18n/gl.po +++ b/addons/analytic_user_function/i18n/gl.po @@ -15,7 +15,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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/gu.po b/addons/analytic_user_function/i18n/gu.po index e3a73c11ee3..ae9e0b9eccb 100644 --- a/addons/analytic_user_function/i18n/gu.po +++ b/addons/analytic_user_function/i18n/gu.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/hr.po b/addons/analytic_user_function/i18n/hr.po index dbb4b931767..dda6c010406 100644 --- a/addons/analytic_user_function/i18n/hr.po +++ b/addons/analytic_user_function/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/analytic_user_function/i18n/hu.po b/addons/analytic_user_function/i18n/hu.po index 112a4afcdcb..1fd3d635c10 100644 --- a/addons/analytic_user_function/i18n/hu.po +++ b/addons/analytic_user_function/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/id.po b/addons/analytic_user_function/i18n/id.po index 36180f50913..beb31058463 100644 --- a/addons/analytic_user_function/i18n/id.po +++ b/addons/analytic_user_function/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/it.po b/addons/analytic_user_function/i18n/it.po index 25c89ca60fc..f229b9f39e0 100644 --- a/addons/analytic_user_function/i18n/it.po +++ b/addons/analytic_user_function/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/ja.po b/addons/analytic_user_function/i18n/ja.po index b930302e099..3133202d69c 100644 --- a/addons/analytic_user_function/i18n/ja.po +++ b/addons/analytic_user_function/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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/ko.po b/addons/analytic_user_function/i18n/ko.po index 12df6e70c07..605f02d16c3 100644 --- a/addons/analytic_user_function/i18n/ko.po +++ b/addons/analytic_user_function/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/lt.po b/addons/analytic_user_function/i18n/lt.po index 528c16442b4..e6513377869 100644 --- a/addons/analytic_user_function/i18n/lt.po +++ b/addons/analytic_user_function/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/mk.po b/addons/analytic_user_function/i18n/mk.po index f6470aef7a7..efde700fc9d 100644 --- a/addons/analytic_user_function/i18n/mk.po +++ b/addons/analytic_user_function/i18n/mk.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/mn.po b/addons/analytic_user_function/i18n/mn.po index 5722f0303b7..e0b427f9008 100644 --- a/addons/analytic_user_function/i18n/mn.po +++ b/addons/analytic_user_function/i18n/mn.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/nb.po b/addons/analytic_user_function/i18n/nb.po index bbc03a5a427..b297c1ee35e 100644 --- a/addons/analytic_user_function/i18n/nb.po +++ b/addons/analytic_user_function/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/nl.po b/addons/analytic_user_function/i18n/nl.po index 8aa516cfea7..ca443202844 100644 --- a/addons/analytic_user_function/i18n/nl.po +++ b/addons/analytic_user_function/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/nl_BE.po b/addons/analytic_user_function/i18n/nl_BE.po index ddee8b783f5..fe831af2c7c 100644 --- a/addons/analytic_user_function/i18n/nl_BE.po +++ b/addons/analytic_user_function/i18n/nl_BE.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/oc.po b/addons/analytic_user_function/i18n/oc.po index 397ded00f97..02a317e20de 100644 --- a/addons/analytic_user_function/i18n/oc.po +++ b/addons/analytic_user_function/i18n/oc.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/pl.po b/addons/analytic_user_function/i18n/pl.po index 41920534082..846585c458f 100644 --- a/addons/analytic_user_function/i18n/pl.po +++ b/addons/analytic_user_function/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/pt.po b/addons/analytic_user_function/i18n/pt.po index e1aed1e825a..d954fa19814 100644 --- a/addons/analytic_user_function/i18n/pt.po +++ b/addons/analytic_user_function/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/pt_BR.po b/addons/analytic_user_function/i18n/pt_BR.po index f3a6227035f..facdc8e5f45 100644 --- a/addons/analytic_user_function/i18n/pt_BR.po +++ b/addons/analytic_user_function/i18n/pt_BR.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function @@ -80,9 +80,8 @@ msgid "" "customer." msgstr "" "Definir um serviço específico (Consultor Sênior, por exemplo)\n" -"                             e preço para alguns usuários utilizarem esses " -"dados em vez\n" -"                             dos valores padrão quando faturarem um cliente." +"e preço para alguns usuários utilizarem esses dados em vez\n" +"dos valores padrão quando faturarem um cliente." #. module: analytic_user_function #: field:analytic.user.funct.grid,uom_id:0 @@ -94,12 +93,12 @@ msgstr "Unidade de Medida" #: code:addons/analytic_user_function/analytic_user_function.py:136 #, python-format msgid "There is no expense account define for this product: \"%s\" (id:%d)" -msgstr "Não há conta de despesa definida para este produto:%s\" (id:%d)" +msgstr "Não há conta de despesa definida para este produto: \"%s\" (id:%d)" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_hr_analytic_timesheet msgid "Timesheet Line" -msgstr "Linha da Planilha de Horas" +msgstr "Linha de Apontamento de Horas" #. module: analytic_user_function #: view:account.analytic.account:0 @@ -111,11 +110,9 @@ msgid "" " conditions for a group of contracts." msgstr "" "O OpenERP vai pesquisar recursivamente em contas pais\n" -"                             para verificar se as condições específicas são " -"definidas por um\n" -"                             usuário específico. Isto permite configurar " -"condições de\n" -"                             faturamento para um grupo de contratos." +"para verificar se as condições específicas são definidas por um\n" +"usuário específico. Isto permite configurar condições de\n" +"faturamento para um grupo de contratos." #. module: analytic_user_function #: field:analytic.user.funct.grid,user_id:0 diff --git a/addons/analytic_user_function/i18n/ro.po b/addons/analytic_user_function/i18n/ro.po index a50ff653004..f83d9a922c0 100644 --- a/addons/analytic_user_function/i18n/ro.po +++ b/addons/analytic_user_function/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/ru.po b/addons/analytic_user_function/i18n/ru.po index 3bed9e16be4..9ad01901df4 100644 --- a/addons/analytic_user_function/i18n/ru.po +++ b/addons/analytic_user_function/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/sk.po b/addons/analytic_user_function/i18n/sk.po index adcfa32c3c5..580a0708d79 100644 --- a/addons/analytic_user_function/i18n/sk.po +++ b/addons/analytic_user_function/i18n/sk.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/sl.po b/addons/analytic_user_function/i18n/sl.po index e41f541dc94..ee45c2db9b0 100644 --- a/addons/analytic_user_function/i18n/sl.po +++ b/addons/analytic_user_function/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/sq.po b/addons/analytic_user_function/i18n/sq.po index d450c2a8a77..94abceed7f7 100644 --- a/addons/analytic_user_function/i18n/sq.po +++ b/addons/analytic_user_function/i18n/sq.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/sr.po b/addons/analytic_user_function/i18n/sr.po index c63b8e17c9d..077f6bb2610 100644 --- a/addons/analytic_user_function/i18n/sr.po +++ b/addons/analytic_user_function/i18n/sr.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/sr@latin.po b/addons/analytic_user_function/i18n/sr@latin.po index 167798c24b9..b75d8643a37 100644 --- a/addons/analytic_user_function/i18n/sr@latin.po +++ b/addons/analytic_user_function/i18n/sr@latin.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/sv.po b/addons/analytic_user_function/i18n/sv.po index 2707febffde..a6595f07898 100644 --- a/addons/analytic_user_function/i18n/sv.po +++ b/addons/analytic_user_function/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/tlh.po b/addons/analytic_user_function/i18n/tlh.po index cf41f86a12a..e26dfe56187 100644 --- a/addons/analytic_user_function/i18n/tlh.po +++ b/addons/analytic_user_function/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/tr.po b/addons/analytic_user_function/i18n/tr.po index 2068d663079..2ca12ace463 100644 --- a/addons/analytic_user_function/i18n/tr.po +++ b/addons/analytic_user_function/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/uk.po b/addons/analytic_user_function/i18n/uk.po index ecc0acacf0a..da1883881db 100644 --- a/addons/analytic_user_function/i18n/uk.po +++ b/addons/analytic_user_function/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/vi.po b/addons/analytic_user_function/i18n/vi.po index 272b5892c9c..6a07877a190 100644 --- a/addons/analytic_user_function/i18n/vi.po +++ b/addons/analytic_user_function/i18n/vi.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/zh_CN.po b/addons/analytic_user_function/i18n/zh_CN.po index c43779d2e89..fe1bd69ae4d 100644 --- a/addons/analytic_user_function/i18n/zh_CN.po +++ b/addons/analytic_user_function/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/zh_TW.po b/addons/analytic_user_function/i18n/zh_TW.po index d53748cee21..565603c4490 100644 --- a/addons/analytic_user_function/i18n/zh_TW.po +++ b/addons/analytic_user_function/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: analytic_user_function diff --git a/addons/anonymization/i18n/ar.po b/addons/anonymization/i18n/ar.po index 4165605a321..e645d6a7ae3 100644 --- a/addons/anonymization/i18n/ar.po +++ b/addons/anonymization/i18n/ar.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/bg.po b/addons/anonymization/i18n/bg.po index e2464f09043..437808adbb4 100644 --- a/addons/anonymization/i18n/bg.po +++ b/addons/anonymization/i18n/bg.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/ca.po b/addons/anonymization/i18n/ca.po index 6dfeb16ecc7..7998714bd0a 100644 --- a/addons/anonymization/i18n/ca.po +++ b/addons/anonymization/i18n/ca.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/da.po b/addons/anonymization/i18n/da.po index d2fe80d3758..df0e6ed5764 100644 --- a/addons/anonymization/i18n/da.po +++ b/addons/anonymization/i18n/da.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/de.po b/addons/anonymization/i18n/de.po index 3af5f278189..77089696f7b 100644 --- a/addons/anonymization/i18n/de.po +++ b/addons/anonymization/i18n/de.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/en_GB.po b/addons/anonymization/i18n/en_GB.po index d1e0ddecfc9..e0d0341fe4a 100644 --- a/addons/anonymization/i18n/en_GB.po +++ b/addons/anonymization/i18n/en_GB.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/es.po b/addons/anonymization/i18n/es.po index 1dd94fb597e..92ba2ea8f4a 100644 --- a/addons/anonymization/i18n/es.po +++ b/addons/anonymization/i18n/es.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/es_CR.po b/addons/anonymization/i18n/es_CR.po index c93a4d399d7..ca140518028 100644 --- a/addons/anonymization/i18n/es_CR.po +++ b/addons/anonymization/i18n/es_CR.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/anonymization/i18n/es_EC.po b/addons/anonymization/i18n/es_EC.po index eda88a55e4b..99c66c4656c 100644 --- a/addons/anonymization/i18n/es_EC.po +++ b/addons/anonymization/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/es_PY.po b/addons/anonymization/i18n/es_PY.po index be7029ec188..4cfa7508849 100644 --- a/addons/anonymization/i18n/es_PY.po +++ b/addons/anonymization/i18n/es_PY.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/et.po b/addons/anonymization/i18n/et.po index d8daae5f934..a024aa07aed 100644 --- a/addons/anonymization/i18n/et.po +++ b/addons/anonymization/i18n/et.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/fa.po b/addons/anonymization/i18n/fa.po index ff702d43879..24689d66460 100644 --- a/addons/anonymization/i18n/fa.po +++ b/addons/anonymization/i18n/fa.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/fi.po b/addons/anonymization/i18n/fi.po index 2ca5d5928e5..444bb76bf33 100644 --- a/addons/anonymization/i18n/fi.po +++ b/addons/anonymization/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/fr.po b/addons/anonymization/i18n/fr.po index 55595ecf360..d8e7fe60a78 100644 --- a/addons/anonymization/i18n/fr.po +++ b/addons/anonymization/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/gl.po b/addons/anonymization/i18n/gl.po index 509d1255fe4..7f49a57c651 100644 --- a/addons/anonymization/i18n/gl.po +++ b/addons/anonymization/i18n/gl.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/hr.po b/addons/anonymization/i18n/hr.po index 6767c7457ba..4e23b8a24f9 100644 --- a/addons/anonymization/i18n/hr.po +++ b/addons/anonymization/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/it.po b/addons/anonymization/i18n/it.po index 6d4b43273cb..262d93c8553 100644 --- a/addons/anonymization/i18n/it.po +++ b/addons/anonymization/i18n/it.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/ja.po b/addons/anonymization/i18n/ja.po index cc6c8b0ae7b..b180c792996 100644 --- a/addons/anonymization/i18n/ja.po +++ b/addons/anonymization/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/lv.po b/addons/anonymization/i18n/lv.po index c0f1b76b15b..fa83a046751 100644 --- a/addons/anonymization/i18n/lv.po +++ b/addons/anonymization/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/mk.po b/addons/anonymization/i18n/mk.po index 54968066b75..face6d58f03 100644 --- a/addons/anonymization/i18n/mk.po +++ b/addons/anonymization/i18n/mk.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/mn.po b/addons/anonymization/i18n/mn.po index fbcb14d117a..40883533a7b 100644 --- a/addons/anonymization/i18n/mn.po +++ b/addons/anonymization/i18n/mn.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/nb.po b/addons/anonymization/i18n/nb.po index 694a9148e4e..fcc1a7bf9d0 100644 --- a/addons/anonymization/i18n/nb.po +++ b/addons/anonymization/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/nl.po b/addons/anonymization/i18n/nl.po index 466262b9d73..259c815b450 100644 --- a/addons/anonymization/i18n/nl.po +++ b/addons/anonymization/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/pl.po b/addons/anonymization/i18n/pl.po index d1f8f9ae987..b4a4115a64c 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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/pt.po b/addons/anonymization/i18n/pt.po index cbea8fbed33..cffab8bc4c8 100644 --- a/addons/anonymization/i18n/pt.po +++ b/addons/anonymization/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/pt_BR.po b/addons/anonymization/i18n/pt_BR.po index 0579a095d85..054f144f57b 100644 --- a/addons/anonymization/i18n/pt_BR.po +++ b/addons/anonymization/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/ro.po b/addons/anonymization/i18n/ro.po index bf1c29ec99f..ff0bd723a93 100644 --- a/addons/anonymization/i18n/ro.po +++ b/addons/anonymization/i18n/ro.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/ru.po b/addons/anonymization/i18n/ru.po index a3e932d97b7..2ccf505d04e 100644 --- a/addons/anonymization/i18n/ru.po +++ b/addons/anonymization/i18n/ru.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/sl.po b/addons/anonymization/i18n/sl.po index 77cfdef6664..08ab0bbee15 100644 --- a/addons/anonymization/i18n/sl.po +++ b/addons/anonymization/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/sq.po b/addons/anonymization/i18n/sq.po index b4f35bfe339..d7a7adc47e8 100644 --- a/addons/anonymization/i18n/sq.po +++ b/addons/anonymization/i18n/sq.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/sr@latin.po b/addons/anonymization/i18n/sr@latin.po index 42404460db7..b96d1f3ece2 100644 --- a/addons/anonymization/i18n/sr@latin.po +++ b/addons/anonymization/i18n/sr@latin.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/sv.po b/addons/anonymization/i18n/sv.po index 16b903e5f22..311c9670129 100644 --- a/addons/anonymization/i18n/sv.po +++ b/addons/anonymization/i18n/sv.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/tr.po b/addons/anonymization/i18n/tr.po index 279b7e51593..d3535db6f5e 100644 --- a/addons/anonymization/i18n/tr.po +++ b/addons/anonymization/i18n/tr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/zh_CN.po b/addons/anonymization/i18n/zh_CN.po index fd48d08874d..4b23edef34a 100644 --- a/addons/anonymization/i18n/zh_CN.po +++ b/addons/anonymization/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/anonymization/i18n/zh_TW.po b/addons/anonymization/i18n/zh_TW.po index d88ca42c973..d8973b2491c 100644 --- a/addons/anonymization/i18n/zh_TW.po +++ b/addons/anonymization/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: anonymization diff --git a/addons/association/i18n/ar.po b/addons/association/i18n/ar.po index c7fdfad20a5..ef806f96dab 100644 --- a/addons/association/i18n/ar.po +++ b/addons/association/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/bg.po b/addons/association/i18n/bg.po index 4554b008fe6..677c2073890 100644 --- a/addons/association/i18n/bg.po +++ b/addons/association/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/bs.po b/addons/association/i18n/bs.po index 7ec7acfbc23..6596b937f42 100644 --- a/addons/association/i18n/bs.po +++ b/addons/association/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/ca.po b/addons/association/i18n/ca.po index 146d1f3bca2..ff3c05b400b 100644 --- a/addons/association/i18n/ca.po +++ b/addons/association/i18n/ca.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/cs.po b/addons/association/i18n/cs.po index d75ceb503b9..1a4919c85b1 100644 --- a/addons/association/i18n/cs.po +++ b/addons/association/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/association/i18n/da.po b/addons/association/i18n/da.po index 5b3987a87f1..9abb6d6724d 100644 --- a/addons/association/i18n/da.po +++ b/addons/association/i18n/da.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/de.po b/addons/association/i18n/de.po index eaff38762f7..dd4da9b4d3d 100644 --- a/addons/association/i18n/de.po +++ b/addons/association/i18n/de.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/el.po b/addons/association/i18n/el.po index f84471ccad2..351020ff787 100644 --- a/addons/association/i18n/el.po +++ b/addons/association/i18n/el.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/en_GB.po b/addons/association/i18n/en_GB.po index 8da7529c408..de797c02bd8 100644 --- a/addons/association/i18n/en_GB.po +++ b/addons/association/i18n/en_GB.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/es.po b/addons/association/i18n/es.po index 87f4fa59b0d..a49e6b2f9da 100644 --- a/addons/association/i18n/es.po +++ b/addons/association/i18n/es.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/es_CR.po b/addons/association/i18n/es_CR.po index e3f0438e1fb..64180d9d582 100644 --- a/addons/association/i18n/es_CR.po +++ b/addons/association/i18n/es_CR.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/association/i18n/es_EC.po b/addons/association/i18n/es_EC.po index 466be04dd63..b6ec1c6717b 100644 --- a/addons/association/i18n/es_EC.po +++ b/addons/association/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/es_PY.po b/addons/association/i18n/es_PY.po index 639763058c0..35003c7729b 100644 --- a/addons/association/i18n/es_PY.po +++ b/addons/association/i18n/es_PY.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/et.po b/addons/association/i18n/et.po index eccbe6f0438..acd5a1e302a 100644 --- a/addons/association/i18n/et.po +++ b/addons/association/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/fa.po b/addons/association/i18n/fa.po index 5f35c97d453..69237d2fc7a 100644 --- a/addons/association/i18n/fa.po +++ b/addons/association/i18n/fa.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/fi.po b/addons/association/i18n/fi.po index 2fe8e66d91f..bbff051bff7 100644 --- a/addons/association/i18n/fi.po +++ b/addons/association/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/fr.po b/addons/association/i18n/fr.po index f1f2a1574c0..7e2168a1703 100644 --- a/addons/association/i18n/fr.po +++ b/addons/association/i18n/fr.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/gl.po b/addons/association/i18n/gl.po index 68dcf501165..b7fcd3d43c7 100644 --- a/addons/association/i18n/gl.po +++ b/addons/association/i18n/gl.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/gu.po b/addons/association/i18n/gu.po index 242229495b9..41a74d2b41c 100644 --- a/addons/association/i18n/gu.po +++ b/addons/association/i18n/gu.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/hr.po b/addons/association/i18n/hr.po index b062915ac4a..147c83038c9 100644 --- a/addons/association/i18n/hr.po +++ b/addons/association/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/hu.po b/addons/association/i18n/hu.po index 8e95d28c22e..ee3d0d9963b 100644 --- a/addons/association/i18n/hu.po +++ b/addons/association/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/id.po b/addons/association/i18n/id.po index 4ff4991e35c..003e9a3ee89 100644 --- a/addons/association/i18n/id.po +++ b/addons/association/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/it.po b/addons/association/i18n/it.po index 9e4fc932d75..abf96f9fc29 100644 --- a/addons/association/i18n/it.po +++ b/addons/association/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/ja.po b/addons/association/i18n/ja.po index 4c36e9e63e2..f3f595d1591 100644 --- a/addons/association/i18n/ja.po +++ b/addons/association/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/ko.po b/addons/association/i18n/ko.po index 135d1d92f7a..c1470c81d5f 100644 --- a/addons/association/i18n/ko.po +++ b/addons/association/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/lo.po b/addons/association/i18n/lo.po index 6da9c79f08b..aeed0968337 100644 --- a/addons/association/i18n/lo.po +++ b/addons/association/i18n/lo.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/lt.po b/addons/association/i18n/lt.po index d74c376eda9..ae6b1a2a603 100644 --- a/addons/association/i18n/lt.po +++ b/addons/association/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/lv.po b/addons/association/i18n/lv.po index 2dd1a13dde2..cb679d93348 100644 --- a/addons/association/i18n/lv.po +++ b/addons/association/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/mk.po b/addons/association/i18n/mk.po index 27917235f36..06e1c8089d0 100644 --- a/addons/association/i18n/mk.po +++ b/addons/association/i18n/mk.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/mn.po b/addons/association/i18n/mn.po index c6047741ba4..eaf52added3 100644 --- a/addons/association/i18n/mn.po +++ b/addons/association/i18n/mn.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/nb.po b/addons/association/i18n/nb.po index d5a320b1936..7d880079828 100644 --- a/addons/association/i18n/nb.po +++ b/addons/association/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/nl.po b/addons/association/i18n/nl.po index d4466b9c448..6e4a025b2de 100644 --- a/addons/association/i18n/nl.po +++ b/addons/association/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/pl.po b/addons/association/i18n/pl.po index 6aac2aa0061..461263f84bc 100644 --- a/addons/association/i18n/pl.po +++ b/addons/association/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/pt.po b/addons/association/i18n/pt.po index 883eeac362b..fa4af10dc91 100644 --- a/addons/association/i18n/pt.po +++ b/addons/association/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/pt_BR.po b/addons/association/i18n/pt_BR.po index 3e9c32a721f..0a6a0054e05 100644 --- a/addons/association/i18n/pt_BR.po +++ b/addons/association/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/ro.po b/addons/association/i18n/ro.po index 8f508c14a79..df9c72eae30 100644 --- a/addons/association/i18n/ro.po +++ b/addons/association/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/ru.po b/addons/association/i18n/ru.po index 16f35b46878..46f3911f5dc 100644 --- a/addons/association/i18n/ru.po +++ b/addons/association/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/sl.po b/addons/association/i18n/sl.po index efbd27263bd..de8facc726b 100644 --- a/addons/association/i18n/sl.po +++ b/addons/association/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/sq.po b/addons/association/i18n/sq.po index f8191128db3..5740146106f 100644 --- a/addons/association/i18n/sq.po +++ b/addons/association/i18n/sq.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/sr.po b/addons/association/i18n/sr.po index 5ebbf9ffea9..baee8972bae 100644 --- a/addons/association/i18n/sr.po +++ b/addons/association/i18n/sr.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/sr@latin.po b/addons/association/i18n/sr@latin.po index 00725ad02f6..b4e74095808 100644 --- a/addons/association/i18n/sr@latin.po +++ b/addons/association/i18n/sr@latin.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/sv.po b/addons/association/i18n/sv.po index 74090cb8315..9bb3ce6e070 100644 --- a/addons/association/i18n/sv.po +++ b/addons/association/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/tlh.po b/addons/association/i18n/tlh.po index d74c376eda9..ae6b1a2a603 100644 --- a/addons/association/i18n/tlh.po +++ b/addons/association/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/tr.po b/addons/association/i18n/tr.po index 8f665416757..8948d0f8a87 100644 --- a/addons/association/i18n/tr.po +++ b/addons/association/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/uk.po b/addons/association/i18n/uk.po index aa7e0abe87b..20dfa105689 100644 --- a/addons/association/i18n/uk.po +++ b/addons/association/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/vi.po b/addons/association/i18n/vi.po index 4f9fc195e4d..f7a90e3eb3f 100644 --- a/addons/association/i18n/vi.po +++ b/addons/association/i18n/vi.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/zh_CN.po b/addons/association/i18n/zh_CN.po index 60fbde6f372..7ffa42e4784 100644 --- a/addons/association/i18n/zh_CN.po +++ b/addons/association/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/association/i18n/zh_TW.po b/addons/association/i18n/zh_TW.po index 8bc3f23f7b5..dd21d9499fc 100644 --- a/addons/association/i18n/zh_TW.po +++ b/addons/association/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: association diff --git a/addons/audittrail/i18n/ar.po b/addons/audittrail/i18n/ar.po index b426f93cc6e..ea3b7ab7ff0 100644 --- a/addons/audittrail/i18n/ar.po +++ b/addons/audittrail/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/bg.po b/addons/audittrail/i18n/bg.po index 737a48a145b..a81c09f92f5 100644 --- a/addons/audittrail/i18n/bg.po +++ b/addons/audittrail/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/bs.po b/addons/audittrail/i18n/bs.po index c0bc46b6f98..0391b36ce63 100644 --- a/addons/audittrail/i18n/bs.po +++ b/addons/audittrail/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/ca.po b/addons/audittrail/i18n/ca.po index 61088a90eb5..fab2f0e05e7 100644 --- a/addons/audittrail/i18n/ca.po +++ b/addons/audittrail/i18n/ca.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/cs.po b/addons/audittrail/i18n/cs.po index 8382ad7c798..3198fe7372c 100644 --- a/addons/audittrail/i18n/cs.po +++ b/addons/audittrail/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/audittrail/i18n/da.po b/addons/audittrail/i18n/da.po index b55ee0d8af8..c691a151fcb 100644 --- a/addons/audittrail/i18n/da.po +++ b/addons/audittrail/i18n/da.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/de.po b/addons/audittrail/i18n/de.po index 7af6176e514..3ed83b44042 100644 --- a/addons/audittrail/i18n/de.po +++ b/addons/audittrail/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/el.po b/addons/audittrail/i18n/el.po index c92041434e5..c2f93d6cf5f 100644 --- a/addons/audittrail/i18n/el.po +++ b/addons/audittrail/i18n/el.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/es.po b/addons/audittrail/i18n/es.po index b133a17f7f0..cfdeb6eb8e7 100644 --- a/addons/audittrail/i18n/es.po +++ b/addons/audittrail/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/es_AR.po b/addons/audittrail/i18n/es_AR.po index f5b8e0f4e0a..1b2453c62e0 100644 --- a/addons/audittrail/i18n/es_AR.po +++ b/addons/audittrail/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/es_CR.po b/addons/audittrail/i18n/es_CR.po index 7185115540d..6a28a5110e2 100644 --- a/addons/audittrail/i18n/es_CR.po +++ b/addons/audittrail/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/audittrail/i18n/es_EC.po b/addons/audittrail/i18n/es_EC.po index c6dc398e089..1bada12c848 100644 --- a/addons/audittrail/i18n/es_EC.po +++ b/addons/audittrail/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/es_PY.po b/addons/audittrail/i18n/es_PY.po index c6fef3cb4f2..b12bd9f498d 100644 --- a/addons/audittrail/i18n/es_PY.po +++ b/addons/audittrail/i18n/es_PY.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/et.po b/addons/audittrail/i18n/et.po index 3e0cb55cbdc..1017b93ff52 100644 --- a/addons/audittrail/i18n/et.po +++ b/addons/audittrail/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/fa.po b/addons/audittrail/i18n/fa.po index cdef2ea82d8..60b373f3165 100644 --- a/addons/audittrail/i18n/fa.po +++ b/addons/audittrail/i18n/fa.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/fa_AF.po b/addons/audittrail/i18n/fa_AF.po index fff129a4a6c..e7e83f65756 100644 --- a/addons/audittrail/i18n/fa_AF.po +++ b/addons/audittrail/i18n/fa_AF.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/fi.po b/addons/audittrail/i18n/fi.po index 53f2c9c65f9..04a96bf96b2 100644 --- a/addons/audittrail/i18n/fi.po +++ b/addons/audittrail/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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/fr.po b/addons/audittrail/i18n/fr.po index d8b8f23795e..49a53055c0a 100644 --- a/addons/audittrail/i18n/fr.po +++ b/addons/audittrail/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/gl.po b/addons/audittrail/i18n/gl.po index 67b043f2260..04b9278b620 100644 --- a/addons/audittrail/i18n/gl.po +++ b/addons/audittrail/i18n/gl.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/gu.po b/addons/audittrail/i18n/gu.po index 4dbf3347495..03c38da7288 100644 --- a/addons/audittrail/i18n/gu.po +++ b/addons/audittrail/i18n/gu.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/hr.po b/addons/audittrail/i18n/hr.po index bed1cb55343..d8e53de28bd 100644 --- a/addons/audittrail/i18n/hr.po +++ b/addons/audittrail/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/hu.po b/addons/audittrail/i18n/hu.po index 85013137fcd..4fb375181cd 100644 --- a/addons/audittrail/i18n/hu.po +++ b/addons/audittrail/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/id.po b/addons/audittrail/i18n/id.po index d4e470bfe7c..4913197880f 100644 --- a/addons/audittrail/i18n/id.po +++ b/addons/audittrail/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/it.po b/addons/audittrail/i18n/it.po index 88553e67a54..93430792b18 100644 --- a/addons/audittrail/i18n/it.po +++ b/addons/audittrail/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/ja.po b/addons/audittrail/i18n/ja.po index 4addf2ebeb8..f9031f5b46b 100644 --- a/addons/audittrail/i18n/ja.po +++ b/addons/audittrail/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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/ko.po b/addons/audittrail/i18n/ko.po index 5eb4a08cdad..fb0d26168ec 100644 --- a/addons/audittrail/i18n/ko.po +++ b/addons/audittrail/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/lt.po b/addons/audittrail/i18n/lt.po index 08b78df506e..d6cb48261d4 100644 --- a/addons/audittrail/i18n/lt.po +++ b/addons/audittrail/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/lv.po b/addons/audittrail/i18n/lv.po index 68f77bf384c..f242bece9da 100644 --- a/addons/audittrail/i18n/lv.po +++ b/addons/audittrail/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/mk.po b/addons/audittrail/i18n/mk.po index c837a30fb64..213d0819ef4 100644 --- a/addons/audittrail/i18n/mk.po +++ b/addons/audittrail/i18n/mk.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/mn.po b/addons/audittrail/i18n/mn.po index 8578f2e3552..13864acc5a6 100644 --- a/addons/audittrail/i18n/mn.po +++ b/addons/audittrail/i18n/mn.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/nb.po b/addons/audittrail/i18n/nb.po index f448e4b43ca..7d42bf30516 100644 --- a/addons/audittrail/i18n/nb.po +++ b/addons/audittrail/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/nl.po b/addons/audittrail/i18n/nl.po index 4c5548b4c66..c1dc82974f6 100644 --- a/addons/audittrail/i18n/nl.po +++ b/addons/audittrail/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/nl_BE.po b/addons/audittrail/i18n/nl_BE.po index da2f5dc5ade..49ff08aa5a8 100644 --- a/addons/audittrail/i18n/nl_BE.po +++ b/addons/audittrail/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/oc.po b/addons/audittrail/i18n/oc.po index 9de12adeeb5..9e8b8563095 100644 --- a/addons/audittrail/i18n/oc.po +++ b/addons/audittrail/i18n/oc.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/pl.po b/addons/audittrail/i18n/pl.po index fb0f9a8805d..40962a0f673 100644 --- a/addons/audittrail/i18n/pl.po +++ b/addons/audittrail/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/pt.po b/addons/audittrail/i18n/pt.po index 20a309d30c1..c63a0d13488 100644 --- a/addons/audittrail/i18n/pt.po +++ b/addons/audittrail/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/pt_BR.po b/addons/audittrail/i18n/pt_BR.po index 9785e1fc185..d6308eae940 100644 --- a/addons/audittrail/i18n/pt_BR.po +++ b/addons/audittrail/i18n/pt_BR.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/ro.po b/addons/audittrail/i18n/ro.po index d7556a15249..ddaad316240 100644 --- a/addons/audittrail/i18n/ro.po +++ b/addons/audittrail/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/ru.po b/addons/audittrail/i18n/ru.po index de31a81ea3f..44be5c84b9d 100644 --- a/addons/audittrail/i18n/ru.po +++ b/addons/audittrail/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/sl.po b/addons/audittrail/i18n/sl.po index 4c059e4189a..9a6209abf73 100644 --- a/addons/audittrail/i18n/sl.po +++ b/addons/audittrail/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/sq.po b/addons/audittrail/i18n/sq.po index 3c5755b365d..6e792b63c98 100644 --- a/addons/audittrail/i18n/sq.po +++ b/addons/audittrail/i18n/sq.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/sr@latin.po b/addons/audittrail/i18n/sr@latin.po index 85b3c4e8858..f8fc6cdf56a 100644 --- a/addons/audittrail/i18n/sr@latin.po +++ b/addons/audittrail/i18n/sr@latin.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/sv.po b/addons/audittrail/i18n/sv.po index 2592a9db218..22433c250ee 100644 --- a/addons/audittrail/i18n/sv.po +++ b/addons/audittrail/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/tlh.po b/addons/audittrail/i18n/tlh.po index 6094ffe506d..3d0fc09013d 100644 --- a/addons/audittrail/i18n/tlh.po +++ b/addons/audittrail/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/tr.po b/addons/audittrail/i18n/tr.po index 962454ccf0f..c69f461cbcc 100644 --- a/addons/audittrail/i18n/tr.po +++ b/addons/audittrail/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/uk.po b/addons/audittrail/i18n/uk.po index dc4df7b6983..e61b7ba2e3c 100644 --- a/addons/audittrail/i18n/uk.po +++ b/addons/audittrail/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/vi.po b/addons/audittrail/i18n/vi.po index 77aa1a9d3b2..ba8557f1570 100644 --- a/addons/audittrail/i18n/vi.po +++ b/addons/audittrail/i18n/vi.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/zh_CN.po b/addons/audittrail/i18n/zh_CN.po index 5d2a9686492..37de643ff07 100644 --- a/addons/audittrail/i18n/zh_CN.po +++ b/addons/audittrail/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/audittrail/i18n/zh_TW.po b/addons/audittrail/i18n/zh_TW.po index e03775a0c4a..41fb0dfaf05 100644 --- a/addons/audittrail/i18n/zh_TW.po +++ b/addons/audittrail/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: audittrail diff --git a/addons/auth_crypt/i18n/ar.po b/addons/auth_crypt/i18n/ar.po index c19c8416de0..20c85828671 100644 --- a/addons/auth_crypt/i18n/ar.po +++ b/addons/auth_crypt/i18n/ar.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/de.po b/addons/auth_crypt/i18n/de.po index 99a326a6440..af9d0dc9593 100644 --- a/addons/auth_crypt/i18n/de.po +++ b/addons/auth_crypt/i18n/de.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/en_GB.po b/addons/auth_crypt/i18n/en_GB.po index 3117321447f..c0485b1c311 100644 --- a/addons/auth_crypt/i18n/en_GB.po +++ b/addons/auth_crypt/i18n/en_GB.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/es.po b/addons/auth_crypt/i18n/es.po index e2008b73d5f..7fdea1f7378 100644 --- a/addons/auth_crypt/i18n/es.po +++ b/addons/auth_crypt/i18n/es.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/fr.po b/addons/auth_crypt/i18n/fr.po index 2428d3f1cf7..61cba43afc7 100644 --- a/addons/auth_crypt/i18n/fr.po +++ b/addons/auth_crypt/i18n/fr.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/hr.po b/addons/auth_crypt/i18n/hr.po index f123c2f3fa3..1e8876f7380 100644 --- a/addons/auth_crypt/i18n/hr.po +++ b/addons/auth_crypt/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/it.po b/addons/auth_crypt/i18n/it.po index 5190a5dccb7..93f3591299c 100644 --- a/addons/auth_crypt/i18n/it.po +++ b/addons/auth_crypt/i18n/it.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/mk.po b/addons/auth_crypt/i18n/mk.po index c76366879e4..a346737eb9f 100644 --- a/addons/auth_crypt/i18n/mk.po +++ b/addons/auth_crypt/i18n/mk.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/mn.po b/addons/auth_crypt/i18n/mn.po index 131101136e1..98dbc7d35e9 100644 --- a/addons/auth_crypt/i18n/mn.po +++ b/addons/auth_crypt/i18n/mn.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/nl.po b/addons/auth_crypt/i18n/nl.po index 32785cc3ba3..dda3179df82 100644 --- a/addons/auth_crypt/i18n/nl.po +++ b/addons/auth_crypt/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/pt.po b/addons/auth_crypt/i18n/pt.po index 5ce222b961d..795848e2325 100644 --- a/addons/auth_crypt/i18n/pt.po +++ b/addons/auth_crypt/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/pt_BR.po b/addons/auth_crypt/i18n/pt_BR.po index 33173625987..bbedd2d126f 100644 --- a/addons/auth_crypt/i18n/pt_BR.po +++ b/addons/auth_crypt/i18n/pt_BR.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/ro.po b/addons/auth_crypt/i18n/ro.po index daf4a7d5cf4..7f89ec57075 100644 --- a/addons/auth_crypt/i18n/ro.po +++ b/addons/auth_crypt/i18n/ro.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/ru.po b/addons/auth_crypt/i18n/ru.po index a44d1ab4ca5..305f7aa682e 100644 --- a/addons/auth_crypt/i18n/ru.po +++ b/addons/auth_crypt/i18n/ru.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/sl.po b/addons/auth_crypt/i18n/sl.po index 9cf79f46f80..ebdf1a2a12e 100644 --- a/addons/auth_crypt/i18n/sl.po +++ b/addons/auth_crypt/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/sv.po b/addons/auth_crypt/i18n/sv.po index ca82cb0c504..09d8ac04aa1 100644 --- a/addons/auth_crypt/i18n/sv.po +++ b/addons/auth_crypt/i18n/sv.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/tr.po b/addons/auth_crypt/i18n/tr.po index 05ad2e0858d..365173412d0 100644 --- a/addons/auth_crypt/i18n/tr.po +++ b/addons/auth_crypt/i18n/tr.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_crypt/i18n/zh_CN.po b/addons/auth_crypt/i18n/zh_CN.po index 3bae892233d..c387c7ea6d9 100644 --- a/addons/auth_crypt/i18n/zh_CN.po +++ b/addons/auth_crypt/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_crypt diff --git a/addons/auth_ldap/i18n/ar.po b/addons/auth_ldap/i18n/ar.po index 3570a50167c..cd79abd6065 100644 --- a/addons/auth_ldap/i18n/ar.po +++ b/addons/auth_ldap/i18n/ar.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/bg.po b/addons/auth_ldap/i18n/bg.po index 672a72c3034..415c141680f 100644 --- a/addons/auth_ldap/i18n/bg.po +++ b/addons/auth_ldap/i18n/bg.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/ca.po b/addons/auth_ldap/i18n/ca.po index 5e56fe4e5ab..7d91ebe249a 100644 --- a/addons/auth_ldap/i18n/ca.po +++ b/addons/auth_ldap/i18n/ca.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/da.po b/addons/auth_ldap/i18n/da.po index 4de4a93a217..e32aabd1b11 100644 --- a/addons/auth_ldap/i18n/da.po +++ b/addons/auth_ldap/i18n/da.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/de.po b/addons/auth_ldap/i18n/de.po index ec1329f9ca8..a969a2b6999 100644 --- a/addons/auth_ldap/i18n/de.po +++ b/addons/auth_ldap/i18n/de.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/en_GB.po b/addons/auth_ldap/i18n/en_GB.po index b32fea2524e..37ae682e455 100644 --- a/addons/auth_ldap/i18n/en_GB.po +++ b/addons/auth_ldap/i18n/en_GB.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/es.po b/addons/auth_ldap/i18n/es.po index 0a9d93a4eab..03307d8020c 100644 --- a/addons/auth_ldap/i18n/es.po +++ b/addons/auth_ldap/i18n/es.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/es_CR.po b/addons/auth_ldap/i18n/es_CR.po index 23018240da7..e7c79831362 100644 --- a/addons/auth_ldap/i18n/es_CR.po +++ b/addons/auth_ldap/i18n/es_CR.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/auth_ldap/i18n/fi.po b/addons/auth_ldap/i18n/fi.po index cf37f2a9f88..590814cced0 100644 --- a/addons/auth_ldap/i18n/fi.po +++ b/addons/auth_ldap/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/fr.po b/addons/auth_ldap/i18n/fr.po index 7a119628490..9750136aff3 100644 --- a/addons/auth_ldap/i18n/fr.po +++ b/addons/auth_ldap/i18n/fr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/gl.po b/addons/auth_ldap/i18n/gl.po index a1de0ed4e54..acfd919f853 100644 --- a/addons/auth_ldap/i18n/gl.po +++ b/addons/auth_ldap/i18n/gl.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/hr.po b/addons/auth_ldap/i18n/hr.po index 7dbaa60f1ec..5e7c393eb98 100644 --- a/addons/auth_ldap/i18n/hr.po +++ b/addons/auth_ldap/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/hu.po b/addons/auth_ldap/i18n/hu.po index 0f8abf35dcb..03c97b8b244 100644 --- a/addons/auth_ldap/i18n/hu.po +++ b/addons/auth_ldap/i18n/hu.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/it.po b/addons/auth_ldap/i18n/it.po index 4a27b65dc17..fa89bdd610d 100644 --- a/addons/auth_ldap/i18n/it.po +++ b/addons/auth_ldap/i18n/it.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/ja.po b/addons/auth_ldap/i18n/ja.po index a1af1b22227..69756b45e28 100644 --- a/addons/auth_ldap/i18n/ja.po +++ b/addons/auth_ldap/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/mk.po b/addons/auth_ldap/i18n/mk.po index 1809cea365e..7e0bb375468 100644 --- a/addons/auth_ldap/i18n/mk.po +++ b/addons/auth_ldap/i18n/mk.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/mn.po b/addons/auth_ldap/i18n/mn.po index 8e24578e4aa..bf79f5f54db 100644 --- a/addons/auth_ldap/i18n/mn.po +++ b/addons/auth_ldap/i18n/mn.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/nb.po b/addons/auth_ldap/i18n/nb.po index f8cda043ebc..402237590ea 100644 --- a/addons/auth_ldap/i18n/nb.po +++ b/addons/auth_ldap/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/nl.po b/addons/auth_ldap/i18n/nl.po index f49cda0e5b4..500f3fe6f42 100644 --- a/addons/auth_ldap/i18n/nl.po +++ b/addons/auth_ldap/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/pl.po b/addons/auth_ldap/i18n/pl.po index 07cc7299a95..c60fa3cc710 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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/pt.po b/addons/auth_ldap/i18n/pt.po index 05037b447a1..63e896cfaf9 100644 --- a/addons/auth_ldap/i18n/pt.po +++ b/addons/auth_ldap/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/pt_BR.po b/addons/auth_ldap/i18n/pt_BR.po index cd3cc9046a2..1002a056ff6 100644 --- a/addons/auth_ldap/i18n/pt_BR.po +++ b/addons/auth_ldap/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/ro.po b/addons/auth_ldap/i18n/ro.po index 16eb1f8bf28..ac1f58ebda2 100644 --- a/addons/auth_ldap/i18n/ro.po +++ b/addons/auth_ldap/i18n/ro.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/ru.po b/addons/auth_ldap/i18n/ru.po index 7859d380bad..72ec1751701 100644 --- a/addons/auth_ldap/i18n/ru.po +++ b/addons/auth_ldap/i18n/ru.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/sl.po b/addons/auth_ldap/i18n/sl.po index 1a7e0796bda..bdf02f35cc6 100644 --- a/addons/auth_ldap/i18n/sl.po +++ b/addons/auth_ldap/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/sv.po b/addons/auth_ldap/i18n/sv.po index 959dec286da..3be5e98d60a 100644 --- a/addons/auth_ldap/i18n/sv.po +++ b/addons/auth_ldap/i18n/sv.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/tr.po b/addons/auth_ldap/i18n/tr.po index 5df44805bdc..da0aeca96a8 100644 --- a/addons/auth_ldap/i18n/tr.po +++ b/addons/auth_ldap/i18n/tr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/zh_CN.po b/addons/auth_ldap/i18n/zh_CN.po index ca3a962879a..96091816cd8 100644 --- a/addons/auth_ldap/i18n/zh_CN.po +++ b/addons/auth_ldap/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_ldap diff --git a/addons/auth_oauth/i18n/ar.po b/addons/auth_oauth/i18n/ar.po index 33546ec1e40..894a16f3691 100644 --- a/addons/auth_oauth/i18n/ar.po +++ b/addons/auth_oauth/i18n/ar.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/de.po b/addons/auth_oauth/i18n/de.po index 29ded0357ce..44b8374db1f 100644 --- a/addons/auth_oauth/i18n/de.po +++ b/addons/auth_oauth/i18n/de.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/en_GB.po b/addons/auth_oauth/i18n/en_GB.po index b07a866fccf..91cb2d22f07 100644 --- a/addons/auth_oauth/i18n/en_GB.po +++ b/addons/auth_oauth/i18n/en_GB.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/es.po b/addons/auth_oauth/i18n/es.po index 91d3a083531..fa772abb467 100644 --- a/addons/auth_oauth/i18n/es.po +++ b/addons/auth_oauth/i18n/es.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/fr.po b/addons/auth_oauth/i18n/fr.po index 98275840a71..ee2e4f10d64 100644 --- a/addons/auth_oauth/i18n/fr.po +++ b/addons/auth_oauth/i18n/fr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/hr.po b/addons/auth_oauth/i18n/hr.po index bb1fac5dda0..1c8f67d872d 100644 --- a/addons/auth_oauth/i18n/hr.po +++ b/addons/auth_oauth/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/it.po b/addons/auth_oauth/i18n/it.po index b13cde3c323..022067ebe7e 100644 --- a/addons/auth_oauth/i18n/it.po +++ b/addons/auth_oauth/i18n/it.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/mk.po b/addons/auth_oauth/i18n/mk.po index e02f8fb7f79..4a9b5c250d7 100644 --- a/addons/auth_oauth/i18n/mk.po +++ b/addons/auth_oauth/i18n/mk.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/nb.po b/addons/auth_oauth/i18n/nb.po index 41a460183f5..4dad4c278eb 100644 --- a/addons/auth_oauth/i18n/nb.po +++ b/addons/auth_oauth/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/nl.po b/addons/auth_oauth/i18n/nl.po index b8185dffe61..3f5969f2edb 100644 --- a/addons/auth_oauth/i18n/nl.po +++ b/addons/auth_oauth/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/pl.po b/addons/auth_oauth/i18n/pl.po index 6634d8dc081..a3724decd38 100644 --- a/addons/auth_oauth/i18n/pl.po +++ b/addons/auth_oauth/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/pt.po b/addons/auth_oauth/i18n/pt.po index ba220678d16..67c57a0060a 100644 --- a/addons/auth_oauth/i18n/pt.po +++ b/addons/auth_oauth/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/pt_BR.po b/addons/auth_oauth/i18n/pt_BR.po index dad659e92f6..fbf4df163d2 100644 --- a/addons/auth_oauth/i18n/pt_BR.po +++ b/addons/auth_oauth/i18n/pt_BR.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/ro.po b/addons/auth_oauth/i18n/ro.po index 318206b71c5..cc08fcef3c0 100644 --- a/addons/auth_oauth/i18n/ro.po +++ b/addons/auth_oauth/i18n/ro.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/sl.po b/addons/auth_oauth/i18n/sl.po index c09a86929ba..87fa798eb3a 100644 --- a/addons/auth_oauth/i18n/sl.po +++ b/addons/auth_oauth/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/sv.po b/addons/auth_oauth/i18n/sv.po index 6c4b7466157..c3d9ed591eb 100644 --- a/addons/auth_oauth/i18n/sv.po +++ b/addons/auth_oauth/i18n/sv.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth/i18n/zh_CN.po b/addons/auth_oauth/i18n/zh_CN.po index ef4aad71355..2d96549aa94 100644 --- a/addons/auth_oauth/i18n/zh_CN.po +++ b/addons/auth_oauth/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth diff --git a/addons/auth_oauth_signup/i18n/de.po b/addons/auth_oauth_signup/i18n/de.po index 5862dc560c9..0c1313d0bfc 100644 --- a/addons/auth_oauth_signup/i18n/de.po +++ b/addons/auth_oauth_signup/i18n/de.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/en_GB.po b/addons/auth_oauth_signup/i18n/en_GB.po index 4c6218a9e24..6ff8b2f2816 100644 --- a/addons/auth_oauth_signup/i18n/en_GB.po +++ b/addons/auth_oauth_signup/i18n/en_GB.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/es.po b/addons/auth_oauth_signup/i18n/es.po index 38fcc944b88..03407ccfe6c 100644 --- a/addons/auth_oauth_signup/i18n/es.po +++ b/addons/auth_oauth_signup/i18n/es.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/fr.po b/addons/auth_oauth_signup/i18n/fr.po index 7b71d6c2773..702a71e4753 100644 --- a/addons/auth_oauth_signup/i18n/fr.po +++ b/addons/auth_oauth_signup/i18n/fr.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/hr.po b/addons/auth_oauth_signup/i18n/hr.po index 9cae8d7239f..67701415754 100644 --- a/addons/auth_oauth_signup/i18n/hr.po +++ b/addons/auth_oauth_signup/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/it.po b/addons/auth_oauth_signup/i18n/it.po index e2072e72dad..834ce412899 100644 --- a/addons/auth_oauth_signup/i18n/it.po +++ b/addons/auth_oauth_signup/i18n/it.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/mk.po b/addons/auth_oauth_signup/i18n/mk.po index 6a95baaffb3..038c132f534 100644 --- a/addons/auth_oauth_signup/i18n/mk.po +++ b/addons/auth_oauth_signup/i18n/mk.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/mn.po b/addons/auth_oauth_signup/i18n/mn.po index 527cb70bd0b..54dd78c7337 100644 --- a/addons/auth_oauth_signup/i18n/mn.po +++ b/addons/auth_oauth_signup/i18n/mn.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/nl.po b/addons/auth_oauth_signup/i18n/nl.po index 38e7f029441..b3342a61737 100644 --- a/addons/auth_oauth_signup/i18n/nl.po +++ b/addons/auth_oauth_signup/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/pt.po b/addons/auth_oauth_signup/i18n/pt.po index bf49c673a5d..4ccfbbde324 100644 --- a/addons/auth_oauth_signup/i18n/pt.po +++ b/addons/auth_oauth_signup/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/pt_BR.po b/addons/auth_oauth_signup/i18n/pt_BR.po index 36a6018193e..616b375e9ca 100644 --- a/addons/auth_oauth_signup/i18n/pt_BR.po +++ b/addons/auth_oauth_signup/i18n/pt_BR.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/ro.po b/addons/auth_oauth_signup/i18n/ro.po index 8062aa5d707..95c00b28097 100644 --- a/addons/auth_oauth_signup/i18n/ro.po +++ b/addons/auth_oauth_signup/i18n/ro.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/ru.po b/addons/auth_oauth_signup/i18n/ru.po index 9d44bd284a1..ca78920bc72 100644 --- a/addons/auth_oauth_signup/i18n/ru.po +++ b/addons/auth_oauth_signup/i18n/ru.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/sl.po b/addons/auth_oauth_signup/i18n/sl.po index 7113cf33035..59c1a2c2dfb 100644 --- a/addons/auth_oauth_signup/i18n/sl.po +++ b/addons/auth_oauth_signup/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/sv.po b/addons/auth_oauth_signup/i18n/sv.po index a7067029e7b..9ae4f6ae63b 100644 --- a/addons/auth_oauth_signup/i18n/sv.po +++ b/addons/auth_oauth_signup/i18n/sv.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/tr.po b/addons/auth_oauth_signup/i18n/tr.po index e1616bb0eea..f7066474cc0 100644 --- a/addons/auth_oauth_signup/i18n/tr.po +++ b/addons/auth_oauth_signup/i18n/tr.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/zh_CN.po b/addons/auth_oauth_signup/i18n/zh_CN.po index 5b45a8ae948..40f6fa0b60c 100644 --- a/addons/auth_oauth_signup/i18n/zh_CN.po +++ b/addons/auth_oauth_signup/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_oauth_signup/i18n/zh_TW.po b/addons/auth_oauth_signup/i18n/zh_TW.po index 877fca8b385..47281890fe8 100644 --- a/addons/auth_oauth_signup/i18n/zh_TW.po +++ b/addons/auth_oauth_signup/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_oauth_signup diff --git a/addons/auth_openid/i18n/ar.po b/addons/auth_openid/i18n/ar.po index 426d5dbef3d..16dbdd0de86 100644 --- a/addons/auth_openid/i18n/ar.po +++ b/addons/auth_openid/i18n/ar.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/de.po b/addons/auth_openid/i18n/de.po index 6a877d2a0b2..3264432953e 100644 --- a/addons/auth_openid/i18n/de.po +++ b/addons/auth_openid/i18n/de.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/en_GB.po b/addons/auth_openid/i18n/en_GB.po index 194a106a469..bc40672e80c 100644 --- a/addons/auth_openid/i18n/en_GB.po +++ b/addons/auth_openid/i18n/en_GB.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/es.po b/addons/auth_openid/i18n/es.po index 14d3dd7260c..afaf22e3ccf 100644 --- a/addons/auth_openid/i18n/es.po +++ b/addons/auth_openid/i18n/es.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/es_CR.po b/addons/auth_openid/i18n/es_CR.po index da113f90b85..cacb19c39b7 100644 --- a/addons/auth_openid/i18n/es_CR.po +++ b/addons/auth_openid/i18n/es_CR.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/fi.po b/addons/auth_openid/i18n/fi.po index caae5007315..ae90908c3fd 100644 --- a/addons/auth_openid/i18n/fi.po +++ b/addons/auth_openid/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/fr.po b/addons/auth_openid/i18n/fr.po index 5f303b78c3a..f0aff08a410 100644 --- a/addons/auth_openid/i18n/fr.po +++ b/addons/auth_openid/i18n/fr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/gu.po b/addons/auth_openid/i18n/gu.po index 1f41ea395ec..42ca0d92c0e 100644 --- a/addons/auth_openid/i18n/gu.po +++ b/addons/auth_openid/i18n/gu.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/hr.po b/addons/auth_openid/i18n/hr.po index e71608cea45..532877a2f36 100644 --- a/addons/auth_openid/i18n/hr.po +++ b/addons/auth_openid/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/it.po b/addons/auth_openid/i18n/it.po index 5c214a90c76..1a3a21406e8 100644 --- a/addons/auth_openid/i18n/it.po +++ b/addons/auth_openid/i18n/it.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/ja.po b/addons/auth_openid/i18n/ja.po index d5d3b5cd92d..7885c01f309 100644 --- a/addons/auth_openid/i18n/ja.po +++ b/addons/auth_openid/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/mk.po b/addons/auth_openid/i18n/mk.po index 6f8a4eb58f1..2ff735697bc 100644 --- a/addons/auth_openid/i18n/mk.po +++ b/addons/auth_openid/i18n/mk.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/mn.po b/addons/auth_openid/i18n/mn.po index 3215af3dcb0..6953e0299ba 100644 --- a/addons/auth_openid/i18n/mn.po +++ b/addons/auth_openid/i18n/mn.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/nb.po b/addons/auth_openid/i18n/nb.po index f5ea7b4bfb0..eb1da5fb79b 100644 --- a/addons/auth_openid/i18n/nb.po +++ b/addons/auth_openid/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/nl.po b/addons/auth_openid/i18n/nl.po index 57e8a21d0d5..944a4e67c05 100644 --- a/addons/auth_openid/i18n/nl.po +++ b/addons/auth_openid/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/pl.po b/addons/auth_openid/i18n/pl.po index b14e48b1cba..5bb8923e0e2 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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/pt.po b/addons/auth_openid/i18n/pt.po index 24872bab13d..b42f2acb5a2 100644 --- a/addons/auth_openid/i18n/pt.po +++ b/addons/auth_openid/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/pt_BR.po b/addons/auth_openid/i18n/pt_BR.po index d91aa1d269d..f0bb4f39be4 100644 --- a/addons/auth_openid/i18n/pt_BR.po +++ b/addons/auth_openid/i18n/pt_BR.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/ro.po b/addons/auth_openid/i18n/ro.po index b576009f391..0d046d0d3f2 100644 --- a/addons/auth_openid/i18n/ro.po +++ b/addons/auth_openid/i18n/ro.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/sk.po b/addons/auth_openid/i18n/sk.po index d423a206781..82e8ad0576f 100644 --- a/addons/auth_openid/i18n/sk.po +++ b/addons/auth_openid/i18n/sk.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/sl.po b/addons/auth_openid/i18n/sl.po index 89deac7da85..429aea160fd 100644 --- a/addons/auth_openid/i18n/sl.po +++ b/addons/auth_openid/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/sr@latin.po b/addons/auth_openid/i18n/sr@latin.po index e10ee96ccb6..585d0b02b65 100644 --- a/addons/auth_openid/i18n/sr@latin.po +++ b/addons/auth_openid/i18n/sr@latin.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/sv.po b/addons/auth_openid/i18n/sv.po index 7a126da62e4..3b50f574f6c 100644 --- a/addons/auth_openid/i18n/sv.po +++ b/addons/auth_openid/i18n/sv.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/tr.po b/addons/auth_openid/i18n/tr.po index c997f31b3e7..898406b2c5d 100644 --- a/addons/auth_openid/i18n/tr.po +++ b/addons/auth_openid/i18n/tr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_openid/i18n/zh_CN.po b/addons/auth_openid/i18n/zh_CN.po index 4464b63399f..26b3de855c6 100644 --- a/addons/auth_openid/i18n/zh_CN.po +++ b/addons/auth_openid/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_openid diff --git a/addons/auth_signup/i18n/ar.po b/addons/auth_signup/i18n/ar.po index 3826d8a8a44..5cbdac95faa 100644 --- a/addons/auth_signup/i18n/ar.po +++ b/addons/auth_signup/i18n/ar.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/de.po b/addons/auth_signup/i18n/de.po index 27403fdee46..f9e69262b1b 100644 --- a/addons/auth_signup/i18n/de.po +++ b/addons/auth_signup/i18n/de.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/en_GB.po b/addons/auth_signup/i18n/en_GB.po index 1a26bb2cd17..1189cfce720 100644 --- a/addons/auth_signup/i18n/en_GB.po +++ b/addons/auth_signup/i18n/en_GB.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/es.po b/addons/auth_signup/i18n/es.po index ecb2ebcb499..7c503ab0341 100644 --- a/addons/auth_signup/i18n/es.po +++ b/addons/auth_signup/i18n/es.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/fr.po b/addons/auth_signup/i18n/fr.po index 820459efa75..25794543e01 100644 --- a/addons/auth_signup/i18n/fr.po +++ b/addons/auth_signup/i18n/fr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/hr.po b/addons/auth_signup/i18n/hr.po index 2b854f37f25..58391e04b73 100644 --- a/addons/auth_signup/i18n/hr.po +++ b/addons/auth_signup/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/hu.po b/addons/auth_signup/i18n/hu.po index 3a11a4badd8..ead6979d91c 100644 --- a/addons/auth_signup/i18n/hu.po +++ b/addons/auth_signup/i18n/hu.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/it.po b/addons/auth_signup/i18n/it.po index 26edff7ecde..a3d2793f561 100644 --- a/addons/auth_signup/i18n/it.po +++ b/addons/auth_signup/i18n/it.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/mk.po b/addons/auth_signup/i18n/mk.po index 2ef28cf06df..7c284c562b0 100644 --- a/addons/auth_signup/i18n/mk.po +++ b/addons/auth_signup/i18n/mk.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/mn.po b/addons/auth_signup/i18n/mn.po index 056cfd865a7..256ea4ddd7f 100644 --- a/addons/auth_signup/i18n/mn.po +++ b/addons/auth_signup/i18n/mn.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/nb.po b/addons/auth_signup/i18n/nb.po index 326b6ef3c43..3a75fa2151b 100644 --- a/addons/auth_signup/i18n/nb.po +++ b/addons/auth_signup/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/nl.po b/addons/auth_signup/i18n/nl.po index 37a291b70b3..54dff6f76db 100644 --- a/addons/auth_signup/i18n/nl.po +++ b/addons/auth_signup/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/pl.po b/addons/auth_signup/i18n/pl.po index ddb00e9344f..28e2870a8c2 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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/pt.po b/addons/auth_signup/i18n/pt.po index 7454fc483a7..97470c16f45 100644 --- a/addons/auth_signup/i18n/pt.po +++ b/addons/auth_signup/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/pt_BR.po b/addons/auth_signup/i18n/pt_BR.po index 4c3ef07cd85..e4b65c0dc8f 100644 --- a/addons/auth_signup/i18n/pt_BR.po +++ b/addons/auth_signup/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/ro.po b/addons/auth_signup/i18n/ro.po index 83d2024ae43..82f2f972553 100644 --- a/addons/auth_signup/i18n/ro.po +++ b/addons/auth_signup/i18n/ro.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/ru.po b/addons/auth_signup/i18n/ru.po index 5e3ac5b5a10..bddc6cde1ba 100644 --- a/addons/auth_signup/i18n/ru.po +++ b/addons/auth_signup/i18n/ru.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/sl.po b/addons/auth_signup/i18n/sl.po index 591b9c7a47a..d547ca69084 100644 --- a/addons/auth_signup/i18n/sl.po +++ b/addons/auth_signup/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/tr.po b/addons/auth_signup/i18n/tr.po index 3d4d109fa15..3a78441e7f8 100644 --- a/addons/auth_signup/i18n/tr.po +++ b/addons/auth_signup/i18n/tr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/zh_CN.po b/addons/auth_signup/i18n/zh_CN.po index a373adef641..333dd1be2dc 100644 --- a/addons/auth_signup/i18n/zh_CN.po +++ b/addons/auth_signup/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: auth_signup diff --git a/addons/base_action_rule/i18n/ar.po b/addons/base_action_rule/i18n/ar.po index c03f1114a62..a4377543f14 100644 --- a/addons/base_action_rule/i18n/ar.po +++ b/addons/base_action_rule/i18n/ar.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/bg.po b/addons/base_action_rule/i18n/bg.po index 0c391f391c7..a8c84dcc1b9 100644 --- a/addons/base_action_rule/i18n/bg.po +++ b/addons/base_action_rule/i18n/bg.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/bs.po b/addons/base_action_rule/i18n/bs.po index 0ec38123cec..5a33cb2e294 100644 --- a/addons/base_action_rule/i18n/bs.po +++ b/addons/base_action_rule/i18n/bs.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/ca.po b/addons/base_action_rule/i18n/ca.po index e95133dfa78..75950e58009 100644 --- a/addons/base_action_rule/i18n/ca.po +++ b/addons/base_action_rule/i18n/ca.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/cs.po b/addons/base_action_rule/i18n/cs.po index f5008ce5d01..7a65d9336ff 100644 --- a/addons/base_action_rule/i18n/cs.po +++ b/addons/base_action_rule/i18n/cs.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/da.po b/addons/base_action_rule/i18n/da.po index b151132b885..a005c95b6a5 100644 --- a/addons/base_action_rule/i18n/da.po +++ b/addons/base_action_rule/i18n/da.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/de.po b/addons/base_action_rule/i18n/de.po index 446c59da1eb..22169c55da4 100644 --- a/addons/base_action_rule/i18n/de.po +++ b/addons/base_action_rule/i18n/de.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/el.po b/addons/base_action_rule/i18n/el.po index 5d352e68e09..0619ff54faf 100644 --- a/addons/base_action_rule/i18n/el.po +++ b/addons/base_action_rule/i18n/el.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/es.po b/addons/base_action_rule/i18n/es.po index 7ebe3c8fce6..5ba02307b45 100644 --- a/addons/base_action_rule/i18n/es.po +++ b/addons/base_action_rule/i18n/es.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/es_CR.po b/addons/base_action_rule/i18n/es_CR.po index 8f082f72ed5..7f0d6c8d016 100644 --- a/addons/base_action_rule/i18n/es_CR.po +++ b/addons/base_action_rule/i18n/es_CR.po @@ -15,7 +15,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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/base_action_rule/i18n/es_EC.po b/addons/base_action_rule/i18n/es_EC.po index abf515309b6..2216ea3ae1e 100644 --- a/addons/base_action_rule/i18n/es_EC.po +++ b/addons/base_action_rule/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/es_PY.po b/addons/base_action_rule/i18n/es_PY.po index e4669eef618..ff190b1f4bd 100644 --- a/addons/base_action_rule/i18n/es_PY.po +++ b/addons/base_action_rule/i18n/es_PY.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/fa.po b/addons/base_action_rule/i18n/fa.po index 3455ed274fd..e3062815dc5 100644 --- a/addons/base_action_rule/i18n/fa.po +++ b/addons/base_action_rule/i18n/fa.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/fi.po b/addons/base_action_rule/i18n/fi.po index 80392959960..e424734e526 100644 --- a/addons/base_action_rule/i18n/fi.po +++ b/addons/base_action_rule/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/fr.po b/addons/base_action_rule/i18n/fr.po index 6a665672f00..affdadbcca2 100644 --- a/addons/base_action_rule/i18n/fr.po +++ b/addons/base_action_rule/i18n/fr.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/gl.po b/addons/base_action_rule/i18n/gl.po index 3181fdc7688..bc9f72ecefd 100644 --- a/addons/base_action_rule/i18n/gl.po +++ b/addons/base_action_rule/i18n/gl.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/gu.po b/addons/base_action_rule/i18n/gu.po index c67d729e0e3..034feda5723 100644 --- a/addons/base_action_rule/i18n/gu.po +++ b/addons/base_action_rule/i18n/gu.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/hr.po b/addons/base_action_rule/i18n/hr.po index 219adcc7942..796e1ce2eba 100644 --- a/addons/base_action_rule/i18n/hr.po +++ b/addons/base_action_rule/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/hu.po b/addons/base_action_rule/i18n/hu.po index d9f4185c514..475ef9a70ee 100644 --- a/addons/base_action_rule/i18n/hu.po +++ b/addons/base_action_rule/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/it.po b/addons/base_action_rule/i18n/it.po index 2a570b7ef1d..e6fac54d83e 100644 --- a/addons/base_action_rule/i18n/it.po +++ b/addons/base_action_rule/i18n/it.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/ja.po b/addons/base_action_rule/i18n/ja.po index 2e942e57101..4ba033d2293 100644 --- a/addons/base_action_rule/i18n/ja.po +++ b/addons/base_action_rule/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/lt.po b/addons/base_action_rule/i18n/lt.po index 46ec58fc0e4..2795d1f3b8d 100644 --- a/addons/base_action_rule/i18n/lt.po +++ b/addons/base_action_rule/i18n/lt.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/lv.po b/addons/base_action_rule/i18n/lv.po index be2e19c41fa..3ba51babe47 100644 --- a/addons/base_action_rule/i18n/lv.po +++ b/addons/base_action_rule/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/mk.po b/addons/base_action_rule/i18n/mk.po index e5ae235e641..25366d5f367 100644 --- a/addons/base_action_rule/i18n/mk.po +++ b/addons/base_action_rule/i18n/mk.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/mn.po b/addons/base_action_rule/i18n/mn.po index e4197bc4fed..25f87f25c84 100644 --- a/addons/base_action_rule/i18n/mn.po +++ b/addons/base_action_rule/i18n/mn.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/nb.po b/addons/base_action_rule/i18n/nb.po index f86934af0bf..90fda28128b 100644 --- a/addons/base_action_rule/i18n/nb.po +++ b/addons/base_action_rule/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/nl.po b/addons/base_action_rule/i18n/nl.po index 8133f534699..0240a34e0a5 100644 --- a/addons/base_action_rule/i18n/nl.po +++ b/addons/base_action_rule/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/pl.po b/addons/base_action_rule/i18n/pl.po index 59a7c4ae3b8..58d8cb483a5 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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/pt.po b/addons/base_action_rule/i18n/pt.po index 9b4a67944ef..1edea6bb995 100644 --- a/addons/base_action_rule/i18n/pt.po +++ b/addons/base_action_rule/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/pt_BR.po b/addons/base_action_rule/i18n/pt_BR.po index 2191a65b404..787c312e594 100644 --- a/addons/base_action_rule/i18n/pt_BR.po +++ b/addons/base_action_rule/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/ro.po b/addons/base_action_rule/i18n/ro.po index 0315a5c4d2d..ab842f4e7ee 100644 --- a/addons/base_action_rule/i18n/ro.po +++ b/addons/base_action_rule/i18n/ro.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/ru.po b/addons/base_action_rule/i18n/ru.po index 70ad2d556fa..c8673c26815 100644 --- a/addons/base_action_rule/i18n/ru.po +++ b/addons/base_action_rule/i18n/ru.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/sl.po b/addons/base_action_rule/i18n/sl.po index 8fbf69dc2b9..7549ba38b0a 100644 --- a/addons/base_action_rule/i18n/sl.po +++ b/addons/base_action_rule/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/sq.po b/addons/base_action_rule/i18n/sq.po index 29807f9b364..16c174621d5 100644 --- a/addons/base_action_rule/i18n/sq.po +++ b/addons/base_action_rule/i18n/sq.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/sr.po b/addons/base_action_rule/i18n/sr.po index 86a839c4704..a8a638f850e 100644 --- a/addons/base_action_rule/i18n/sr.po +++ b/addons/base_action_rule/i18n/sr.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/sr@latin.po b/addons/base_action_rule/i18n/sr@latin.po index 98b39a82743..208272808bd 100644 --- a/addons/base_action_rule/i18n/sr@latin.po +++ b/addons/base_action_rule/i18n/sr@latin.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/sv.po b/addons/base_action_rule/i18n/sv.po index e329ecb7088..8d91377706e 100644 --- a/addons/base_action_rule/i18n/sv.po +++ b/addons/base_action_rule/i18n/sv.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/tr.po b/addons/base_action_rule/i18n/tr.po index 05004c59763..5865ab80580 100644 --- a/addons/base_action_rule/i18n/tr.po +++ b/addons/base_action_rule/i18n/tr.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/zh_CN.po b/addons/base_action_rule/i18n/zh_CN.po index 1eb2e04c2de..19651bea3ea 100644 --- a/addons/base_action_rule/i18n/zh_CN.po +++ b/addons/base_action_rule/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/zh_TW.po b/addons/base_action_rule/i18n/zh_TW.po index be382acdfeb..01c74b0cf59 100644 --- a/addons/base_action_rule/i18n/zh_TW.po +++ b/addons/base_action_rule/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_action_rule diff --git a/addons/base_calendar/i18n/af.po b/addons/base_calendar/i18n/af.po index 43b1aff9c55..aa7872e0d23 100644 --- a/addons/base_calendar/i18n/af.po +++ b/addons/base_calendar/i18n/af.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/ar.po b/addons/base_calendar/i18n/ar.po index 2db3419a5db..1474bc80b7a 100644 --- a/addons/base_calendar/i18n/ar.po +++ b/addons/base_calendar/i18n/ar.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/bg.po b/addons/base_calendar/i18n/bg.po index bd2cb840a68..7ac39e90b15 100644 --- a/addons/base_calendar/i18n/bg.po +++ b/addons/base_calendar/i18n/bg.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/bn.po b/addons/base_calendar/i18n/bn.po index c41bb769e2e..d365e5cd3a6 100644 --- a/addons/base_calendar/i18n/bn.po +++ b/addons/base_calendar/i18n/bn.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/bs.po b/addons/base_calendar/i18n/bs.po index 0da3ad65f56..cd4b1f6ca19 100644 --- a/addons/base_calendar/i18n/bs.po +++ b/addons/base_calendar/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: BOSNIA AND HERZEGOVINA\n" "Language: hr\n" diff --git a/addons/base_calendar/i18n/ca.po b/addons/base_calendar/i18n/ca.po index f7d2d7d94bb..b829f34e483 100644 --- a/addons/base_calendar/i18n/ca.po +++ b/addons/base_calendar/i18n/ca.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/cs.po b/addons/base_calendar/i18n/cs.po index b39cdcd8f21..d40c0b4bb30 100644 --- a/addons/base_calendar/i18n/cs.po +++ b/addons/base_calendar/i18n/cs.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/da.po b/addons/base_calendar/i18n/da.po index 3d805f48528..b3db05e9164 100644 --- a/addons/base_calendar/i18n/da.po +++ b/addons/base_calendar/i18n/da.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/de.po b/addons/base_calendar/i18n/de.po index 20ab130d5fd..9a15df9d0eb 100644 --- a/addons/base_calendar/i18n/de.po +++ b/addons/base_calendar/i18n/de.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/el.po b/addons/base_calendar/i18n/el.po index 1b70e819bc1..25bca497058 100644 --- a/addons/base_calendar/i18n/el.po +++ b/addons/base_calendar/i18n/el.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/es.po b/addons/base_calendar/i18n/es.po index ca4b0b7b6cd..8e4f3352d2b 100644 --- a/addons/base_calendar/i18n/es.po +++ b/addons/base_calendar/i18n/es.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/es_CR.po b/addons/base_calendar/i18n/es_CR.po index bacfdc0f16e..121b9b7652c 100644 --- a/addons/base_calendar/i18n/es_CR.po +++ b/addons/base_calendar/i18n/es_CR.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/base_calendar/i18n/es_EC.po b/addons/base_calendar/i18n/es_EC.po index 2af1d6a3332..d1c66eca99f 100644 --- a/addons/base_calendar/i18n/es_EC.po +++ b/addons/base_calendar/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/es_PY.po b/addons/base_calendar/i18n/es_PY.po index d7be5c699ca..6c1f18d8277 100644 --- a/addons/base_calendar/i18n/es_PY.po +++ b/addons/base_calendar/i18n/es_PY.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/et.po b/addons/base_calendar/i18n/et.po index d1121c05bc7..57bc8e5dd4f 100644 --- a/addons/base_calendar/i18n/et.po +++ b/addons/base_calendar/i18n/et.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/fa.po b/addons/base_calendar/i18n/fa.po index 0c475f8b082..75c914f4773 100644 --- a/addons/base_calendar/i18n/fa.po +++ b/addons/base_calendar/i18n/fa.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/fi.po b/addons/base_calendar/i18n/fi.po index 7d031f4450f..74dd324cc89 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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/fr.po b/addons/base_calendar/i18n/fr.po index d6bbe472dbf..9196823dfd6 100644 --- a/addons/base_calendar/i18n/fr.po +++ b/addons/base_calendar/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/gl.po b/addons/base_calendar/i18n/gl.po index 6d90b95ea77..ed24ea35584 100644 --- a/addons/base_calendar/i18n/gl.po +++ b/addons/base_calendar/i18n/gl.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/hr.po b/addons/base_calendar/i18n/hr.po index 996a1560152..faaea757be8 100644 --- a/addons/base_calendar/i18n/hr.po +++ b/addons/base_calendar/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/hu.po b/addons/base_calendar/i18n/hu.po index add28a3dc6a..3ddba871eff 100644 --- a/addons/base_calendar/i18n/hu.po +++ b/addons/base_calendar/i18n/hu.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-05-10 18:13+0000\n" -"Last-Translator: Krisztian Eyssen \n" +"PO-Revision-Date: 2013-03-18 00:17+0000\n" +"Last-Translator: krnkris \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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-18 04:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar @@ -35,13 +35,15 @@ msgid "" "This property defines the list of date/time exceptions for a recurring " "calendar component." msgstr "" +"Ez a tulajdonság meghatározza a visszatérő naptári bejegyzések dátum/idő " +"kivétel listáját" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Week(s)" -msgstr "" +msgstr "Hét(ek)" #. module: base_calendar #: field:calendar.event,we:0 @@ -53,7 +55,7 @@ msgstr "Sze" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Unknown" -msgstr "" +msgstr "Ismeretlen" #. module: base_calendar #: help:calendar.event,recurrency:0 @@ -65,7 +67,7 @@ msgstr "Ismétlődő megbeszélések" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 msgid "Feedback Meeting" -msgstr "" +msgstr "Visszajelzés a találkozóról" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view @@ -136,13 +138,13 @@ msgstr "Március" #. module: base_calendar #: help:calendar.attendee,cutype:0 msgid "Specify the type of Invitation" -msgstr "" +msgstr "Határozza meg a meghívó típusát" #. module: base_calendar #: view:crm.meeting:0 #: field:crm.meeting,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Olvasatlan üzenetek" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -176,22 +178,22 @@ msgstr "Szabad" #. module: base_calendar #: help:crm.meeting,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ha be van jelölve, akkor figyelje az új üzeneteket." #. module: base_calendar #: help:calendar.attendee,rsvp:0 msgid "Indicats whether the favor of a reply is requested" -msgstr "" +msgstr "Jelzi, hogy szükséges-e válasz írása" #. module: base_calendar #: field:calendar.alarm,alarm_id:0 msgid "Basic Alarm" -msgstr "" +msgstr "Alap riasztás" #. module: base_calendar #: help:calendar.attendee,delegated_to:0 msgid "The users that the original request was delegated to" -msgstr "" +msgstr "A felhasználó akinek az eredeti igény be lett nyújtva" #. module: base_calendar #: field:calendar.attendee,ref:0 @@ -228,12 +230,12 @@ msgstr "Utolsó" #. module: base_calendar #: help:crm.meeting,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Üzenetek és kommunikációs történet" #. module: base_calendar #: field:crm.meeting,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Üzenetek" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -244,7 +246,7 @@ msgstr "Napok" #. module: base_calendar #: view:calendar.event:0 msgid "To" -msgstr "" +msgstr "Címzett" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:1260 @@ -260,7 +262,7 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "My Meetings" -msgstr "" +msgstr "Találkozóim" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -294,22 +296,22 @@ msgstr "Megjelenítés" #. module: base_calendar #: help:calendar.attendee,state:0 msgid "Status of the attendee's participation" -msgstr "" +msgstr "A látogatók részvételi helyzete" #. module: base_calendar #: view:crm.meeting:0 msgid "Mail To" -msgstr "" +msgstr "Címzett" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "" +msgstr "Találkozó tárgya" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Ismétlődés vége" #. module: base_calendar #: view:calendar.event:0 @@ -319,7 +321,7 @@ msgstr "Csoportosítás..." #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency Option" -msgstr "" +msgstr "Ismétlődés lehetőségei" #. module: base_calendar #: view:calendar.event:0 @@ -330,7 +332,7 @@ msgstr "Válassza ki azt a napot, amikor a találkozó ismétlődjön" #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "" +msgstr "Találkozók" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -348,7 +350,7 @@ msgstr "Esemény vége" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "" +msgstr "Lehetséges részvétel" #. module: base_calendar #: help:crm.meeting,message_summary:0 @@ -356,6 +358,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"A chettelés összegzést megállítja (üzenetek száma,...). Ez az összegzés " +"direkt HTML formátumú ahhoz hogy beilleszthető legyen a kanban nézetekbe." #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 @@ -375,6 +379,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the " "event alarm information without removing it." msgstr "" +"Ha az aktív mező igazra állított, akkor lehetősége van a találkozó riasztási " +"információ eltüntetésére annak törlse nélkül." #. module: base_calendar #: field:calendar.alarm,repeat:0 @@ -443,7 +449,7 @@ msgstr "Megerősítés" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_todo msgid "Calendar Task" -msgstr "" +msgstr "Naptárfeladat" #. module: base_calendar #: field:calendar.event,su:0 @@ -465,7 +471,7 @@ msgstr "Emlékeztető részletei" #. module: base_calendar #: field:calendar.attendee,parent_ids:0 msgid "Delegrated From" -msgstr "" +msgstr "Megbízotti űrlap" #. module: base_calendar #: selection:calendar.event,select1:0 @@ -477,7 +483,7 @@ msgstr "A hónap napja" #. module: base_calendar #: field:crm.meeting,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Követők" #. module: base_calendar #: field:calendar.event,location:0 @@ -489,7 +495,7 @@ msgstr "Helyszín" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Participation required" -msgstr "" +msgstr "Részvétel szükséges" #. module: base_calendar #: view:calendar.event:0 @@ -497,7 +503,7 @@ msgstr "" #: field:calendar.todo,show_as:0 #: field:crm.meeting,show_as:0 msgid "Show Time as" -msgstr "" +msgstr "Mutassa az időt mint" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -513,37 +519,37 @@ msgstr "Szoba" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Run" -msgstr "" +msgstr "Futtatás" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_alarm msgid "Event alarm information" -msgstr "" +msgstr "Találkozó riasztási információ" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Count cannot be negative or 0." -msgstr "" +msgstr "Számláló nem lehet nulla vagy negatív." #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Létrehozás dátuma" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "" +msgstr "Találkozó" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Month(s)" -msgstr "" +msgstr "Hónap(ok)" #. module: base_calendar #: view:calendar.event:0 @@ -553,7 +559,7 @@ msgstr "Láthatóság" #. module: base_calendar #: field:calendar.attendee,rsvp:0 msgid "Required Reply?" -msgstr "" +msgstr "Válasz szükséges?" #. module: base_calendar #: field:calendar.event,base_calendar_url:0 @@ -565,7 +571,7 @@ msgstr "CalDAV URL" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_wizard_invite msgid "Invite wizard" -msgstr "" +msgstr "Meghívó varázsló" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -589,32 +595,32 @@ msgstr "Cs" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "" +msgstr "Találkozó részletei" #. module: base_calendar #: field:calendar.attendee,child_ids:0 msgid "Delegrated To" -msgstr "" +msgstr "Megvízás ennek" #. module: base_calendar #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "" +msgstr "A következő kapcsolatoknak nincs e-amil címük:" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Year(s)" -msgstr "" +msgstr "Év(ek)" #. module: base_calendar #: view:crm.meeting.type:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting_type #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_type msgid "Meeting Types" -msgstr "" +msgstr "Találkozó típusai" #. module: base_calendar #: field:calendar.event,create_date:0 @@ -627,12 +633,12 @@ msgstr "Létrehozás" #: selection:calendar.todo,class:0 #: selection:crm.meeting,class:0 msgid "Public for Employees" -msgstr "" +msgstr "Nyilvános az alkalmazottaknak" #. module: base_calendar #: view:crm.meeting:0 msgid "hours" -msgstr "" +msgstr "órák" #. module: base_calendar #: field:calendar.attendee,partner_id:0 @@ -649,12 +655,12 @@ msgstr "Nyelv" #: field:calendar.todo,end_date:0 #: field:crm.meeting,end_date:0 msgid "Repeat Until" -msgstr "" +msgstr "Ismétlés eddig" #. module: base_calendar #: view:crm.meeting:0 msgid "Options" -msgstr "" +msgstr "Lehetőségek" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -693,7 +699,7 @@ msgstr "Kedd" #. module: base_calendar #: field:crm.meeting,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Címkék" #. module: base_calendar #: view:calendar.event:0 @@ -703,14 +709,14 @@ msgstr "Elérhetőség" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Individual" -msgstr "" +msgstr "Önálló" #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 #: help:crm.meeting,count:0 msgid "Repeat x times" -msgstr "" +msgstr "Ismételje X ideig" #. module: base_calendar #: field:calendar.alarm,user_id:0 @@ -722,17 +728,17 @@ msgstr "Tulajdonos" #: help:calendar.todo,rrule_type:0 #: help:crm.meeting,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "" +msgstr "Találkozó automatikus ismétlése ebben az intervallumban" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar msgid "Calendar" -msgstr "" +msgstr "Naptár" #. module: base_calendar #: field:calendar.attendee,cn:0 msgid "Common name" -msgstr "" +msgstr "Ismert név" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -744,6 +750,7 @@ msgstr "Elutasítva" #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" +"A dátumonkénti csoport nem megengedett, a naptár nézetet használja helyette." #. module: base_calendar #: view:calendar.event:0 @@ -774,7 +781,7 @@ msgstr "Adatvédelem" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_alarm msgid "Basic Alarm Information" -msgstr "" +msgstr "Alap ristási információ" #. module: base_calendar #: field:calendar.event,fr:0 @@ -791,7 +798,7 @@ msgstr "Meghívó részlete" #. module: base_calendar #: field:calendar.attendee,member:0 msgid "Member" -msgstr "" +msgstr "Tag" #. module: base_calendar #: help:calendar.event,location:0 @@ -820,12 +827,12 @@ msgstr "Csatolás" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "" +msgstr "Lezárt" #. module: base_calendar #: view:calendar.event:0 msgid "From" -msgstr "" +msgstr "Kezdő dátum" #. module: base_calendar #: view:calendar.event:0 @@ -840,12 +847,12 @@ msgstr "Emlékeztető" #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "Number of repetitions" -msgstr "" +msgstr "Ismétlések száma" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "Belső találkozó" #. module: base_calendar #: view:calendar.event:0 @@ -862,7 +869,7 @@ msgstr "Események" #: field:calendar.todo,state:0 #: field:crm.meeting,state:0 msgid "Status" -msgstr "" +msgstr "Állapot" #. module: base_calendar #: help:calendar.attendee,email:0 @@ -872,7 +879,7 @@ msgstr "E-mail a meghívott személynek" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "" +msgstr "Ügyféltalálkozó" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -898,12 +905,12 @@ msgstr "Hétfő" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "" +msgstr "Nyilt beszélgetés" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model msgid "Models" -msgstr "" +msgstr "Modellek" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -922,28 +929,28 @@ msgstr "Esemény időpontja" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "Meghívók" #. module: base_calendar #: view:calendar.event:0 #: view:crm.meeting:0 msgid "The" -msgstr "" +msgstr "A" #. module: base_calendar #: field:crm.meeting,write_date:0 msgid "Write Date" -msgstr "" +msgstr "Írás időpontja" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 msgid "Delegated From" -msgstr "" +msgstr "Átruházva ettől" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ez egy követő" #. module: base_calendar #: field:calendar.attendee,user_id:0 @@ -972,7 +979,7 @@ msgstr "November" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "" +msgstr "Mutassa a csoportot, akihez a hallgató tartozik" #. module: base_calendar #: field:calendar.event,mo:0 @@ -1002,13 +1009,13 @@ msgstr "Bizonytalan" #: constraint:calendar.todo:0 #: constraint:crm.meeting:0 msgid "Error ! End date cannot be set before start date." -msgstr "" +msgstr "Hiba! A végső dátum nem lehet a kezséi dátum előtt." #. module: base_calendar #: field:calendar.alarm,trigger_occurs:0 #: field:res.alarm,trigger_occurs:0 msgid "Triggers" -msgstr "" +msgstr "Események" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1021,7 +1028,7 @@ msgstr "Január" #: field:calendar.alarm,trigger_related:0 #: field:res.alarm,trigger_related:0 msgid "Related to" -msgstr "" +msgstr "Összefügg ezzel:" #. module: base_calendar #: field:calendar.alarm,trigger_interval:0 @@ -1056,12 +1063,12 @@ msgstr "Aktív" #: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." -msgstr "" +msgstr "Nem sokszorozhat meg egy naptári résztvevőt." #. module: base_calendar #: view:calendar.event:0 msgid "Choose day in the month where repeat the meeting" -msgstr "" +msgstr "Vállaszon napot a hónapban, ahová a találkozót sokszorozni szeretné" #. module: base_calendar #: field:calendar.alarm,action:0 @@ -1075,16 +1082,18 @@ msgid "" "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the " "other" msgstr "" +"'Hossza' és 'Ismétlés' mindegyik egy lehetőség, de ha az egyik előfordul, " +"amásiknak is alő KELL fordulnia" #. module: base_calendar #: help:calendar.attendee,role:0 msgid "Participation role for the calendar user" -msgstr "" +msgstr "A naptár felhasználójának részvételi szabálya" #. module: base_calendar #: field:calendar.attendee,delegated_to:0 msgid "Delegated To" -msgstr "" +msgstr "Feladattal megbízva" #. module: base_calendar #: help:calendar.alarm,action:0 @@ -1094,7 +1103,7 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "Kezdési időpont" #. module: base_calendar #: selection:calendar.event,end_type:0 diff --git a/addons/base_calendar/i18n/id.po b/addons/base_calendar/i18n/id.po index 87c9f3ee803..c3db2331811 100644 --- a/addons/base_calendar/i18n/id.po +++ b/addons/base_calendar/i18n/id.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/it.po b/addons/base_calendar/i18n/it.po index 749189bb8e4..aa379b0b063 100644 --- a/addons/base_calendar/i18n/it.po +++ b/addons/base_calendar/i18n/it.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/ja.po b/addons/base_calendar/i18n/ja.po index 698e5660aa3..6369f967175 100644 --- a/addons/base_calendar/i18n/ja.po +++ b/addons/base_calendar/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/ln.po b/addons/base_calendar/i18n/ln.po index f1dae3b1d7c..dc7f0dad24f 100644 --- a/addons/base_calendar/i18n/ln.po +++ b/addons/base_calendar/i18n/ln.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/lt.po b/addons/base_calendar/i18n/lt.po index 05ce39b3f72..eb3db124633 100644 --- a/addons/base_calendar/i18n/lt.po +++ b/addons/base_calendar/i18n/lt.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/lv.po b/addons/base_calendar/i18n/lv.po index fd38650ef6e..8d75aecaafe 100644 --- a/addons/base_calendar/i18n/lv.po +++ b/addons/base_calendar/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/mk.po b/addons/base_calendar/i18n/mk.po index a54e4dd573c..8a4c535cc76 100644 --- a/addons/base_calendar/i18n/mk.po +++ b/addons/base_calendar/i18n/mk.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/mn.po b/addons/base_calendar/i18n/mn.po index 834248c47fe..18740a2b427 100644 --- a/addons/base_calendar/i18n/mn.po +++ b/addons/base_calendar/i18n/mn.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/nb.po b/addons/base_calendar/i18n/nb.po index bd6d376c73c..942c89bd975 100644 --- a/addons/base_calendar/i18n/nb.po +++ b/addons/base_calendar/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/nl.po b/addons/base_calendar/i18n/nl.po index 5319d54e2a3..92d515880d9 100644 --- a/addons/base_calendar/i18n/nl.po +++ b/addons/base_calendar/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/pl.po b/addons/base_calendar/i18n/pl.po index e86fac26cab..bd353595ad3 100644 --- a/addons/base_calendar/i18n/pl.po +++ b/addons/base_calendar/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/pt.po b/addons/base_calendar/i18n/pt.po index 68c7fe00e5c..1745e13bfeb 100644 --- a/addons/base_calendar/i18n/pt.po +++ b/addons/base_calendar/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/pt_BR.po b/addons/base_calendar/i18n/pt_BR.po index 26a3f986407..3b92e352a81 100644 --- a/addons/base_calendar/i18n/pt_BR.po +++ b/addons/base_calendar/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/ro.po b/addons/base_calendar/i18n/ro.po index 601e9f6976b..2efd7dcfa18 100644 --- a/addons/base_calendar/i18n/ro.po +++ b/addons/base_calendar/i18n/ro.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/ru.po b/addons/base_calendar/i18n/ru.po index eff619aec73..cc6e98b09c7 100644 --- a/addons/base_calendar/i18n/ru.po +++ b/addons/base_calendar/i18n/ru.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/sk.po b/addons/base_calendar/i18n/sk.po index b01bfcdf240..abf9ea47aa9 100644 --- a/addons/base_calendar/i18n/sk.po +++ b/addons/base_calendar/i18n/sk.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/sl.po b/addons/base_calendar/i18n/sl.po index e8cfbf3b865..4d1226d7a46 100644 --- a/addons/base_calendar/i18n/sl.po +++ b/addons/base_calendar/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/sq.po b/addons/base_calendar/i18n/sq.po index aed41b5bb09..ca74462f395 100644 --- a/addons/base_calendar/i18n/sq.po +++ b/addons/base_calendar/i18n/sq.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/sr.po b/addons/base_calendar/i18n/sr.po index 2ff8c36b36f..10c79bd00e4 100644 --- a/addons/base_calendar/i18n/sr.po +++ b/addons/base_calendar/i18n/sr.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/sr@latin.po b/addons/base_calendar/i18n/sr@latin.po index e0fe90ca9e2..38ae24526d1 100644 --- a/addons/base_calendar/i18n/sr@latin.po +++ b/addons/base_calendar/i18n/sr@latin.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/sv.po b/addons/base_calendar/i18n/sv.po index d4a991e70a9..8e7d88c386d 100644 --- a/addons/base_calendar/i18n/sv.po +++ b/addons/base_calendar/i18n/sv.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/th.po b/addons/base_calendar/i18n/th.po index e21e9f5e3ab..f5582c3568c 100644 --- a/addons/base_calendar/i18n/th.po +++ b/addons/base_calendar/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/tr.po b/addons/base_calendar/i18n/tr.po index 15cea7c6315..d43f5eb92e0 100644 --- a/addons/base_calendar/i18n/tr.po +++ b/addons/base_calendar/i18n/tr.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/zh_CN.po b/addons/base_calendar/i18n/zh_CN.po index 159a3ad4dc4..ed1cddd716b 100644 --- a/addons/base_calendar/i18n/zh_CN.po +++ b/addons/base_calendar/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_calendar/i18n/zh_TW.po b/addons/base_calendar/i18n/zh_TW.po index 2230187a734..f044cc14647 100644 --- a/addons/base_calendar/i18n/zh_TW.po +++ b/addons/base_calendar/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_calendar diff --git a/addons/base_crypt/i18n/ar.po b/addons/base_crypt/i18n/ar.po index b900cbcf053..61440649188 100644 --- a/addons/base_crypt/i18n/ar.po +++ b/addons/base_crypt/i18n/ar.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/bg.po b/addons/base_crypt/i18n/bg.po index 3cf4881e50c..706c3f27084 100644 --- a/addons/base_crypt/i18n/bg.po +++ b/addons/base_crypt/i18n/bg.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/ca.po b/addons/base_crypt/i18n/ca.po index ecac2f93cba..409af9aa314 100644 --- a/addons/base_crypt/i18n/ca.po +++ b/addons/base_crypt/i18n/ca.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/cs.po b/addons/base_crypt/i18n/cs.po index 7707aa4aa1a..7c782cbc723 100644 --- a/addons/base_crypt/i18n/cs.po +++ b/addons/base_crypt/i18n/cs.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/da.po b/addons/base_crypt/i18n/da.po index 8f6eb72f9b4..6160f5c4474 100644 --- a/addons/base_crypt/i18n/da.po +++ b/addons/base_crypt/i18n/da.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/de.po b/addons/base_crypt/i18n/de.po index 42ecfd49fdd..ed97a279910 100644 --- a/addons/base_crypt/i18n/de.po +++ b/addons/base_crypt/i18n/de.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/el.po b/addons/base_crypt/i18n/el.po index 0e89dee5b97..eba33cc4fce 100644 --- a/addons/base_crypt/i18n/el.po +++ b/addons/base_crypt/i18n/el.po @@ -15,7 +15,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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/en_GB.po b/addons/base_crypt/i18n/en_GB.po index ac47cb16c80..96c509b518e 100644 --- a/addons/base_crypt/i18n/en_GB.po +++ b/addons/base_crypt/i18n/en_GB.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/es.po b/addons/base_crypt/i18n/es.po index 96abf2ff247..b5dcf46f559 100644 --- a/addons/base_crypt/i18n/es.po +++ b/addons/base_crypt/i18n/es.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/es_CL.po b/addons/base_crypt/i18n/es_CL.po index 82ff2c95230..285f4557101 100644 --- a/addons/base_crypt/i18n/es_CL.po +++ b/addons/base_crypt/i18n/es_CL.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/es_CR.po b/addons/base_crypt/i18n/es_CR.po index 73b1d1403d8..ca1f3821243 100644 --- a/addons/base_crypt/i18n/es_CR.po +++ b/addons/base_crypt/i18n/es_CR.po @@ -15,7 +15,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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/base_crypt/i18n/es_PY.po b/addons/base_crypt/i18n/es_PY.po index 930601d122b..684b0c44b51 100644 --- a/addons/base_crypt/i18n/es_PY.po +++ b/addons/base_crypt/i18n/es_PY.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/et.po b/addons/base_crypt/i18n/et.po index 5249e2794c1..319ed5f7d3f 100644 --- a/addons/base_crypt/i18n/et.po +++ b/addons/base_crypt/i18n/et.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/fa.po b/addons/base_crypt/i18n/fa.po index 37a30c80878..11cfa2eb96a 100644 --- a/addons/base_crypt/i18n/fa.po +++ b/addons/base_crypt/i18n/fa.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/fi.po b/addons/base_crypt/i18n/fi.po index 4342ad2e7da..2cec59a2c4e 100644 --- a/addons/base_crypt/i18n/fi.po +++ b/addons/base_crypt/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/fr.po b/addons/base_crypt/i18n/fr.po index 3667da9f490..a41065463e1 100644 --- a/addons/base_crypt/i18n/fr.po +++ b/addons/base_crypt/i18n/fr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/gl.po b/addons/base_crypt/i18n/gl.po index 635e8c9ef59..bf0c4ba8a66 100644 --- a/addons/base_crypt/i18n/gl.po +++ b/addons/base_crypt/i18n/gl.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/gu.po b/addons/base_crypt/i18n/gu.po index 93c0ff6c728..0cb55c0f324 100644 --- a/addons/base_crypt/i18n/gu.po +++ b/addons/base_crypt/i18n/gu.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/hr.po b/addons/base_crypt/i18n/hr.po index ed849f7d474..f49e9cde151 100644 --- a/addons/base_crypt/i18n/hr.po +++ b/addons/base_crypt/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/hu.po b/addons/base_crypt/i18n/hu.po new file mode 100644 index 00000000000..5f8cf605f33 --- /dev/null +++ b/addons/base_crypt/i18n/hu.po @@ -0,0 +1,23 @@ +# Hungarian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-03 16:03+0000\n" +"PO-Revision-Date: 2013-03-16 00:07+0000\n" +"Last-Translator: krnkris \n" +"Language-Team: Hungarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-17 04:59+0000\n" +"X-Generator: Launchpad (build 16532)\n" + +#. module: base_crypt +#: model:ir.model,name:base_crypt.model_res_users +msgid "Users" +msgstr "Felhasználók" diff --git a/addons/base_crypt/i18n/id.po b/addons/base_crypt/i18n/id.po index 9d0ec560f6d..3ac47abb0ed 100644 --- a/addons/base_crypt/i18n/id.po +++ b/addons/base_crypt/i18n/id.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/it.po b/addons/base_crypt/i18n/it.po index 97576ff1f7a..09da33ef429 100644 --- a/addons/base_crypt/i18n/it.po +++ b/addons/base_crypt/i18n/it.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/ja.po b/addons/base_crypt/i18n/ja.po index 131734f4c4d..53cc697a775 100644 --- a/addons/base_crypt/i18n/ja.po +++ b/addons/base_crypt/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/lv.po b/addons/base_crypt/i18n/lv.po index f1b5222c576..c721eae311b 100644 --- a/addons/base_crypt/i18n/lv.po +++ b/addons/base_crypt/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/mn.po b/addons/base_crypt/i18n/mn.po index eb56c39858b..ec780cdebda 100644 --- a/addons/base_crypt/i18n/mn.po +++ b/addons/base_crypt/i18n/mn.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/nb.po b/addons/base_crypt/i18n/nb.po index 545492b56cb..1f9ceed13c8 100644 --- a/addons/base_crypt/i18n/nb.po +++ b/addons/base_crypt/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/nl.po b/addons/base_crypt/i18n/nl.po index f33df14410b..ae5f27dd880 100644 --- a/addons/base_crypt/i18n/nl.po +++ b/addons/base_crypt/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/nl_BE.po b/addons/base_crypt/i18n/nl_BE.po index 88737a23556..7ad3faa1ef5 100644 --- a/addons/base_crypt/i18n/nl_BE.po +++ b/addons/base_crypt/i18n/nl_BE.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/oc.po b/addons/base_crypt/i18n/oc.po index e0350572e93..bd05cb48d2b 100644 --- a/addons/base_crypt/i18n/oc.po +++ b/addons/base_crypt/i18n/oc.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/pl.po b/addons/base_crypt/i18n/pl.po index bffa8810065..ffd402b4c98 100644 --- a/addons/base_crypt/i18n/pl.po +++ b/addons/base_crypt/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/pt.po b/addons/base_crypt/i18n/pt.po index 0e8adddff29..53806f4b3b3 100644 --- a/addons/base_crypt/i18n/pt.po +++ b/addons/base_crypt/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/pt_BR.po b/addons/base_crypt/i18n/pt_BR.po index 3759fafb5d1..394364388b8 100644 --- a/addons/base_crypt/i18n/pt_BR.po +++ b/addons/base_crypt/i18n/pt_BR.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/ro.po b/addons/base_crypt/i18n/ro.po index 54a4d337f9f..6c252be4455 100644 --- a/addons/base_crypt/i18n/ro.po +++ b/addons/base_crypt/i18n/ro.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/ru.po b/addons/base_crypt/i18n/ru.po index e64d93645d3..b935e18619f 100644 --- a/addons/base_crypt/i18n/ru.po +++ b/addons/base_crypt/i18n/ru.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/sk.po b/addons/base_crypt/i18n/sk.po index 9a85b92653a..4f061b9a194 100644 --- a/addons/base_crypt/i18n/sk.po +++ b/addons/base_crypt/i18n/sk.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/sl.po b/addons/base_crypt/i18n/sl.po index 3bb01063e60..7297ca8fc8a 100644 --- a/addons/base_crypt/i18n/sl.po +++ b/addons/base_crypt/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/sq.po b/addons/base_crypt/i18n/sq.po index 9ae976f5ee3..547fc87dece 100644 --- a/addons/base_crypt/i18n/sq.po +++ b/addons/base_crypt/i18n/sq.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/sr@latin.po b/addons/base_crypt/i18n/sr@latin.po index 95f94dfc68a..eb56a0aaf64 100644 --- a/addons/base_crypt/i18n/sr@latin.po +++ b/addons/base_crypt/i18n/sr@latin.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/sv.po b/addons/base_crypt/i18n/sv.po index 0438616470f..32b212fe45b 100644 --- a/addons/base_crypt/i18n/sv.po +++ b/addons/base_crypt/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/tr.po b/addons/base_crypt/i18n/tr.po index 7c8b151fd00..e0f7aad1948 100644 --- a/addons/base_crypt/i18n/tr.po +++ b/addons/base_crypt/i18n/tr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/vi.po b/addons/base_crypt/i18n/vi.po index 010a6b88531..7ab8f31bc3c 100644 --- a/addons/base_crypt/i18n/vi.po +++ b/addons/base_crypt/i18n/vi.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/zh_CN.po b/addons/base_crypt/i18n/zh_CN.po index 08c588aac11..5f159bbb6bc 100644 --- a/addons/base_crypt/i18n/zh_CN.po +++ b/addons/base_crypt/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/zh_TW.po b/addons/base_crypt/i18n/zh_TW.po index 1f65c728f85..40958da56f8 100644 --- a/addons/base_crypt/i18n/zh_TW.po +++ b/addons/base_crypt/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_crypt diff --git a/addons/base_gengo/i18n/ar.po b/addons/base_gengo/i18n/ar.po index 24b10074f69..c19b15d34ea 100644 --- a/addons/base_gengo/i18n/ar.po +++ b/addons/base_gengo/i18n/ar.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/de.po b/addons/base_gengo/i18n/de.po index f89d4f86cbc..97c119a3861 100644 --- a/addons/base_gengo/i18n/de.po +++ b/addons/base_gengo/i18n/de.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/es.po b/addons/base_gengo/i18n/es.po index 60ea12640d7..917b0f323f3 100644 --- a/addons/base_gengo/i18n/es.po +++ b/addons/base_gengo/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/fr.po b/addons/base_gengo/i18n/fr.po index abfcaf6e991..208345eadcd 100644 --- a/addons/base_gengo/i18n/fr.po +++ b/addons/base_gengo/i18n/fr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/hr.po b/addons/base_gengo/i18n/hr.po index 4b7acba2c52..e63c9f9309e 100644 --- a/addons/base_gengo/i18n/hr.po +++ b/addons/base_gengo/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/hu.po b/addons/base_gengo/i18n/hu.po new file mode 100644 index 00000000000..96ebf22939d --- /dev/null +++ b/addons/base_gengo/i18n/hu.po @@ -0,0 +1,265 @@ +# Hungarian translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-03-16 00:40+0000\n" +"Last-Translator: krnkris \n" +"Language-Team: Hungarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-17 04:59+0000\n" +"X-Generator: Launchpad (build 16532)\n" + +#. module: base_gengo +#: view:res.company:0 +msgid "Comments for Translator" +msgstr "Megjegyzés a fordítónak" + +#. module: base_gengo +#: field:ir.translation,job_id:0 +msgid "Gengo Job ID" +msgstr "Gengó feladat azonosító ID" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "This language is not supported by the Gengo translation services." +msgstr "Ez a nyelv nincs támogatva a Gengo fordító szolgáltatások által." + +#. module: base_gengo +#: field:res.company,gengo_comment:0 +msgid "Comments" +msgstr "Megjegyzések" + +#. module: base_gengo +#: field:res.company,gengo_private_key:0 +msgid "Gengo Private Key" +msgstr "Gengo Privát Kulcs" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_base_gengo_translations +msgid "base.gengo.translations" +msgstr "base.gengo.translations" + +#. module: base_gengo +#: help:res.company,gengo_auto_approve:0 +msgid "Jobs are Automatically Approved by Gengo." +msgstr "Feladatok automatikusan jóvá lesznek hagyva a Gengo által." + +#. module: base_gengo +#: field:base.gengo.translations,lang_id:0 +msgid "Language" +msgstr "Nyelv" + +#. module: base_gengo +#: field:ir.translation,gengo_comment:0 +msgid "Comments & Activity Linked to Gengo" +msgstr "Megjegyzések & Műveletek a Gengo felé csatolva" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:124 +#, python-format +msgid "Gengo Sync Translation (Response)" +msgstr "Gengo Szinkron fordítás (Válasz)" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:72 +#, python-format +msgid "" +"Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " +"authentication parameters under `Settings > Companies > Gengo Parameters`." +msgstr "" +"Gengo `Nyilvános Kulcs` vagy `Privát Kulcs` hiányzik. Írja be a Gengo " +"azonosítási paramétereketa `Beállítások > Vállalatok > Gengo Paraméterek` " +"alatt." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Translation By Machine" +msgstr "Gép által fordítva" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:155 +#, python-format +msgid "" +"%s\n" +"\n" +"--\n" +" Commented on %s by %s." +msgstr "" +"%s\n" +"\n" +"--\n" +" Megjegyzés erre %s ettől %s." + +#. module: base_gengo +#: field:ir.translation,gengo_translation:0 +msgid "Gengo Translation Service Level" +msgstr "Gengo fordítási szolgáltatási szint" + +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" +"A kiválasztott Gengo fordító szolgáltatást nem támogatott erre a nyelvre." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Standard" +msgstr "Szabványos" + +#. module: base_gengo +#: help:ir.translation,gengo_translation:0 +msgid "" +"You can select here the service level you want for an automatic translation " +"using Gengo." +msgstr "" +"Itt kiválaszthatja a szolgáltatási szintet amit használni szeretne a " +"Gengoval az automatikus fordításhoz." + +#. module: base_gengo +#: field:base.gengo.translations,restart_send_job:0 +msgid "Restart Sending Job" +msgstr "Küldési feladat újraindítása" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "To Approve In Gengo" +msgstr "A Gengo-ban jóváhagyni" + +#. module: base_gengo +#: view:res.company:0 +msgid "Private Key" +msgstr "Privát kulcs" + +#. module: base_gengo +#: view:res.company:0 +msgid "Public Key" +msgstr "Nyilvános kulcs" + +#. module: base_gengo +#: field:res.company,gengo_public_key:0 +msgid "Gengo Public Key" +msgstr "Gengo nyilvános kulcs" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:123 +#, python-format +msgid "Gengo Sync Translation (Request)" +msgstr "Gengo szinkron fordítás (Igénylés)" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Translations" +msgstr "Fordítások" + +#. module: base_gengo +#: field:res.company,gengo_auto_approve:0 +msgid "Auto Approve Translation ?" +msgstr "Fordítás automatikus jóváhagyása?" + +#. module: base_gengo +#: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations +#: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations +msgid "Gengo: Manual Request of Translation" +msgstr "Gengo: Fordítás kézi igénylése" + +#. module: base_gengo +#: code:addons/base_gengo/ir_translation.py:62 +#: code:addons/base_gengo/wizard/base_gengo_translations.py:109 +#, python-format +msgid "Gengo Authentication Error" +msgstr "Gengo aonosítási hiba" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_res_company +msgid "Companies" +msgstr "Vállalatok" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "" +"Note: If the translation state is 'In Progress', it means that the " +"translation has to be approved to be uploaded in this system. You are " +"supposed to do that directly by using your Gengo Account" +msgstr "" +"Megjegyzés: Ha a fordítás állapota 'Folyamatban', az azt jelenti, hogy a " +"fordítást még a rendszerbe való feltöltés előtt jóvá kell hagyni. Általában " +"közvetlenül kell megtennie a Gengo előfizetésén keresztül" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:82 +#, python-format +msgid "" +"Gengo connection failed with this message:\n" +"``%s``" +msgstr "" +"Gengo kapcsolat nem sikerült ezzel az üzenettel:\n" +"``%s``" + +#. module: base_gengo +#: view:res.company:0 +msgid "Gengo Parameters" +msgstr "Gengo Paraméterek" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Send" +msgstr "Küldés" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Ultra" +msgstr "Ultra" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Translation Service" +msgstr "Gengo fordítási szolgáltatás" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Pro" +msgstr "Pro" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Gengo Request Form" +msgstr "Gengo kérelem űrlap" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "Warning" +msgstr "Figyelmeztetés" + +#. module: base_gengo +#: help:res.company,gengo_comment:0 +msgid "" +"This comment will be automatically be enclosed in each an every request sent " +"to Gengo" +msgstr "" +"Ez a megjegyzés automatikusan le lesz zárva minden egyes Gengo meghíváskor" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Cancel" +msgstr "Megszakítás" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "or" +msgstr "vagy" diff --git a/addons/base_gengo/i18n/it.po b/addons/base_gengo/i18n/it.po index 5413d6e8632..3c3bb8b5eb6 100644 --- a/addons/base_gengo/i18n/it.po +++ b/addons/base_gengo/i18n/it.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/mk.po b/addons/base_gengo/i18n/mk.po index f3e3646ed35..f97bc45146f 100644 --- a/addons/base_gengo/i18n/mk.po +++ b/addons/base_gengo/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/mn.po b/addons/base_gengo/i18n/mn.po index 5f68a9a18e5..3b9e6f2cc17 100644 --- a/addons/base_gengo/i18n/mn.po +++ b/addons/base_gengo/i18n/mn.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/nb.po b/addons/base_gengo/i18n/nb.po index 43dfa388d44..eb87053a350 100644 --- a/addons/base_gengo/i18n/nb.po +++ b/addons/base_gengo/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/nl.po b/addons/base_gengo/i18n/nl.po index 394e431f7fc..65003ded54c 100644 --- a/addons/base_gengo/i18n/nl.po +++ b/addons/base_gengo/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/pt.po b/addons/base_gengo/i18n/pt.po index 0676db519a1..b838cb89113 100644 --- a/addons/base_gengo/i18n/pt.po +++ b/addons/base_gengo/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/pt_BR.po b/addons/base_gengo/i18n/pt_BR.po index b3c9ef47d9f..6f98810e079 100644 --- a/addons/base_gengo/i18n/pt_BR.po +++ b/addons/base_gengo/i18n/pt_BR.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/ro.po b/addons/base_gengo/i18n/ro.po index 6f8645fb40e..4f915ba52bb 100644 --- a/addons/base_gengo/i18n/ro.po +++ b/addons/base_gengo/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/sl.po b/addons/base_gengo/i18n/sl.po index 3c362f04a5f..5be5008582a 100644 --- a/addons/base_gengo/i18n/sl.po +++ b/addons/base_gengo/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/tr.po b/addons/base_gengo/i18n/tr.po index 0a8f6a66b63..22197682162 100644 --- a/addons/base_gengo/i18n/tr.po +++ b/addons/base_gengo/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_gengo/i18n/zh_CN.po b/addons/base_gengo/i18n/zh_CN.po index e57eee434e8..d923697bf68 100644 --- a/addons/base_gengo/i18n/zh_CN.po +++ b/addons/base_gengo/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_gengo diff --git a/addons/base_iban/i18n/ar.po b/addons/base_iban/i18n/ar.po index 4aae7a230ff..66a8df723f6 100644 --- a/addons/base_iban/i18n/ar.po +++ b/addons/base_iban/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/bg.po b/addons/base_iban/i18n/bg.po index 8d841327903..da3d6f2fcfd 100644 --- a/addons/base_iban/i18n/bg.po +++ b/addons/base_iban/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/bs.po b/addons/base_iban/i18n/bs.po index c085d5888a4..8703971789c 100644 --- a/addons/base_iban/i18n/bs.po +++ b/addons/base_iban/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/ca.po b/addons/base_iban/i18n/ca.po index 155e070f523..c9d95180402 100644 --- a/addons/base_iban/i18n/ca.po +++ b/addons/base_iban/i18n/ca.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/cs.po b/addons/base_iban/i18n/cs.po index 85709fea5b0..8a3290e1363 100644 --- a/addons/base_iban/i18n/cs.po +++ b/addons/base_iban/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/da.po b/addons/base_iban/i18n/da.po index cb7b395f700..14e7fc468aa 100644 --- a/addons/base_iban/i18n/da.po +++ b/addons/base_iban/i18n/da.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/de.po b/addons/base_iban/i18n/de.po index 39cbfc80b49..6ffb0a950a2 100644 --- a/addons/base_iban/i18n/de.po +++ b/addons/base_iban/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/el.po b/addons/base_iban/i18n/el.po index 546a13d8ace..0be1c0aa872 100644 --- a/addons/base_iban/i18n/el.po +++ b/addons/base_iban/i18n/el.po @@ -9,7 +9,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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/base_iban/i18n/en_GB.po b/addons/base_iban/i18n/en_GB.po index 64c1e147845..9cb192c2ebf 100644 --- a/addons/base_iban/i18n/en_GB.po +++ b/addons/base_iban/i18n/en_GB.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/es.po b/addons/base_iban/i18n/es.po index 63b73851d79..39b9008f088 100644 --- a/addons/base_iban/i18n/es.po +++ b/addons/base_iban/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/es_AR.po b/addons/base_iban/i18n/es_AR.po index d0c5c92e0a6..3826aaccde4 100644 --- a/addons/base_iban/i18n/es_AR.po +++ b/addons/base_iban/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/es_CR.po b/addons/base_iban/i18n/es_CR.po index 0d756cb7090..61d94cb9521 100644 --- a/addons/base_iban/i18n/es_CR.po +++ b/addons/base_iban/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/base_iban/i18n/es_EC.po b/addons/base_iban/i18n/es_EC.po index 52c03cfa253..08af165333b 100644 --- a/addons/base_iban/i18n/es_EC.po +++ b/addons/base_iban/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/es_PY.po b/addons/base_iban/i18n/es_PY.po index 2e8fa0f643d..4a652f1c045 100644 --- a/addons/base_iban/i18n/es_PY.po +++ b/addons/base_iban/i18n/es_PY.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/et.po b/addons/base_iban/i18n/et.po index 5b547c2c9b0..70ded600ed6 100644 --- a/addons/base_iban/i18n/et.po +++ b/addons/base_iban/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/eu.po b/addons/base_iban/i18n/eu.po index 39e39c8ba68..f533c6d2192 100644 --- a/addons/base_iban/i18n/eu.po +++ b/addons/base_iban/i18n/eu.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/fa.po b/addons/base_iban/i18n/fa.po index d7a216e56df..e1e67bf93d3 100644 --- a/addons/base_iban/i18n/fa.po +++ b/addons/base_iban/i18n/fa.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/fi.po b/addons/base_iban/i18n/fi.po index 4929c57abb6..33f39071540 100644 --- a/addons/base_iban/i18n/fi.po +++ b/addons/base_iban/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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/fr.po b/addons/base_iban/i18n/fr.po index ef82e4bc69e..b8fed3e600d 100644 --- a/addons/base_iban/i18n/fr.po +++ b/addons/base_iban/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/gl.po b/addons/base_iban/i18n/gl.po index 1228e4dbd08..54e06384446 100644 --- a/addons/base_iban/i18n/gl.po +++ b/addons/base_iban/i18n/gl.po @@ -15,7 +15,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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/gu.po b/addons/base_iban/i18n/gu.po index b7c8c3a8b99..fbfae8cf4f8 100644 --- a/addons/base_iban/i18n/gu.po +++ b/addons/base_iban/i18n/gu.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/hr.po b/addons/base_iban/i18n/hr.po index 42648f94d3f..4eca0a7a197 100644 --- a/addons/base_iban/i18n/hr.po +++ b/addons/base_iban/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/base_iban/i18n/hu.po b/addons/base_iban/i18n/hu.po index 7bcab45e83a..a14c9a67884 100644 --- a/addons/base_iban/i18n/hu.po +++ b/addons/base_iban/i18n/hu.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2011-01-20 13:10+0000\n" -"Last-Translator: Krisztian Eyssen \n" +"PO-Revision-Date: 2013-03-16 00:07+0000\n" +"Last-Translator: krnkris \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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-17 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban @@ -23,22 +23,25 @@ msgid "" "Please define BIC/Swift code on bank for bank type IBAN Account to make " "valid payments" msgstr "" +"\n" +"Kérem határozza meg a BIC/Swift códot az IBAN bankszámla típushoz az " +"érvényes fizetésekhez" #. module: base_iban #: code:addons/base_iban/base_iban.py:141 #, python-format msgid "This IBAN does not pass the validation check, please verify it" -msgstr "" +msgstr "Ez az IBAN nem ment át az ellenőrzése, kérjem ellenőrizni" #. module: base_iban #: model:res.partner.bank.type,format_layout:base_iban.bank_iban msgid "%(bank_name)s: IBAN %(acc_number)s - BIC %(bank_bic)s" -msgstr "" +msgstr "%(bank_name)s: IBAN %(acc_number)s - BIC %(bank_bic)s" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_swift_field msgid "bank_bic" -msgstr "" +msgstr "bank_bic" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_zip_field @@ -66,7 +69,7 @@ msgstr "country_id" msgid "" "The IBAN does not seem to be correct. You should have entered something like " "this %s" -msgstr "" +msgstr "Az IBAN nem tűnik megfelelőnek. Valami ilyennek kellene lennie %s" #. module: base_iban #: field:res.partner.bank,iban:0 @@ -77,7 +80,7 @@ msgstr "IBAN" #: code:addons/base_iban/base_iban.py:142 #, python-format msgid "The IBAN is invalid, it should begin with the country code" -msgstr "" +msgstr "Az IBAN érvényes, az ország kóddal kell kezdődnie" #. module: base_iban #: model:res.partner.bank.type,name:base_iban.bank_iban diff --git a/addons/base_iban/i18n/id.po b/addons/base_iban/i18n/id.po index abbb3dbad1f..8c3a224ef3c 100644 --- a/addons/base_iban/i18n/id.po +++ b/addons/base_iban/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/it.po b/addons/base_iban/i18n/it.po index 65add009143..f3eb93b6bfb 100644 --- a/addons/base_iban/i18n/it.po +++ b/addons/base_iban/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/ja.po b/addons/base_iban/i18n/ja.po index 27dcecd1175..3406429bd09 100644 --- a/addons/base_iban/i18n/ja.po +++ b/addons/base_iban/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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/ko.po b/addons/base_iban/i18n/ko.po index 537e3d4f42a..67041755d7d 100644 --- a/addons/base_iban/i18n/ko.po +++ b/addons/base_iban/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/lt.po b/addons/base_iban/i18n/lt.po index 435e6daec09..b6ec4bca784 100644 --- a/addons/base_iban/i18n/lt.po +++ b/addons/base_iban/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/lv.po b/addons/base_iban/i18n/lv.po index 844977af21b..165c9b55c09 100644 --- a/addons/base_iban/i18n/lv.po +++ b/addons/base_iban/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/mk.po b/addons/base_iban/i18n/mk.po index d1b9acd1420..2cf1008bd94 100644 --- a/addons/base_iban/i18n/mk.po +++ b/addons/base_iban/i18n/mk.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/mn.po b/addons/base_iban/i18n/mn.po index c0aae26d9c1..446f6f3cf37 100644 --- a/addons/base_iban/i18n/mn.po +++ b/addons/base_iban/i18n/mn.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/nb.po b/addons/base_iban/i18n/nb.po index ba56e75c357..48f9c25e37b 100644 --- a/addons/base_iban/i18n/nb.po +++ b/addons/base_iban/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/nl.po b/addons/base_iban/i18n/nl.po index a810db8be2d..583b3802c50 100644 --- a/addons/base_iban/i18n/nl.po +++ b/addons/base_iban/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/nl_BE.po b/addons/base_iban/i18n/nl_BE.po index ccf4878cd60..175916e3413 100644 --- a/addons/base_iban/i18n/nl_BE.po +++ b/addons/base_iban/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/oc.po b/addons/base_iban/i18n/oc.po index e6f266d0881..48b5edc1101 100644 --- a/addons/base_iban/i18n/oc.po +++ b/addons/base_iban/i18n/oc.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/pl.po b/addons/base_iban/i18n/pl.po index 1553e87bf81..6e4edbb95b9 100644 --- a/addons/base_iban/i18n/pl.po +++ b/addons/base_iban/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/pt.po b/addons/base_iban/i18n/pt.po index 354c21639c5..e988380610b 100644 --- a/addons/base_iban/i18n/pt.po +++ b/addons/base_iban/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/pt_BR.po b/addons/base_iban/i18n/pt_BR.po index 05b8c28ebd4..f82d55f2637 100644 --- a/addons/base_iban/i18n/pt_BR.po +++ b/addons/base_iban/i18n/pt_BR.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/ro.po b/addons/base_iban/i18n/ro.po index ffa3a74ff95..4fdb1987163 100644 --- a/addons/base_iban/i18n/ro.po +++ b/addons/base_iban/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/ru.po b/addons/base_iban/i18n/ru.po index ba3ff6f7df9..1b700cbf594 100644 --- a/addons/base_iban/i18n/ru.po +++ b/addons/base_iban/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/sk.po b/addons/base_iban/i18n/sk.po index 750015834a7..ec40c1f1ed2 100644 --- a/addons/base_iban/i18n/sk.po +++ b/addons/base_iban/i18n/sk.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/sl.po b/addons/base_iban/i18n/sl.po index 692920b1a48..6f3e7107546 100644 --- a/addons/base_iban/i18n/sl.po +++ b/addons/base_iban/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/sq.po b/addons/base_iban/i18n/sq.po index 6b4d0a96932..3b0a866f76b 100644 --- a/addons/base_iban/i18n/sq.po +++ b/addons/base_iban/i18n/sq.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/sr.po b/addons/base_iban/i18n/sr.po index c47078b53e7..ac80277e12f 100644 --- a/addons/base_iban/i18n/sr.po +++ b/addons/base_iban/i18n/sr.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/sr@latin.po b/addons/base_iban/i18n/sr@latin.po index bd6be48bdbe..a06215e6713 100644 --- a/addons/base_iban/i18n/sr@latin.po +++ b/addons/base_iban/i18n/sr@latin.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/sv.po b/addons/base_iban/i18n/sv.po index 3732ec80de6..7045aba7bf8 100644 --- a/addons/base_iban/i18n/sv.po +++ b/addons/base_iban/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/ta.po b/addons/base_iban/i18n/ta.po index 0a1f8271d21..4c21639b991 100644 --- a/addons/base_iban/i18n/ta.po +++ b/addons/base_iban/i18n/ta.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/tlh.po b/addons/base_iban/i18n/tlh.po index 1a89e435bcd..01e94922ed3 100644 --- a/addons/base_iban/i18n/tlh.po +++ b/addons/base_iban/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/tr.po b/addons/base_iban/i18n/tr.po index 83bfa1e9036..6bcdb10658b 100644 --- a/addons/base_iban/i18n/tr.po +++ b/addons/base_iban/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/uk.po b/addons/base_iban/i18n/uk.po index 22f4fbf3a09..bf05aeb9221 100644 --- a/addons/base_iban/i18n/uk.po +++ b/addons/base_iban/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/vi.po b/addons/base_iban/i18n/vi.po index 1a83be20faf..29bb03a8527 100644 --- a/addons/base_iban/i18n/vi.po +++ b/addons/base_iban/i18n/vi.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/zh_CN.po b/addons/base_iban/i18n/zh_CN.po index 03de01b9c44..c3442869c36 100644 --- a/addons/base_iban/i18n/zh_CN.po +++ b/addons/base_iban/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_iban/i18n/zh_TW.po b/addons/base_iban/i18n/zh_TW.po index 4f4069ea3ce..496a52af6ed 100644 --- a/addons/base_iban/i18n/zh_TW.po +++ b/addons/base_iban/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_iban diff --git a/addons/base_import/i18n/ar.po b/addons/base_import/i18n/ar.po index dfee7c06e84..ba70430c582 100644 --- a/addons/base_import/i18n/ar.po +++ b/addons/base_import/i18n/ar.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/de.po b/addons/base_import/i18n/de.po index 749a04e7967..2ae2d77e288 100644 --- a/addons/base_import/i18n/de.po +++ b/addons/base_import/i18n/de.po @@ -15,7 +15,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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/es.po b/addons/base_import/i18n/es.po index 78a9e081238..9cca9b9cf17 100644 --- a/addons/base_import/i18n/es.po +++ b/addons/base_import/i18n/es.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/et.po b/addons/base_import/i18n/et.po index 1bdb2af1532..6313debea8b 100644 --- a/addons/base_import/i18n/et.po +++ b/addons/base_import/i18n/et.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/fr.po b/addons/base_import/i18n/fr.po index 307919b7feb..ac9198490b7 100644 --- a/addons/base_import/i18n/fr.po +++ b/addons/base_import/i18n/fr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/hr.po b/addons/base_import/i18n/hr.po index ec1aa579abf..b7c4238062c 100644 --- a/addons/base_import/i18n/hr.po +++ b/addons/base_import/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/hu.po b/addons/base_import/i18n/hu.po index 000260278ff..7892a528c57 100644 --- a/addons/base_import/i18n/hu.po +++ b/addons/base_import/i18n/hu.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-26 10:06+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-03-17 23:49+0000\n" +"Last-Translator: krnkris \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-18 04:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import @@ -22,14 +22,14 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" -msgstr "" +msgstr "Kapja meg az összes lehetséges értéket" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:71 #, python-format msgid "Need to import data from an other application?" -msgstr "" +msgstr "Szükséges adatokat importálni egy másik alkalmazásból?" #. module: base_import #. openerp-web @@ -47,6 +47,14 @@ msgid "" "give \n" " you an example for Products and their Categories." msgstr "" +"Amikor külső azonositókat használ, importálhat CSV file-okat \n" +" az \"External ID\" oszlopban meghatározhatja a külső " +"\n" +" azonositóját (ID) mindegyik importálandó tételnek. \n" +" Utána létrehozhat egy hivatkozást arra a tételre\n" +" (sorra) \"Mező/Külső ID\" -hoz hasonló oszlopokkal.\n" +" A következő két CSV file a Termékek és a megfelelő\n" +" Termékkategóriákra ad példát." #. module: base_import #. openerp-web @@ -56,13 +64,15 @@ msgid "" "How to export/import different tables from an SQL \n" " application to OpenERP?" msgstr "" +"Hogyan exportáljon/importáljon külömböző táblákat egy SQL\n" +" alkalmazásból OpenERP-be?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" -msgstr "" +msgstr "Relációs mezők" #. module: base_import #. openerp-web @@ -72,6 +82,9 @@ msgid "" "Country/Database ID: the unique OpenERP ID for a \n" " record, defined by the ID postgresql column" msgstr "" +"Ország/Adatbázis ID: egy rekord egyedi OpenERP ID -ja, \n" +" a postgresql ID oszlop " +"alapján" #. module: base_import #. openerp-web @@ -87,6 +100,14 @@ msgid "" "\n" " have a unique Database ID)" msgstr "" +"Használat \n" +" Ország/Adatbázis azonosító ID: Ne sokszor használja " +"ezt a \n" +" jelölést. Fejlesztők használják elsősorban mivel a " +"fő \n" +" előnye, hogy nincsenek összeütközések (több rekord\n" +" lehet ugyanazzal anévvel, de mindíg egyedi \n" +" azonosító ID rendelkeznek)" #. module: base_import #. openerp-web @@ -96,18 +117,20 @@ msgid "" "For the country \n" " Belgium, you can use one of these 3 ways to import:" msgstr "" +"Belgiumnak, \n" +" 3 módot használhat az importáláshoz:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:303 #, python-format msgid "company_1,Bigees,True" -msgstr "" +msgstr "vállalat_1,Bigees,Igaz" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o msgid "base_import.tests.models.m2o" -msgstr "" +msgstr "base_import.tests.models.m2o" #. module: base_import #. openerp-web @@ -121,13 +144,19 @@ msgid "" "companies) TO \n" " '/tmp/company.csv' with CSV HEADER;" msgstr "" +"másolás\n" +" (válasszon 'vállalat_'||id mint \"KÜLSŐ " +"ID\",vállalat_név \n" +" mint \"NÉV\",'Igaz' mint \"Ez egy vállalat\" a " +"vállalatoktól) EHHEZ\n" +" '/tmp/company.csv' ezzel a CSV FEJLÉCCEL;" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:206 #, python-format msgid "CSV file for Manufacturer, Retailer" -msgstr "" +msgstr "CSV fájl a Gyártónak, Viszonteladónak" #. module: base_import #. openerp-web @@ -139,34 +168,38 @@ msgid "" "\n" " data from a third party application." msgstr "" +"Használja\n" +" Ország/Külső ID: Használjon külső azonosítót ID ha " +"adatot\n" +" importál a harmadik fáltől származó alkalmazásból." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:316 #, python-format msgid "person_1,Fabien,False,company_1" -msgstr "" +msgstr "person_1,Fabien,False,company_1" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "XXX/External ID" -msgstr "" +msgstr "XXX/Külső azonosító ID" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:351 #, python-format msgid "Don't Import" -msgstr "" +msgstr "Ne importálja" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:24 #, python-format msgid "Select the" -msgstr "" +msgstr "Válassza ezt" #. module: base_import #. openerp-web @@ -181,39 +214,46 @@ msgid "" "\n" " See the following question." msgstr "" +"Jegyezze meg, ha a CSV fájlban \n" +" a tabulátor mint elválasztó szerepel, OpenERP nem " +"fogja \n" +" érzékelni az elválasztókat. Meg kell változtatnia a " +"fájl \n" +" formátum lehetőséget a táblázat kezelőjében. \n" +" Lásd a következő kérdést." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:141 #, python-format msgid "Country: the name or code of the country" -msgstr "" +msgstr "Ország: az ország neve vagy kódja" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child msgid "base_import.tests.models.o2m.child" -msgstr "" +msgstr "base_import.tests.models.o2m.child" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:239 #, python-format msgid "Can I import several times the same record?" -msgstr "" +msgstr "Be dudom tölteni többször ugyanazt a rekordot?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:15 #, python-format msgid "Validate" -msgstr "" +msgstr "Jóváhagyás" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:55 #, python-format msgid "Map your data to OpenERP" -msgstr "" +msgstr "Képezze le az adatait az OpenERP-be" #. module: base_import #. openerp-web @@ -224,6 +264,9 @@ msgid "" " the easiest way when your data come from CSV files \n" " that have been created manually." msgstr "" +"Országot használj: Ez a \n" +" legkönnyebb útja, ha adat egy CSV fájlból érkezik \n" +" amit kézzel készített." #. module: base_import #. openerp-web @@ -233,6 +276,8 @@ msgid "" "What's the difference between Database ID and \n" " External ID?" msgstr "" +"Mi a különbség az adatbázis ID azonosító és a\n" +" Külső ID azonosító közt?" #. module: base_import #. openerp-web @@ -244,25 +289,29 @@ msgid "" "\n" " you 3 different fields to import:" msgstr "" +"Példásul, \n" +" egy kapcsolat országának hivatkozásához, OpenERP " +"három \n" +" különböző mező importálását ajánlja fel:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:175 #, python-format msgid "What can I do if I have multiple matches for a field?" -msgstr "" +msgstr "Mit tegyek, ha több egyezőség van egy mezőre?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:302 #, python-format msgid "External ID,Name,Is a Company" -msgstr "" +msgstr "Klső ID,Név,Ez egy vállalat" #. module: base_import #: field:base_import.tests.models.preview,somevalue:0 msgid "Some Value" -msgstr "" +msgstr "Néhány érték" #. module: base_import #. openerp-web @@ -272,6 +321,8 @@ msgid "" "The following CSV file shows how to import \n" " suppliers and their respective contacts" msgstr "" +"A következő CSV fájl megmutatja hogyan töltsük be a \n" +" szállítókat a hozzájuk tartozó kapcsolatokhoz" #. module: base_import #. openerp-web @@ -281,6 +332,8 @@ msgid "" "How can I change the CSV file format options when \n" " saving in my spreadsheet application?" msgstr "" +"Hogyan tudom megváltoztatni a CSV fájl formátum lehetőségeket ha \n" +" el akarom menteni a táblázatkezelő alkalmazásomban?" #. module: base_import #. openerp-web @@ -301,6 +354,20 @@ msgid "" "orignial \n" " database)." msgstr "" +"Mint ebben a fájlban látható, Fabien és Laurence \n" +" a Bigees vállalatnál (vállalat_1) dolgoznak és \n" +" Eric az Organi vállalatnnál dolgozik. A személyek \n" +" és vállalatok közti kapcsolat a vállalatok Külső ID " +"\n" +" azonosítóin keresztül történik. Nekünk előtaggal " +"kell \n" +" ellátni a \"Kükső ID\" a táblázat névvel a személy " +"és a vállalat\n" +" azonosító ID összetévesztésének erkerülése végetten " +"(személy_1 \n" +" és vállalat_1 amelyik ugyanazt az ID 1 azonosítót " +"kapja az eredeti \n" +" adatbázisban)." #. module: base_import #. openerp-web @@ -315,18 +382,26 @@ msgid "" "\n" " '/tmp/person.csv' with CSV" msgstr "" +"másol(kiválaszt \n" +" 'személy_'||id azonosító mint \"Külső " +"ID\",személy_neve mint \n" +" \"Név\",'Hamis' mint \"Ez egy vállalat\", " +"'vállalat_'||vállalat_id\n" +" mint \"Kapcsolódó vállalat/Külső ID\" a " +"személyektől) IDE \n" +" '/tmp/person.csv' CSV-el" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:148 #, python-format msgid "Country: Belgium" -msgstr "" +msgstr "Ország: Belgium" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly msgid "base_import.tests.models.char.stillreadonly" -msgstr "" +msgstr "base_import.tests.models.char.stillreadonly" #. module: base_import #. openerp-web @@ -336,13 +411,15 @@ msgid "" "External ID,Name,Is a \n" " Company,Related Company/External ID" msgstr "" +"Küső ID,Név,Ez egy \n" +" vállalat,Kapcsolódó vállalat/Külső ID" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:233 #, python-format msgid "Suppliers and their respective contacts" -msgstr "" +msgstr "Beszállítók és a hozzá tartozó kapcsolattartók" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/it.po b/addons/base_import/i18n/it.po index c3e65e22653..b7b80e1afdd 100644 --- a/addons/base_import/i18n/it.po +++ b/addons/base_import/i18n/it.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/mk.po b/addons/base_import/i18n/mk.po index 11fff182f0c..02905005c5b 100644 --- a/addons/base_import/i18n/mk.po +++ b/addons/base_import/i18n/mk.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/mn.po b/addons/base_import/i18n/mn.po index 96b46a65b80..5d00aabc9ce 100644 --- a/addons/base_import/i18n/mn.po +++ b/addons/base_import/i18n/mn.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/nb.po b/addons/base_import/i18n/nb.po index c9d6183c99e..49071947e7e 100644 --- a/addons/base_import/i18n/nb.po +++ b/addons/base_import/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/nl.po b/addons/base_import/i18n/nl.po index 0c3c1423b17..e50425be045 100644 --- a/addons/base_import/i18n/nl.po +++ b/addons/base_import/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/pl.po b/addons/base_import/i18n/pl.po index a6b0a03ce46..94589878948 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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/pt.po b/addons/base_import/i18n/pt.po index d902e8ec02b..5a1edc57a7f 100644 --- a/addons/base_import/i18n/pt.po +++ b/addons/base_import/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/pt_BR.po b/addons/base_import/i18n/pt_BR.po index eecd862809b..ebb8d794879 100644 --- a/addons/base_import/i18n/pt_BR.po +++ b/addons/base_import/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/ro.po b/addons/base_import/i18n/ro.po index 57387e189d6..2139fae0f76 100644 --- a/addons/base_import/i18n/ro.po +++ b/addons/base_import/i18n/ro.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/ru.po b/addons/base_import/i18n/ru.po index fc80c518508..df0f22e75b1 100644 --- a/addons/base_import/i18n/ru.po +++ b/addons/base_import/i18n/ru.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/sl.po b/addons/base_import/i18n/sl.po index 749c4535cd7..a2962d82182 100644 --- a/addons/base_import/i18n/sl.po +++ b/addons/base_import/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/tr.po b/addons/base_import/i18n/tr.po index 9c6824576b0..b91002eb5d0 100644 --- a/addons/base_import/i18n/tr.po +++ b/addons/base_import/i18n/tr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_import/i18n/zh_CN.po b/addons/base_import/i18n/zh_CN.po index cf646499d97..cd0fe1c403d 100644 --- a/addons/base_import/i18n/zh_CN.po +++ b/addons/base_import/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_import diff --git a/addons/base_report_designer/i18n/ar.po b/addons/base_report_designer/i18n/ar.po index 24a3db8bef7..09d24ef3452 100644 --- a/addons/base_report_designer/i18n/ar.po +++ b/addons/base_report_designer/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/bg.po b/addons/base_report_designer/i18n/bg.po index e293ce6e718..3b5e641e498 100644 --- a/addons/base_report_designer/i18n/bg.po +++ b/addons/base_report_designer/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/bs.po b/addons/base_report_designer/i18n/bs.po index 937ff453019..f432a2d8847 100644 --- a/addons/base_report_designer/i18n/bs.po +++ b/addons/base_report_designer/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/ca.po b/addons/base_report_designer/i18n/ca.po index e3abc4152ad..9f1ff178e49 100644 --- a/addons/base_report_designer/i18n/ca.po +++ b/addons/base_report_designer/i18n/ca.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/cs.po b/addons/base_report_designer/i18n/cs.po index de7a3611100..af829e3cfaa 100644 --- a/addons/base_report_designer/i18n/cs.po +++ b/addons/base_report_designer/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/da.po b/addons/base_report_designer/i18n/da.po index 98e6ed01e6c..c7f3d1f589b 100644 --- a/addons/base_report_designer/i18n/da.po +++ b/addons/base_report_designer/i18n/da.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/de.po b/addons/base_report_designer/i18n/de.po index 11d54c5f32c..51279bfc620 100644 --- a/addons/base_report_designer/i18n/de.po +++ b/addons/base_report_designer/i18n/de.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/el.po b/addons/base_report_designer/i18n/el.po index ba892526d15..cf1c3d395a1 100644 --- a/addons/base_report_designer/i18n/el.po +++ b/addons/base_report_designer/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/base_report_designer/i18n/en_GB.po b/addons/base_report_designer/i18n/en_GB.po index 547648ccf47..50099e300c3 100644 --- a/addons/base_report_designer/i18n/en_GB.po +++ b/addons/base_report_designer/i18n/en_GB.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/es.po b/addons/base_report_designer/i18n/es.po index 54b96b42437..8b9d700d586 100644 --- a/addons/base_report_designer/i18n/es.po +++ b/addons/base_report_designer/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/es_AR.po b/addons/base_report_designer/i18n/es_AR.po index 8652ff3148a..8cb6bd244c7 100644 --- a/addons/base_report_designer/i18n/es_AR.po +++ b/addons/base_report_designer/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/es_CR.po b/addons/base_report_designer/i18n/es_CR.po index d74eeba055b..5aa5025c9d8 100644 --- a/addons/base_report_designer/i18n/es_CR.po +++ b/addons/base_report_designer/i18n/es_CR.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/base_report_designer/i18n/es_EC.po b/addons/base_report_designer/i18n/es_EC.po index 858377340b7..604a54597c5 100644 --- a/addons/base_report_designer/i18n/es_EC.po +++ b/addons/base_report_designer/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/es_PY.po b/addons/base_report_designer/i18n/es_PY.po index be97a2b4c3c..356d6ffb4ac 100644 --- a/addons/base_report_designer/i18n/es_PY.po +++ b/addons/base_report_designer/i18n/es_PY.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/et.po b/addons/base_report_designer/i18n/et.po index e82101f23d1..1482c8ed4b6 100644 --- a/addons/base_report_designer/i18n/et.po +++ b/addons/base_report_designer/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/fa.po b/addons/base_report_designer/i18n/fa.po index 4dc7249aff0..bd545fca4ee 100644 --- a/addons/base_report_designer/i18n/fa.po +++ b/addons/base_report_designer/i18n/fa.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/fi.po b/addons/base_report_designer/i18n/fi.po index af7692226c8..4d0e6b7c46b 100644 --- a/addons/base_report_designer/i18n/fi.po +++ b/addons/base_report_designer/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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/fr.po b/addons/base_report_designer/i18n/fr.po index dbcabd92711..0bbe6bae0a9 100644 --- a/addons/base_report_designer/i18n/fr.po +++ b/addons/base_report_designer/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/gl.po b/addons/base_report_designer/i18n/gl.po index 95b7ae04d70..207b76c8860 100644 --- a/addons/base_report_designer/i18n/gl.po +++ b/addons/base_report_designer/i18n/gl.po @@ -15,7 +15,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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/hr.po b/addons/base_report_designer/i18n/hr.po index c77c75afaa9..ac488e3b760 100644 --- a/addons/base_report_designer/i18n/hr.po +++ b/addons/base_report_designer/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/base_report_designer/i18n/hu.po b/addons/base_report_designer/i18n/hu.po index bb83602dd48..55f53e2386c 100644 --- a/addons/base_report_designer/i18n/hu.po +++ b/addons/base_report_designer/i18n/hu.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-05-10 17:18+0000\n" -"Last-Translator: Krisztian Eyssen \n" +"PO-Revision-Date: 2013-03-16 00:02+0000\n" +"Last-Translator: krnkris \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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-17 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer @@ -90,7 +90,7 @@ msgstr "Fájl neve" #: view:base.report.file.sxw:0 #: view:base.report.sxw:0 msgid "Get a report" -msgstr "" +msgstr "Igényeljen egy jelentést" #. module: base_report_designer #: view:base_report_designer.installer:0 @@ -114,6 +114,8 @@ msgid "" "OpenObject Report Designer plug-in file. Save as this file and install this " "plug-in in OpenOffice." msgstr "" +"OpenObject jelentéstervező plug-in fájl. Mentse másképpen ezt a fájlt és " +"telepítse ezt az OpenOffice plig-in fájlt.." #. module: base_report_designer #: view:base.report.rml.save:0 @@ -144,6 +146,10 @@ msgid "" "Don't forget to install the OpenERP SA OpenOffice package to modify it.\n" "Once it is modified, re-upload it in OpenERP using this wizard." msgstr "" +"Ez a kívánt jelentésének a sablonja.\n" +"Mentse mint egy .SXW fájl és nyissa meg az OpenOffice szerkesztővel.\n" +"Ne felejtse el telepíteni az OpenERP SA OpenOffice csomagot a módosításhoz.\n" +"Módosítás után, ismét töltse fel az OpenERP varázsló használatával." #. module: base_report_designer #: model:ir.actions.act_window,name:base_report_designer.action_view_base_report_sxw @@ -173,12 +179,12 @@ msgstr "Mégsem" #. module: base_report_designer #: view:base.report.sxw:0 msgid "or" -msgstr "" +msgstr "vagy" #. 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/id.po b/addons/base_report_designer/i18n/id.po index c21f0c89758..29aaebf08e2 100644 --- a/addons/base_report_designer/i18n/id.po +++ b/addons/base_report_designer/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/it.po b/addons/base_report_designer/i18n/it.po index 9c231ea7e8c..220c5c2beb4 100644 --- a/addons/base_report_designer/i18n/it.po +++ b/addons/base_report_designer/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/ja.po b/addons/base_report_designer/i18n/ja.po index 8136be31a05..6e3d7c96500 100644 --- a/addons/base_report_designer/i18n/ja.po +++ b/addons/base_report_designer/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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/ko.po b/addons/base_report_designer/i18n/ko.po index d8b28eb6d5c..b8225f916f7 100644 --- a/addons/base_report_designer/i18n/ko.po +++ b/addons/base_report_designer/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/lt.po b/addons/base_report_designer/i18n/lt.po index 937ff453019..07e94409425 100644 --- a/addons/base_report_designer/i18n/lt.po +++ b/addons/base_report_designer/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/mk.po b/addons/base_report_designer/i18n/mk.po index a493174551a..20dc09451c5 100644 --- a/addons/base_report_designer/i18n/mk.po +++ b/addons/base_report_designer/i18n/mk.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/mn.po b/addons/base_report_designer/i18n/mn.po index 6058078f4cf..2a311a86e3a 100644 --- a/addons/base_report_designer/i18n/mn.po +++ b/addons/base_report_designer/i18n/mn.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/nb.po b/addons/base_report_designer/i18n/nb.po index 0a3ebc4c9f3..728a9b29e6f 100644 --- a/addons/base_report_designer/i18n/nb.po +++ b/addons/base_report_designer/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/nl.po b/addons/base_report_designer/i18n/nl.po index 85a6475ef03..92c2d768a88 100644 --- a/addons/base_report_designer/i18n/nl.po +++ b/addons/base_report_designer/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/nl_BE.po b/addons/base_report_designer/i18n/nl_BE.po index be4c3d4d9b1..5500173f064 100644 --- a/addons/base_report_designer/i18n/nl_BE.po +++ b/addons/base_report_designer/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/pl.po b/addons/base_report_designer/i18n/pl.po index 23440c24aaf..00f17f88385 100644 --- a/addons/base_report_designer/i18n/pl.po +++ b/addons/base_report_designer/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/pt.po b/addons/base_report_designer/i18n/pt.po index 40cdd21ea56..562698c78a6 100644 --- a/addons/base_report_designer/i18n/pt.po +++ b/addons/base_report_designer/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/pt_BR.po b/addons/base_report_designer/i18n/pt_BR.po index 714f80905ae..cb7a8478a45 100644 --- a/addons/base_report_designer/i18n/pt_BR.po +++ b/addons/base_report_designer/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/ro.po b/addons/base_report_designer/i18n/ro.po index f02ab14dc6a..db64e902c0c 100644 --- a/addons/base_report_designer/i18n/ro.po +++ b/addons/base_report_designer/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/ru.po b/addons/base_report_designer/i18n/ru.po index dc103c18108..8bd1ee5c3d3 100644 --- a/addons/base_report_designer/i18n/ru.po +++ b/addons/base_report_designer/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/sk.po b/addons/base_report_designer/i18n/sk.po index c7a18ff2d96..7e4d16ff0be 100644 --- a/addons/base_report_designer/i18n/sk.po +++ b/addons/base_report_designer/i18n/sk.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/sl.po b/addons/base_report_designer/i18n/sl.po index 1b1d0b42892..2a411995a05 100644 --- a/addons/base_report_designer/i18n/sl.po +++ b/addons/base_report_designer/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/sq.po b/addons/base_report_designer/i18n/sq.po index 8e89a61609d..0f9cc16335e 100644 --- a/addons/base_report_designer/i18n/sq.po +++ b/addons/base_report_designer/i18n/sq.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/sr.po b/addons/base_report_designer/i18n/sr.po index 54c479eea83..d7ad33ca791 100644 --- a/addons/base_report_designer/i18n/sr.po +++ b/addons/base_report_designer/i18n/sr.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/sr@latin.po b/addons/base_report_designer/i18n/sr@latin.po index 8714e36167e..e9b21572618 100644 --- a/addons/base_report_designer/i18n/sr@latin.po +++ b/addons/base_report_designer/i18n/sr@latin.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/sv.po b/addons/base_report_designer/i18n/sv.po index d3e22d6d32a..0b732da52b1 100644 --- a/addons/base_report_designer/i18n/sv.po +++ b/addons/base_report_designer/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/tlh.po b/addons/base_report_designer/i18n/tlh.po index 9a1ad55b1d9..e9169745d2f 100644 --- a/addons/base_report_designer/i18n/tlh.po +++ b/addons/base_report_designer/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/tr.po b/addons/base_report_designer/i18n/tr.po index a2734224a20..5ae77de1c0f 100644 --- a/addons/base_report_designer/i18n/tr.po +++ b/addons/base_report_designer/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/uk.po b/addons/base_report_designer/i18n/uk.po index 98678864518..62f5f376c0f 100644 --- a/addons/base_report_designer/i18n/uk.po +++ b/addons/base_report_designer/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/vi.po b/addons/base_report_designer/i18n/vi.po index fc6c00f27ef..bc76e6dee3e 100644 --- a/addons/base_report_designer/i18n/vi.po +++ b/addons/base_report_designer/i18n/vi.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/zh_CN.po b/addons/base_report_designer/i18n/zh_CN.po index cf2251b8e17..880c458bfb8 100644 --- a/addons/base_report_designer/i18n/zh_CN.po +++ b/addons/base_report_designer/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/zh_TW.po b/addons/base_report_designer/i18n/zh_TW.po index 681b79deb88..e2e8b2fdf8b 100644 --- a/addons/base_report_designer/i18n/zh_TW.po +++ b/addons/base_report_designer/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_report_designer diff --git a/addons/base_setup/i18n/ar.po b/addons/base_setup/i18n/ar.po index 064b26bd21d..f3ccb29d411 100644 --- a/addons/base_setup/i18n/ar.po +++ b/addons/base_setup/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/bg.po b/addons/base_setup/i18n/bg.po index bf55adffcea..17c6c43b4a6 100644 --- a/addons/base_setup/i18n/bg.po +++ b/addons/base_setup/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/bs.po b/addons/base_setup/i18n/bs.po index e064b283f1e..64d98abdb94 100644 --- a/addons/base_setup/i18n/bs.po +++ b/addons/base_setup/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/ca.po b/addons/base_setup/i18n/ca.po index e9fe1e8b78b..defea84abbc 100644 --- a/addons/base_setup/i18n/ca.po +++ b/addons/base_setup/i18n/ca.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/cs.po b/addons/base_setup/i18n/cs.po index 6a56f253bd4..43ffbfbfb5f 100644 --- a/addons/base_setup/i18n/cs.po +++ b/addons/base_setup/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/base_setup/i18n/da.po b/addons/base_setup/i18n/da.po index 8a92d9bf94c..cdd909ef068 100644 --- a/addons/base_setup/i18n/da.po +++ b/addons/base_setup/i18n/da.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/de.po b/addons/base_setup/i18n/de.po index b2d3cb60951..dc856a16bd4 100644 --- a/addons/base_setup/i18n/de.po +++ b/addons/base_setup/i18n/de.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/el.po b/addons/base_setup/i18n/el.po index 93361b3e71c..dfd93286980 100644 --- a/addons/base_setup/i18n/el.po +++ b/addons/base_setup/i18n/el.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/en_GB.po b/addons/base_setup/i18n/en_GB.po index ecde57563d3..4040364ed7c 100644 --- a/addons/base_setup/i18n/en_GB.po +++ b/addons/base_setup/i18n/en_GB.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-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/es.po b/addons/base_setup/i18n/es.po index 0b77f9ad4e8..a443203dff8 100644 --- a/addons/base_setup/i18n/es.po +++ b/addons/base_setup/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/es_AR.po b/addons/base_setup/i18n/es_AR.po index 5e3ae817c3c..41e728a8df1 100644 --- a/addons/base_setup/i18n/es_AR.po +++ b/addons/base_setup/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/es_CL.po b/addons/base_setup/i18n/es_CL.po index 90caedd8ec6..6e9f950ea8f 100644 --- a/addons/base_setup/i18n/es_CL.po +++ b/addons/base_setup/i18n/es_CL.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-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/es_CR.po b/addons/base_setup/i18n/es_CR.po index 54afd1a12e0..8124a83ee09 100644 --- a/addons/base_setup/i18n/es_CR.po +++ b/addons/base_setup/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/base_setup/i18n/es_EC.po b/addons/base_setup/i18n/es_EC.po index 2548b54d0ae..e779ad2a630 100644 --- a/addons/base_setup/i18n/es_EC.po +++ b/addons/base_setup/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/es_MX.po b/addons/base_setup/i18n/es_MX.po index 32e8c62bd89..c092170e486 100644 --- a/addons/base_setup/i18n/es_MX.po +++ b/addons/base_setup/i18n/es_MX.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-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/es_PY.po b/addons/base_setup/i18n/es_PY.po index aa545ab272e..2560b9725ec 100644 --- a/addons/base_setup/i18n/es_PY.po +++ b/addons/base_setup/i18n/es_PY.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-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/et.po b/addons/base_setup/i18n/et.po index 6c356b17761..5c964ca36ff 100644 --- a/addons/base_setup/i18n/et.po +++ b/addons/base_setup/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/fa.po b/addons/base_setup/i18n/fa.po index fad4fe94b0e..75f91dc997d 100644 --- a/addons/base_setup/i18n/fa.po +++ b/addons/base_setup/i18n/fa.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/fi.po b/addons/base_setup/i18n/fi.po index 18c9a7db1a3..8275c6877c8 100644 --- a/addons/base_setup/i18n/fi.po +++ b/addons/base_setup/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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/fr.po b/addons/base_setup/i18n/fr.po index 641e3f19af8..6f368dae8ed 100644 --- a/addons/base_setup/i18n/fr.po +++ b/addons/base_setup/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/gl.po b/addons/base_setup/i18n/gl.po index 69cba7ab9c8..c80390f436a 100644 --- a/addons/base_setup/i18n/gl.po +++ b/addons/base_setup/i18n/gl.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/gu.po b/addons/base_setup/i18n/gu.po index b2f5c8d7e26..b4e2d7b2dff 100644 --- a/addons/base_setup/i18n/gu.po +++ b/addons/base_setup/i18n/gu.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/hr.po b/addons/base_setup/i18n/hr.po index 19be8ce8a22..1f29d2a6f6c 100644 --- a/addons/base_setup/i18n/hr.po +++ b/addons/base_setup/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/base_setup/i18n/hu.po b/addons/base_setup/i18n/hu.po index fe494f63953..922d55151d4 100644 --- a/addons/base_setup/i18n/hu.po +++ b/addons/base_setup/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/id.po b/addons/base_setup/i18n/id.po index 10c31cdf022..cb6accf3cb0 100644 --- a/addons/base_setup/i18n/id.po +++ b/addons/base_setup/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/it.po b/addons/base_setup/i18n/it.po index 6f89f315805..cad54a171a0 100644 --- a/addons/base_setup/i18n/it.po +++ b/addons/base_setup/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/ja.po b/addons/base_setup/i18n/ja.po index 3aef0d50a92..f91c648f1e0 100644 --- a/addons/base_setup/i18n/ja.po +++ b/addons/base_setup/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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/ko.po b/addons/base_setup/i18n/ko.po index 01c8453b52c..5b07e96b697 100644 --- a/addons/base_setup/i18n/ko.po +++ b/addons/base_setup/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/lt.po b/addons/base_setup/i18n/lt.po index 3cb7813e93a..ed24a95aceb 100644 --- a/addons/base_setup/i18n/lt.po +++ b/addons/base_setup/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/lv.po b/addons/base_setup/i18n/lv.po index 98f92bafd53..68a8507bd20 100644 --- a/addons/base_setup/i18n/lv.po +++ b/addons/base_setup/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/mk.po b/addons/base_setup/i18n/mk.po index 53c648fcbb0..e2a3d20492d 100644 --- a/addons/base_setup/i18n/mk.po +++ b/addons/base_setup/i18n/mk.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/mn.po b/addons/base_setup/i18n/mn.po index 8fb3aac3068..f3071950b2a 100644 --- a/addons/base_setup/i18n/mn.po +++ b/addons/base_setup/i18n/mn.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/nb.po b/addons/base_setup/i18n/nb.po index b298ce4491f..6809e31e463 100644 --- a/addons/base_setup/i18n/nb.po +++ b/addons/base_setup/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/nl.po b/addons/base_setup/i18n/nl.po index 1650b330eab..4132da9da5e 100644 --- a/addons/base_setup/i18n/nl.po +++ b/addons/base_setup/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup @@ -159,7 +159,7 @@ msgstr "Klant opties" #. module: base_setup #: view:base.config.settings:0 msgid "Import / Export" -msgstr "Importeren / Exporteren" +msgstr "Importeren" #. 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 32488d31f7e..f22fd2c8adc 100644 --- a/addons/base_setup/i18n/nl_BE.po +++ b/addons/base_setup/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/pl.po b/addons/base_setup/i18n/pl.po index 6cb93275151..a92e31a9f63 100644 --- a/addons/base_setup/i18n/pl.po +++ b/addons/base_setup/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/pt.po b/addons/base_setup/i18n/pt.po index 831b9ac12f9..0b43756561a 100644 --- a/addons/base_setup/i18n/pt.po +++ b/addons/base_setup/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/pt_BR.po b/addons/base_setup/i18n/pt_BR.po index 78bbcbae11f..95758620ac0 100644 --- a/addons/base_setup/i18n/pt_BR.po +++ b/addons/base_setup/i18n/pt_BR.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-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/ro.po b/addons/base_setup/i18n/ro.po index c1342c726f8..ddfdcdc56d3 100644 --- a/addons/base_setup/i18n/ro.po +++ b/addons/base_setup/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/ru.po b/addons/base_setup/i18n/ru.po index 5cb87fa818b..bfc0807f019 100644 --- a/addons/base_setup/i18n/ru.po +++ b/addons/base_setup/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/sk.po b/addons/base_setup/i18n/sk.po index 5f20410518b..50be7238508 100644 --- a/addons/base_setup/i18n/sk.po +++ b/addons/base_setup/i18n/sk.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/sl.po b/addons/base_setup/i18n/sl.po index 7bafb5eb522..42ea3348057 100644 --- a/addons/base_setup/i18n/sl.po +++ b/addons/base_setup/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/sq.po b/addons/base_setup/i18n/sq.po index 5167afcd34b..9a98baa18bb 100644 --- a/addons/base_setup/i18n/sq.po +++ b/addons/base_setup/i18n/sq.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/sr.po b/addons/base_setup/i18n/sr.po index 1bd2eb88bba..c5569b9dcfd 100644 --- a/addons/base_setup/i18n/sr.po +++ b/addons/base_setup/i18n/sr.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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/sr@latin.po b/addons/base_setup/i18n/sr@latin.po index be52a7bc49f..3e1e7750f28 100644 --- a/addons/base_setup/i18n/sr@latin.po +++ b/addons/base_setup/i18n/sr@latin.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-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/sv.po b/addons/base_setup/i18n/sv.po index a7bc6edd54e..2ebdfd158d9 100644 --- a/addons/base_setup/i18n/sv.po +++ b/addons/base_setup/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/th.po b/addons/base_setup/i18n/th.po index b551304acb9..a410709fcd0 100644 --- a/addons/base_setup/i18n/th.po +++ b/addons/base_setup/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-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/tlh.po b/addons/base_setup/i18n/tlh.po index cdbb6aa82af..de4cb21af9f 100644 --- a/addons/base_setup/i18n/tlh.po +++ b/addons/base_setup/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/tr.po b/addons/base_setup/i18n/tr.po index b0a14758682..45091e281fd 100644 --- a/addons/base_setup/i18n/tr.po +++ b/addons/base_setup/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:12+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/uk.po b/addons/base_setup/i18n/uk.po index 22c779fb398..f0af1d7d897 100644 --- a/addons/base_setup/i18n/uk.po +++ b/addons/base_setup/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/vi.po b/addons/base_setup/i18n/vi.po index f2997e25f05..14565a6ca00 100644 --- a/addons/base_setup/i18n/vi.po +++ b/addons/base_setup/i18n/vi.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-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/zh_CN.po b/addons/base_setup/i18n/zh_CN.po index f83dfaa4c2c..32e96a396a2 100644 --- a/addons/base_setup/i18n/zh_CN.po +++ b/addons/base_setup/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_setup/i18n/zh_TW.po b/addons/base_setup/i18n/zh_TW.po index 3fb3c5481dd..532af36337c 100644 --- a/addons/base_setup/i18n/zh_TW.po +++ b/addons/base_setup/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:13+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:12+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_setup diff --git a/addons/base_status/i18n/ar.po b/addons/base_status/i18n/ar.po index f3145414a79..1a0e4f1c401 100644 --- a/addons/base_status/i18n/ar.po +++ b/addons/base_status/i18n/ar.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/de.po b/addons/base_status/i18n/de.po index 37199c9b6f3..9507cff81f4 100644 --- a/addons/base_status/i18n/de.po +++ b/addons/base_status/i18n/de.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/en_GB.po b/addons/base_status/i18n/en_GB.po index dc5685bf0c9..f1461bf4f1b 100644 --- a/addons/base_status/i18n/en_GB.po +++ b/addons/base_status/i18n/en_GB.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/es.po b/addons/base_status/i18n/es.po index 3a0426db436..3ed75d4c160 100644 --- a/addons/base_status/i18n/es.po +++ b/addons/base_status/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/fr.po b/addons/base_status/i18n/fr.po index 359c1256ddf..7a22f3be0f9 100644 --- a/addons/base_status/i18n/fr.po +++ b/addons/base_status/i18n/fr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/hr.po b/addons/base_status/i18n/hr.po index 4b7597860bd..41d004aaf14 100644 --- a/addons/base_status/i18n/hr.po +++ b/addons/base_status/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/hu.po b/addons/base_status/i18n/hu.po index a181b6cb2f4..e11ea554b07 100644 --- a/addons/base_status/i18n/hu.po +++ b/addons/base_status/i18n/hu.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/id.po b/addons/base_status/i18n/id.po index fa34882a841..a90023ef348 100644 --- a/addons/base_status/i18n/id.po +++ b/addons/base_status/i18n/id.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/it.po b/addons/base_status/i18n/it.po index 418082e4db1..6594ff72e4e 100644 --- a/addons/base_status/i18n/it.po +++ b/addons/base_status/i18n/it.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/mk.po b/addons/base_status/i18n/mk.po index 951b2cd7aae..0f321e004b1 100644 --- a/addons/base_status/i18n/mk.po +++ b/addons/base_status/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/mn.po b/addons/base_status/i18n/mn.po index 0c02ef0f1ea..5bb891348e8 100644 --- a/addons/base_status/i18n/mn.po +++ b/addons/base_status/i18n/mn.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/nl.po b/addons/base_status/i18n/nl.po index af6f034b973..882e44d2ded 100644 --- a/addons/base_status/i18n/nl.po +++ b/addons/base_status/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/pl.po b/addons/base_status/i18n/pl.po index d48a6ab26f9..61a1e96e6f4 100644 --- a/addons/base_status/i18n/pl.po +++ b/addons/base_status/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/pt.po b/addons/base_status/i18n/pt.po index 0fd83c034e4..2e8648811c0 100644 --- a/addons/base_status/i18n/pt.po +++ b/addons/base_status/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/pt_BR.po b/addons/base_status/i18n/pt_BR.po index 4293b338ac9..37bf13bed7c 100644 --- a/addons/base_status/i18n/pt_BR.po +++ b/addons/base_status/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/ro.po b/addons/base_status/i18n/ro.po index 98c2da7a75f..4f82205f7e5 100644 --- a/addons/base_status/i18n/ro.po +++ b/addons/base_status/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/ru.po b/addons/base_status/i18n/ru.po index 33628b4b54a..546f2772af3 100644 --- a/addons/base_status/i18n/ru.po +++ b/addons/base_status/i18n/ru.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/sl.po b/addons/base_status/i18n/sl.po index 7761395b939..d4f00213381 100644 --- a/addons/base_status/i18n/sl.po +++ b/addons/base_status/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/tr.po b/addons/base_status/i18n/tr.po index bad3124302b..33eac53991e 100644 --- a/addons/base_status/i18n/tr.po +++ b/addons/base_status/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/zh_CN.po b/addons/base_status/i18n/zh_CN.po index 1cebafeb5b3..154de7fb950 100644 --- a/addons/base_status/i18n/zh_CN.po +++ b/addons/base_status/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_status/i18n/zh_TW.po b/addons/base_status/i18n/zh_TW.po index 556d7f80e4a..9a32a17d35e 100644 --- a/addons/base_status/i18n/zh_TW.po +++ b/addons/base_status/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_status diff --git a/addons/base_vat/i18n/ar.po b/addons/base_vat/i18n/ar.po index 5f7c92f361c..bb57b2cbf81 100644 --- a/addons/base_vat/i18n/ar.po +++ b/addons/base_vat/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/bg.po b/addons/base_vat/i18n/bg.po index 6f9a5e7c81d..2f61192d91a 100644 --- a/addons/base_vat/i18n/bg.po +++ b/addons/base_vat/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/bs.po b/addons/base_vat/i18n/bs.po index b7eaa4c4787..a86aeaf76ea 100644 --- a/addons/base_vat/i18n/bs.po +++ b/addons/base_vat/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/ca.po b/addons/base_vat/i18n/ca.po index 170da6b1e85..0264100c68a 100644 --- a/addons/base_vat/i18n/ca.po +++ b/addons/base_vat/i18n/ca.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/cs.po b/addons/base_vat/i18n/cs.po index c69236cd345..8da61c31886 100644 --- a/addons/base_vat/i18n/cs.po +++ b/addons/base_vat/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/da.po b/addons/base_vat/i18n/da.po index 512610c9e5a..3cad3ba4a2c 100644 --- a/addons/base_vat/i18n/da.po +++ b/addons/base_vat/i18n/da.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/de.po b/addons/base_vat/i18n/de.po index 20a6edb2a59..693168d5d31 100644 --- a/addons/base_vat/i18n/de.po +++ b/addons/base_vat/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/el.po b/addons/base_vat/i18n/el.po index ad119ce232a..028aef8d59d 100644 --- a/addons/base_vat/i18n/el.po +++ b/addons/base_vat/i18n/el.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/en_AU.po b/addons/base_vat/i18n/en_AU.po index b8b29e2241e..7cd31409371 100644 --- a/addons/base_vat/i18n/en_AU.po +++ b/addons/base_vat/i18n/en_AU.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/en_GB.po b/addons/base_vat/i18n/en_GB.po index 7a2b261ce83..5d1a30b3f9f 100644 --- a/addons/base_vat/i18n/en_GB.po +++ b/addons/base_vat/i18n/en_GB.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/es.po b/addons/base_vat/i18n/es.po index da6e4b8ce27..c556542c4bf 100644 --- a/addons/base_vat/i18n/es.po +++ b/addons/base_vat/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/es_AR.po b/addons/base_vat/i18n/es_AR.po index 72272378c6f..c96957eba85 100644 --- a/addons/base_vat/i18n/es_AR.po +++ b/addons/base_vat/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/es_CL.po b/addons/base_vat/i18n/es_CL.po index dc9f70c18a5..2e05efab36a 100644 --- a/addons/base_vat/i18n/es_CL.po +++ b/addons/base_vat/i18n/es_CL.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/es_CR.po b/addons/base_vat/i18n/es_CR.po index 42db7ffde83..9d80c22a940 100644 --- a/addons/base_vat/i18n/es_CR.po +++ b/addons/base_vat/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/base_vat/i18n/es_EC.po b/addons/base_vat/i18n/es_EC.po index db38b9969b8..bad3f7ba83b 100644 --- a/addons/base_vat/i18n/es_EC.po +++ b/addons/base_vat/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/es_MX.po b/addons/base_vat/i18n/es_MX.po index d49e42f1831..30fb421b98d 100644 --- a/addons/base_vat/i18n/es_MX.po +++ b/addons/base_vat/i18n/es_MX.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/es_PY.po b/addons/base_vat/i18n/es_PY.po index 485d9f8ee06..fbf8a2fbea1 100644 --- a/addons/base_vat/i18n/es_PY.po +++ b/addons/base_vat/i18n/es_PY.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/et.po b/addons/base_vat/i18n/et.po index 41c9818d87f..0d2a334ab40 100644 --- a/addons/base_vat/i18n/et.po +++ b/addons/base_vat/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/eu.po b/addons/base_vat/i18n/eu.po index 393fa9bc2e3..7f26826d372 100644 --- a/addons/base_vat/i18n/eu.po +++ b/addons/base_vat/i18n/eu.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/fa.po b/addons/base_vat/i18n/fa.po index 38b1589cce7..da370ce2871 100644 --- a/addons/base_vat/i18n/fa.po +++ b/addons/base_vat/i18n/fa.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/fi.po b/addons/base_vat/i18n/fi.po index 3c436c6e05e..91b225e70ba 100644 --- a/addons/base_vat/i18n/fi.po +++ b/addons/base_vat/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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/fr.po b/addons/base_vat/i18n/fr.po index 343dbf31b75..581b3fbf727 100644 --- a/addons/base_vat/i18n/fr.po +++ b/addons/base_vat/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/gl.po b/addons/base_vat/i18n/gl.po index f0da0fbd2fd..10d41cfebb5 100644 --- a/addons/base_vat/i18n/gl.po +++ b/addons/base_vat/i18n/gl.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/gu.po b/addons/base_vat/i18n/gu.po index dbf533020f8..ca858737f2a 100644 --- a/addons/base_vat/i18n/gu.po +++ b/addons/base_vat/i18n/gu.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/hr.po b/addons/base_vat/i18n/hr.po index 0fcc60906fd..6ca2b250bb7 100644 --- a/addons/base_vat/i18n/hr.po +++ b/addons/base_vat/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/hu.po b/addons/base_vat/i18n/hu.po index 5082504bd68..8f80dba97c4 100644 --- a/addons/base_vat/i18n/hu.po +++ b/addons/base_vat/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/id.po b/addons/base_vat/i18n/id.po index ebd50c208fa..b48c4d84606 100644 --- a/addons/base_vat/i18n/id.po +++ b/addons/base_vat/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/it.po b/addons/base_vat/i18n/it.po index 80bc724a69d..a3809839058 100644 --- a/addons/base_vat/i18n/it.po +++ b/addons/base_vat/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/ja.po b/addons/base_vat/i18n/ja.po index ad7982ba3d8..3cedeffa2e4 100644 --- a/addons/base_vat/i18n/ja.po +++ b/addons/base_vat/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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/ko.po b/addons/base_vat/i18n/ko.po index 7482d8cd510..6ecfb77a26a 100644 --- a/addons/base_vat/i18n/ko.po +++ b/addons/base_vat/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/lt.po b/addons/base_vat/i18n/lt.po index 659e845e69e..823ee1b2391 100644 --- a/addons/base_vat/i18n/lt.po +++ b/addons/base_vat/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/lv.po b/addons/base_vat/i18n/lv.po index dcc6fac857c..e18ff5923e9 100644 --- a/addons/base_vat/i18n/lv.po +++ b/addons/base_vat/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/mk.po b/addons/base_vat/i18n/mk.po index 72ca4e1828a..4c9af641c82 100644 --- a/addons/base_vat/i18n/mk.po +++ b/addons/base_vat/i18n/mk.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/mn.po b/addons/base_vat/i18n/mn.po index 66a443dbe6a..6471411c1b5 100644 --- a/addons/base_vat/i18n/mn.po +++ b/addons/base_vat/i18n/mn.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/nb.po b/addons/base_vat/i18n/nb.po index 7878992cad6..4e6652408a4 100644 --- a/addons/base_vat/i18n/nb.po +++ b/addons/base_vat/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/nl.po b/addons/base_vat/i18n/nl.po index 946ebedc55a..87100d48e1f 100644 --- a/addons/base_vat/i18n/nl.po +++ b/addons/base_vat/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/nl_BE.po b/addons/base_vat/i18n/nl_BE.po index d2639a663a7..39966dc58ef 100644 --- a/addons/base_vat/i18n/nl_BE.po +++ b/addons/base_vat/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/oc.po b/addons/base_vat/i18n/oc.po index 55114e9ad39..ca80eaaa622 100644 --- a/addons/base_vat/i18n/oc.po +++ b/addons/base_vat/i18n/oc.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/pl.po b/addons/base_vat/i18n/pl.po index 13c3353e8de..a2dae8fecc3 100644 --- a/addons/base_vat/i18n/pl.po +++ b/addons/base_vat/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/pt.po b/addons/base_vat/i18n/pt.po index ebf045be3ce..77a0d7f9366 100644 --- a/addons/base_vat/i18n/pt.po +++ b/addons/base_vat/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/pt_BR.po b/addons/base_vat/i18n/pt_BR.po index f6e944347d5..020987602e7 100644 --- a/addons/base_vat/i18n/pt_BR.po +++ b/addons/base_vat/i18n/pt_BR.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/ro.po b/addons/base_vat/i18n/ro.po index d87c93714ea..14a41d592f2 100644 --- a/addons/base_vat/i18n/ro.po +++ b/addons/base_vat/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/ru.po b/addons/base_vat/i18n/ru.po index 2772b1014b6..9ea9cb8c057 100644 --- a/addons/base_vat/i18n/ru.po +++ b/addons/base_vat/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/sk.po b/addons/base_vat/i18n/sk.po index 1c9a781fc84..19cc2205377 100644 --- a/addons/base_vat/i18n/sk.po +++ b/addons/base_vat/i18n/sk.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/sl.po b/addons/base_vat/i18n/sl.po index 19c42b03377..247d21e471f 100644 --- a/addons/base_vat/i18n/sl.po +++ b/addons/base_vat/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/sq.po b/addons/base_vat/i18n/sq.po index ae6661f7577..882fa23f193 100644 --- a/addons/base_vat/i18n/sq.po +++ b/addons/base_vat/i18n/sq.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/sr.po b/addons/base_vat/i18n/sr.po index 13ad73ffc66..91813d9c44a 100644 --- a/addons/base_vat/i18n/sr.po +++ b/addons/base_vat/i18n/sr.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/sr@latin.po b/addons/base_vat/i18n/sr@latin.po index 56fe38a8314..de06f5f095b 100644 --- a/addons/base_vat/i18n/sr@latin.po +++ b/addons/base_vat/i18n/sr@latin.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/sv.po b/addons/base_vat/i18n/sv.po index 335f22cdab7..73ae184460b 100644 --- a/addons/base_vat/i18n/sv.po +++ b/addons/base_vat/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/th.po b/addons/base_vat/i18n/th.po index 7715fdfbf55..f3f9fc1728f 100644 --- a/addons/base_vat/i18n/th.po +++ b/addons/base_vat/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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/tlh.po b/addons/base_vat/i18n/tlh.po index 4de31c19fb6..eb206880a57 100644 --- a/addons/base_vat/i18n/tlh.po +++ b/addons/base_vat/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/tr.po b/addons/base_vat/i18n/tr.po index d0617893e49..43f58bdd83e 100644 --- a/addons/base_vat/i18n/tr.po +++ b/addons/base_vat/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/uk.po b/addons/base_vat/i18n/uk.po index 8923cd1bf83..69ec2aedd6a 100644 --- a/addons/base_vat/i18n/uk.po +++ b/addons/base_vat/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/vi.po b/addons/base_vat/i18n/vi.po index f2a224dc03b..867b7822375 100644 --- a/addons/base_vat/i18n/vi.po +++ b/addons/base_vat/i18n/vi.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/zh_CN.po b/addons/base_vat/i18n/zh_CN.po index d45dddb2523..3e75d462c10 100644 --- a/addons/base_vat/i18n/zh_CN.po +++ b/addons/base_vat/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/base_vat/i18n/zh_TW.po b/addons/base_vat/i18n/zh_TW.po index 7d60ab30dda..bfb64298fb8 100644 --- a/addons/base_vat/i18n/zh_TW.po +++ b/addons/base_vat/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: base_vat diff --git a/addons/board/i18n/ar.po b/addons/board/i18n/ar.po index 79a04c9bd19..65dd9a9c30e 100644 --- a/addons/board/i18n/ar.po +++ b/addons/board/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/bg.po b/addons/board/i18n/bg.po index ccbd6984310..dcaeb9f2943 100644 --- a/addons/board/i18n/bg.po +++ b/addons/board/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/br.po b/addons/board/i18n/br.po index 58326c2a6a3..82d7ebb00f7 100644 --- a/addons/board/i18n/br.po +++ b/addons/board/i18n/br.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/bs.po b/addons/board/i18n/bs.po index ee781790407..3a0945927c8 100644 --- a/addons/board/i18n/bs.po +++ b/addons/board/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/ca.po b/addons/board/i18n/ca.po index 63c591dc9d9..05964ca0900 100644 --- a/addons/board/i18n/ca.po +++ b/addons/board/i18n/ca.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/cs.po b/addons/board/i18n/cs.po index af0c3d54f30..bbc3f153b1b 100644 --- a/addons/board/i18n/cs.po +++ b/addons/board/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/board/i18n/da.po b/addons/board/i18n/da.po index 14f1f98608b..dc008bafa70 100644 --- a/addons/board/i18n/da.po +++ b/addons/board/i18n/da.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/de.po b/addons/board/i18n/de.po index 3fc7392f320..7f8081ea65c 100644 --- a/addons/board/i18n/de.po +++ b/addons/board/i18n/de.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/el.po b/addons/board/i18n/el.po index 91e6789ece6..f0a2ebef7f0 100644 --- a/addons/board/i18n/el.po +++ b/addons/board/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/board/i18n/en_GB.po b/addons/board/i18n/en_GB.po index 13ece29c9da..38f89e93455 100644 --- a/addons/board/i18n/en_GB.po +++ b/addons/board/i18n/en_GB.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/es.po b/addons/board/i18n/es.po index d9035e97c90..a5867200dae 100644 --- a/addons/board/i18n/es.po +++ b/addons/board/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/es_AR.po b/addons/board/i18n/es_AR.po index 5e4f34e6e33..55043fd3d58 100644 --- a/addons/board/i18n/es_AR.po +++ b/addons/board/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/es_CL.po b/addons/board/i18n/es_CL.po index 978034634ba..1d9d36e2f1b 100644 --- a/addons/board/i18n/es_CL.po +++ b/addons/board/i18n/es_CL.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/es_CR.po b/addons/board/i18n/es_CR.po index 5f61072b8fc..34f29c02d7a 100644 --- a/addons/board/i18n/es_CR.po +++ b/addons/board/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/board/i18n/es_EC.po b/addons/board/i18n/es_EC.po index 145e1d35809..8bca188aebe 100644 --- a/addons/board/i18n/es_EC.po +++ b/addons/board/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/es_PY.po b/addons/board/i18n/es_PY.po index 5a430d2f690..06b7547a964 100644 --- a/addons/board/i18n/es_PY.po +++ b/addons/board/i18n/es_PY.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/et.po b/addons/board/i18n/et.po index 7b99c08abb9..2a67114e9d5 100644 --- a/addons/board/i18n/et.po +++ b/addons/board/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/fa.po b/addons/board/i18n/fa.po index b16b6939437..f6d632874eb 100644 --- a/addons/board/i18n/fa.po +++ b/addons/board/i18n/fa.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/fi.po b/addons/board/i18n/fi.po index b005ce9f0c4..08d6c9037ef 100644 --- a/addons/board/i18n/fi.po +++ b/addons/board/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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/fr.po b/addons/board/i18n/fr.po index d740701af8a..c5a8ee609ad 100644 --- a/addons/board/i18n/fr.po +++ b/addons/board/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/gl.po b/addons/board/i18n/gl.po index e8d72d3a3c3..f308956049b 100644 --- a/addons/board/i18n/gl.po +++ b/addons/board/i18n/gl.po @@ -15,7 +15,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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/gu.po b/addons/board/i18n/gu.po index 3f556a43f60..622fd452f55 100644 --- a/addons/board/i18n/gu.po +++ b/addons/board/i18n/gu.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/hr.po b/addons/board/i18n/hr.po index 58a62492533..67b6ba0ff1c 100644 --- a/addons/board/i18n/hr.po +++ b/addons/board/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/hu.po b/addons/board/i18n/hu.po index 0f4ba369879..b3fa8480729 100644 --- a/addons/board/i18n/hu.po +++ b/addons/board/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/id.po b/addons/board/i18n/id.po index 44db0fd3674..b2793e9d54e 100644 --- a/addons/board/i18n/id.po +++ b/addons/board/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/it.po b/addons/board/i18n/it.po index 27a7e4b52fd..14d5a41d401 100644 --- a/addons/board/i18n/it.po +++ b/addons/board/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/ja.po b/addons/board/i18n/ja.po index 6050509ee79..fab1b78e4f7 100644 --- a/addons/board/i18n/ja.po +++ b/addons/board/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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/ko.po b/addons/board/i18n/ko.po index b0b962b0feb..62e5976a1c1 100644 --- a/addons/board/i18n/ko.po +++ b/addons/board/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/ln.po b/addons/board/i18n/ln.po index caf538ba79c..4308bdf809f 100644 --- a/addons/board/i18n/ln.po +++ b/addons/board/i18n/ln.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/lt.po b/addons/board/i18n/lt.po index 5c96fb147cd..596be45780a 100644 --- a/addons/board/i18n/lt.po +++ b/addons/board/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/lv.po b/addons/board/i18n/lv.po index 7b1833f3579..59d2c318361 100644 --- a/addons/board/i18n/lv.po +++ b/addons/board/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/mk.po b/addons/board/i18n/mk.po index d1d9f414372..d8790943ad9 100644 --- a/addons/board/i18n/mk.po +++ b/addons/board/i18n/mk.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/mn.po b/addons/board/i18n/mn.po index 7d36ea14f2e..d13bdfc42bd 100644 --- a/addons/board/i18n/mn.po +++ b/addons/board/i18n/mn.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/nb.po b/addons/board/i18n/nb.po index 04119749c7f..953ca5d6197 100644 --- a/addons/board/i18n/nb.po +++ b/addons/board/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/nl.po b/addons/board/i18n/nl.po index 1c23b6e9a5d..30e5d3b3995 100644 --- a/addons/board/i18n/nl.po +++ b/addons/board/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/nl_BE.po b/addons/board/i18n/nl_BE.po index 2d0d2ed14c7..8ddd466e441 100644 --- a/addons/board/i18n/nl_BE.po +++ b/addons/board/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/pl.po b/addons/board/i18n/pl.po index 4189347fc6f..54495b31a90 100644 --- a/addons/board/i18n/pl.po +++ b/addons/board/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/pt.po b/addons/board/i18n/pt.po index d39ee20c5cd..fcb53938864 100644 --- a/addons/board/i18n/pt.po +++ b/addons/board/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/pt_BR.po b/addons/board/i18n/pt_BR.po index 6595c5ad275..1e60cca4440 100644 --- a/addons/board/i18n/pt_BR.po +++ b/addons/board/i18n/pt_BR.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/ro.po b/addons/board/i18n/ro.po index d7856fd585c..3d884873249 100644 --- a/addons/board/i18n/ro.po +++ b/addons/board/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/ru.po b/addons/board/i18n/ru.po index 7e9de0d04d4..bd365acf5ec 100644 --- a/addons/board/i18n/ru.po +++ b/addons/board/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/sk.po b/addons/board/i18n/sk.po index da25141da9f..708f87a5d1d 100644 --- a/addons/board/i18n/sk.po +++ b/addons/board/i18n/sk.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/sl.po b/addons/board/i18n/sl.po index 4e631286914..58f456f1886 100644 --- a/addons/board/i18n/sl.po +++ b/addons/board/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/sq.po b/addons/board/i18n/sq.po index a86f123e257..c9fc6c9da4f 100644 --- a/addons/board/i18n/sq.po +++ b/addons/board/i18n/sq.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/sr.po b/addons/board/i18n/sr.po index fd3fcb908ea..f27fbf2f3ca 100644 --- a/addons/board/i18n/sr.po +++ b/addons/board/i18n/sr.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/sr@latin.po b/addons/board/i18n/sr@latin.po index 3a101c3dd2e..b696b6be8e9 100644 --- a/addons/board/i18n/sr@latin.po +++ b/addons/board/i18n/sr@latin.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/sv.po b/addons/board/i18n/sv.po index 1335b946173..996c61e4987 100644 --- a/addons/board/i18n/sv.po +++ b/addons/board/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/th.po b/addons/board/i18n/th.po index f8807140818..b04bac9c563 100644 --- a/addons/board/i18n/th.po +++ b/addons/board/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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/tlh.po b/addons/board/i18n/tlh.po index 150c39b4466..f99bc55bd0e 100644 --- a/addons/board/i18n/tlh.po +++ b/addons/board/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/tr.po b/addons/board/i18n/tr.po index a4fd045b135..62805ea3d18 100644 --- a/addons/board/i18n/tr.po +++ b/addons/board/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/uk.po b/addons/board/i18n/uk.po index 80d209793a4..c3f061bd814 100644 --- a/addons/board/i18n/uk.po +++ b/addons/board/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/vi.po b/addons/board/i18n/vi.po index d107ea447f6..cd4ec2e2b08 100644 --- a/addons/board/i18n/vi.po +++ b/addons/board/i18n/vi.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/zh_CN.po b/addons/board/i18n/zh_CN.po index c46e7a8f645..c446d4f14aa 100644 --- a/addons/board/i18n/zh_CN.po +++ b/addons/board/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/board/i18n/zh_TW.po b/addons/board/i18n/zh_TW.po index 9995c30b701..19d64a46c4f 100644 --- a/addons/board/i18n/zh_TW.po +++ b/addons/board/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: board diff --git a/addons/claim_from_delivery/i18n/ar.po b/addons/claim_from_delivery/i18n/ar.po index 20954bd13fa..bfb8998e14d 100644 --- a/addons/claim_from_delivery/i18n/ar.po +++ b/addons/claim_from_delivery/i18n/ar.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/bg.po b/addons/claim_from_delivery/i18n/bg.po index de7a97ab27d..e28b6441ee3 100644 --- a/addons/claim_from_delivery/i18n/bg.po +++ b/addons/claim_from_delivery/i18n/bg.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/ca.po b/addons/claim_from_delivery/i18n/ca.po index 72d6b3c7276..d8cb8a45f94 100644 --- a/addons/claim_from_delivery/i18n/ca.po +++ b/addons/claim_from_delivery/i18n/ca.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/cs.po b/addons/claim_from_delivery/i18n/cs.po index 803f4f1e81e..ea676f0221d 100644 --- a/addons/claim_from_delivery/i18n/cs.po +++ b/addons/claim_from_delivery/i18n/cs.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/da.po b/addons/claim_from_delivery/i18n/da.po index 0f634a7bc69..5808eeb7038 100644 --- a/addons/claim_from_delivery/i18n/da.po +++ b/addons/claim_from_delivery/i18n/da.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/de.po b/addons/claim_from_delivery/i18n/de.po index 104d3531207..703498d70ee 100644 --- a/addons/claim_from_delivery/i18n/de.po +++ b/addons/claim_from_delivery/i18n/de.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/en_GB.po b/addons/claim_from_delivery/i18n/en_GB.po index 3c897ea4d3e..6ff82222299 100644 --- a/addons/claim_from_delivery/i18n/en_GB.po +++ b/addons/claim_from_delivery/i18n/en_GB.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/es.po b/addons/claim_from_delivery/i18n/es.po index bc27e7c4452..1dbb3d2c21b 100644 --- a/addons/claim_from_delivery/i18n/es.po +++ b/addons/claim_from_delivery/i18n/es.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/es_AR.po b/addons/claim_from_delivery/i18n/es_AR.po index 1eec6ab2c59..5cd1f6675a9 100644 --- a/addons/claim_from_delivery/i18n/es_AR.po +++ b/addons/claim_from_delivery/i18n/es_AR.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/es_CL.po b/addons/claim_from_delivery/i18n/es_CL.po index e9425592b2c..eafd83418f9 100644 --- a/addons/claim_from_delivery/i18n/es_CL.po +++ b/addons/claim_from_delivery/i18n/es_CL.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/es_CR.po b/addons/claim_from_delivery/i18n/es_CR.po index a983f1d8022..08fe476cbaf 100644 --- a/addons/claim_from_delivery/i18n/es_CR.po +++ b/addons/claim_from_delivery/i18n/es_CR.po @@ -15,7 +15,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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/claim_from_delivery/i18n/es_EC.po b/addons/claim_from_delivery/i18n/es_EC.po index 8f417290e99..32150db1afe 100644 --- a/addons/claim_from_delivery/i18n/es_EC.po +++ b/addons/claim_from_delivery/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/es_PY.po b/addons/claim_from_delivery/i18n/es_PY.po index 27b24028015..6d58d10b089 100644 --- a/addons/claim_from_delivery/i18n/es_PY.po +++ b/addons/claim_from_delivery/i18n/es_PY.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/fa.po b/addons/claim_from_delivery/i18n/fa.po index 71436d9981f..34961b63c46 100644 --- a/addons/claim_from_delivery/i18n/fa.po +++ b/addons/claim_from_delivery/i18n/fa.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/fi.po b/addons/claim_from_delivery/i18n/fi.po index 4db5a905cfa..c2767dc649a 100644 --- a/addons/claim_from_delivery/i18n/fi.po +++ b/addons/claim_from_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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/fr.po b/addons/claim_from_delivery/i18n/fr.po index 0e8922c7fbc..3f45a10094d 100644 --- a/addons/claim_from_delivery/i18n/fr.po +++ b/addons/claim_from_delivery/i18n/fr.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/gl.po b/addons/claim_from_delivery/i18n/gl.po index 8adeb4f1e35..a32e850fd86 100644 --- a/addons/claim_from_delivery/i18n/gl.po +++ b/addons/claim_from_delivery/i18n/gl.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/gu.po b/addons/claim_from_delivery/i18n/gu.po index fef61cf85b4..71cda4bfde6 100644 --- a/addons/claim_from_delivery/i18n/gu.po +++ b/addons/claim_from_delivery/i18n/gu.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/hr.po b/addons/claim_from_delivery/i18n/hr.po index d835953f228..55a64483b21 100644 --- a/addons/claim_from_delivery/i18n/hr.po +++ b/addons/claim_from_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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/hu.po b/addons/claim_from_delivery/i18n/hu.po index dc48ea66388..f614040965b 100644 --- a/addons/claim_from_delivery/i18n/hu.po +++ b/addons/claim_from_delivery/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/id.po b/addons/claim_from_delivery/i18n/id.po index 86a05e26421..cbb317615b9 100644 --- a/addons/claim_from_delivery/i18n/id.po +++ b/addons/claim_from_delivery/i18n/id.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/it.po b/addons/claim_from_delivery/i18n/it.po index 20909cb70f5..6de72ddfa2a 100644 --- a/addons/claim_from_delivery/i18n/it.po +++ b/addons/claim_from_delivery/i18n/it.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/ja.po b/addons/claim_from_delivery/i18n/ja.po index 0e600872f1e..7bcbae53d09 100644 --- a/addons/claim_from_delivery/i18n/ja.po +++ b/addons/claim_from_delivery/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/lo.po b/addons/claim_from_delivery/i18n/lo.po index 756b067e1cf..fff3cf71d54 100644 --- a/addons/claim_from_delivery/i18n/lo.po +++ b/addons/claim_from_delivery/i18n/lo.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/lt.po b/addons/claim_from_delivery/i18n/lt.po index 2eeed8c8c9b..abbae0ebc2b 100644 --- a/addons/claim_from_delivery/i18n/lt.po +++ b/addons/claim_from_delivery/i18n/lt.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/mk.po b/addons/claim_from_delivery/i18n/mk.po index bae6f478060..58fa1e2b12e 100644 --- a/addons/claim_from_delivery/i18n/mk.po +++ b/addons/claim_from_delivery/i18n/mk.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/mn.po b/addons/claim_from_delivery/i18n/mn.po index beec8605e73..4fe13ee7566 100644 --- a/addons/claim_from_delivery/i18n/mn.po +++ b/addons/claim_from_delivery/i18n/mn.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/nb.po b/addons/claim_from_delivery/i18n/nb.po index 1c84b4e1773..c22d3bc44e1 100644 --- a/addons/claim_from_delivery/i18n/nb.po +++ b/addons/claim_from_delivery/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/nl.po b/addons/claim_from_delivery/i18n/nl.po index 3e13fa8604d..519c732e073 100644 --- a/addons/claim_from_delivery/i18n/nl.po +++ b/addons/claim_from_delivery/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/nl_BE.po b/addons/claim_from_delivery/i18n/nl_BE.po index b919e93eb2c..a8793109b5f 100644 --- a/addons/claim_from_delivery/i18n/nl_BE.po +++ b/addons/claim_from_delivery/i18n/nl_BE.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/oc.po b/addons/claim_from_delivery/i18n/oc.po index 3141a72f565..2b2b298ca7d 100644 --- a/addons/claim_from_delivery/i18n/oc.po +++ b/addons/claim_from_delivery/i18n/oc.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/pl.po b/addons/claim_from_delivery/i18n/pl.po index c52a6472fbc..67d206b20b8 100644 --- a/addons/claim_from_delivery/i18n/pl.po +++ b/addons/claim_from_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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/pt.po b/addons/claim_from_delivery/i18n/pt.po index 5a34fca0744..e849647cdf1 100644 --- a/addons/claim_from_delivery/i18n/pt.po +++ b/addons/claim_from_delivery/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/pt_BR.po b/addons/claim_from_delivery/i18n/pt_BR.po index c7b02795e0c..94dc19361fc 100644 --- a/addons/claim_from_delivery/i18n/pt_BR.po +++ b/addons/claim_from_delivery/i18n/pt_BR.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/ro.po b/addons/claim_from_delivery/i18n/ro.po index bf27539f6cd..802328df80a 100644 --- a/addons/claim_from_delivery/i18n/ro.po +++ b/addons/claim_from_delivery/i18n/ro.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/ru.po b/addons/claim_from_delivery/i18n/ru.po index a4be03e55b3..253e824d1e2 100644 --- a/addons/claim_from_delivery/i18n/ru.po +++ b/addons/claim_from_delivery/i18n/ru.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/sl.po b/addons/claim_from_delivery/i18n/sl.po index 916d1ab0d50..7ade7b5f053 100644 --- a/addons/claim_from_delivery/i18n/sl.po +++ b/addons/claim_from_delivery/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/sq.po b/addons/claim_from_delivery/i18n/sq.po index 3209542868f..005b2addfcb 100644 --- a/addons/claim_from_delivery/i18n/sq.po +++ b/addons/claim_from_delivery/i18n/sq.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/sr.po b/addons/claim_from_delivery/i18n/sr.po index d6cff23d786..7485c1e0a29 100644 --- a/addons/claim_from_delivery/i18n/sr.po +++ b/addons/claim_from_delivery/i18n/sr.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/sr@latin.po b/addons/claim_from_delivery/i18n/sr@latin.po index b77bdbd526f..98af8333864 100644 --- a/addons/claim_from_delivery/i18n/sr@latin.po +++ b/addons/claim_from_delivery/i18n/sr@latin.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/sv.po b/addons/claim_from_delivery/i18n/sv.po index db2fbd6a938..3a0a5b9d456 100644 --- a/addons/claim_from_delivery/i18n/sv.po +++ b/addons/claim_from_delivery/i18n/sv.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/ta.po b/addons/claim_from_delivery/i18n/ta.po index 576844a26af..4cd7d5d2b6b 100644 --- a/addons/claim_from_delivery/i18n/ta.po +++ b/addons/claim_from_delivery/i18n/ta.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/tr.po b/addons/claim_from_delivery/i18n/tr.po index b518f5e798a..9e2be091410 100644 --- a/addons/claim_from_delivery/i18n/tr.po +++ b/addons/claim_from_delivery/i18n/tr.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/zh_CN.po b/addons/claim_from_delivery/i18n/zh_CN.po index 4c0aae752bc..13b40bdec2a 100644 --- a/addons/claim_from_delivery/i18n/zh_CN.po +++ b/addons/claim_from_delivery/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/zh_TW.po b/addons/claim_from_delivery/i18n/zh_TW.po index 2d462f9301e..57920900399 100644 --- a/addons/claim_from_delivery/i18n/zh_TW.po +++ b/addons/claim_from_delivery/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: claim_from_delivery diff --git a/addons/contacts/i18n/ar.po b/addons/contacts/i18n/ar.po index 3ae69406ea7..c20d97cf5ca 100644 --- a/addons/contacts/i18n/ar.po +++ b/addons/contacts/i18n/ar.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/cs.po b/addons/contacts/i18n/cs.po index b7c76627377..9c0ae4f65c2 100644 --- a/addons/contacts/i18n/cs.po +++ b/addons/contacts/i18n/cs.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/de.po b/addons/contacts/i18n/de.po index 3352701783c..119531fed68 100644 --- a/addons/contacts/i18n/de.po +++ b/addons/contacts/i18n/de.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/en_GB.po b/addons/contacts/i18n/en_GB.po index 79593ffc19b..4b40f0f8b2e 100644 --- a/addons/contacts/i18n/en_GB.po +++ b/addons/contacts/i18n/en_GB.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/es.po b/addons/contacts/i18n/es.po index 65fefc9d185..68d30fcdccf 100644 --- a/addons/contacts/i18n/es.po +++ b/addons/contacts/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/et.po b/addons/contacts/i18n/et.po index eacfc03e308..96f335c1258 100644 --- a/addons/contacts/i18n/et.po +++ b/addons/contacts/i18n/et.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/fr.po b/addons/contacts/i18n/fr.po index 82f369748d2..d28426ab8ad 100644 --- a/addons/contacts/i18n/fr.po +++ b/addons/contacts/i18n/fr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/hr.po b/addons/contacts/i18n/hr.po index c9810dbe071..81c113445c7 100644 --- a/addons/contacts/i18n/hr.po +++ b/addons/contacts/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/hu.po b/addons/contacts/i18n/hu.po index 9f8a96e4e66..7f547c811f9 100644 --- a/addons/contacts/i18n/hu.po +++ b/addons/contacts/i18n/hu.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/it.po b/addons/contacts/i18n/it.po index 3aa43068e19..01a7463a74a 100644 --- a/addons/contacts/i18n/it.po +++ b/addons/contacts/i18n/it.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/mk.po b/addons/contacts/i18n/mk.po index ac30fc7d45b..634d6ea50e4 100644 --- a/addons/contacts/i18n/mk.po +++ b/addons/contacts/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/mn.po b/addons/contacts/i18n/mn.po index a948bdb6112..b92780bb922 100644 --- a/addons/contacts/i18n/mn.po +++ b/addons/contacts/i18n/mn.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/nl.po b/addons/contacts/i18n/nl.po index 2f2e8b93450..5d612da1cf8 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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/pl.po b/addons/contacts/i18n/pl.po index 0b577cda5be..8d14a9a23a4 100644 --- a/addons/contacts/i18n/pl.po +++ b/addons/contacts/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/pt.po b/addons/contacts/i18n/pt.po index 4a6ac577ccc..3d65499f9d7 100644 --- a/addons/contacts/i18n/pt.po +++ b/addons/contacts/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/pt_BR.po b/addons/contacts/i18n/pt_BR.po index 20cdee406c9..961c7ec3393 100644 --- a/addons/contacts/i18n/pt_BR.po +++ b/addons/contacts/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/ro.po b/addons/contacts/i18n/ro.po index 5c4ea32d72d..4ceeb98c909 100644 --- a/addons/contacts/i18n/ro.po +++ b/addons/contacts/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/ru.po b/addons/contacts/i18n/ru.po index 51e989f0c2a..4748d2ad350 100644 --- a/addons/contacts/i18n/ru.po +++ b/addons/contacts/i18n/ru.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/sl.po b/addons/contacts/i18n/sl.po index cbaa9a7755a..37920c49d8b 100644 --- a/addons/contacts/i18n/sl.po +++ b/addons/contacts/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/sv.po b/addons/contacts/i18n/sv.po index 691050021c7..7311bfce7c6 100644 --- a/addons/contacts/i18n/sv.po +++ b/addons/contacts/i18n/sv.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/tr.po b/addons/contacts/i18n/tr.po index 7e90b4fed01..7edf58f02e4 100644 --- a/addons/contacts/i18n/tr.po +++ b/addons/contacts/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/zh_CN.po b/addons/contacts/i18n/zh_CN.po index 26f297d5ef6..b6b90099f0b 100644 --- a/addons/contacts/i18n/zh_CN.po +++ b/addons/contacts/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/contacts/i18n/zh_TW.po b/addons/contacts/i18n/zh_TW.po index 221deb80c09..ca7c08f10ef 100644 --- a/addons/contacts/i18n/zh_TW.po +++ b/addons/contacts/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: contacts diff --git a/addons/crm/i18n/ar.po b/addons/crm/i18n/ar.po index e03c5f5b690..e93ee4c36b8 100644 --- a/addons/crm/i18n/ar.po +++ b/addons/crm/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/bg.po b/addons/crm/i18n/bg.po index bf6f6ba2d00..c8291ec1ddf 100644 --- a/addons/crm/i18n/bg.po +++ b/addons/crm/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/bs.po b/addons/crm/i18n/bs.po index d052e7a42a1..4d355fb9d95 100644 --- a/addons/crm/i18n/bs.po +++ b/addons/crm/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/ca.po b/addons/crm/i18n/ca.po index f663066283e..31d50c265c5 100644 --- a/addons/crm/i18n/ca.po +++ b/addons/crm/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/cs.po b/addons/crm/i18n/cs.po index f01e5693f96..ff3641cfb78 100644 --- a/addons/crm/i18n/cs.po +++ b/addons/crm/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/crm/i18n/da.po b/addons/crm/i18n/da.po index 7b2640b8d67..6254aa87352 100644 --- a/addons/crm/i18n/da.po +++ b/addons/crm/i18n/da.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-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/de.po b/addons/crm/i18n/de.po index 77da31cfe85..fa763d31a70 100644 --- a/addons/crm/i18n/de.po +++ b/addons/crm/i18n/de.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-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/el.po b/addons/crm/i18n/el.po index f360cef4d9d..337355d3cef 100644 --- a/addons/crm/i18n/el.po +++ b/addons/crm/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/crm/i18n/es.po b/addons/crm/i18n/es.po index 8466b17386f..5d70624f8ea 100644 --- a/addons/crm/i18n/es.po +++ b/addons/crm/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/es_AR.po b/addons/crm/i18n/es_AR.po index a1bcf8b982d..7b09f194742 100644 --- a/addons/crm/i18n/es_AR.po +++ b/addons/crm/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/es_CR.po b/addons/crm/i18n/es_CR.po index a6c52c8be4a..bd1189e1097 100644 --- a/addons/crm/i18n/es_CR.po +++ b/addons/crm/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/crm/i18n/es_EC.po b/addons/crm/i18n/es_EC.po index 2bf3455ee6a..dc158fc6ab7 100644 --- a/addons/crm/i18n/es_EC.po +++ b/addons/crm/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/es_PY.po b/addons/crm/i18n/es_PY.po index 16af7472b56..582c2079332 100644 --- a/addons/crm/i18n/es_PY.po +++ b/addons/crm/i18n/es_PY.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/et.po b/addons/crm/i18n/et.po index d12db9d5011..359ca3e93de 100644 --- a/addons/crm/i18n/et.po +++ b/addons/crm/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/fi.po b/addons/crm/i18n/fi.po index 805d3a2e5d1..9c6448fba4f 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-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/fr.po b/addons/crm/i18n/fr.po index fb042eb0bb5..b9fc1dcbf30 100644 --- a/addons/crm/i18n/fr.po +++ b/addons/crm/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/gl.po b/addons/crm/i18n/gl.po index f576fe66ce6..76d4834d1ac 100644 --- a/addons/crm/i18n/gl.po +++ b/addons/crm/i18n/gl.po @@ -15,7 +15,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-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/gu.po b/addons/crm/i18n/gu.po index b71b4823304..05aeeb46847 100644 --- a/addons/crm/i18n/gu.po +++ b/addons/crm/i18n/gu.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-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/hr.po b/addons/crm/i18n/hr.po index b9f76c7a183..626d9bd8ff6 100644 --- a/addons/crm/i18n/hr.po +++ b/addons/crm/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/crm/i18n/hu.po b/addons/crm/i18n/hu.po index f42535152e6..6a5b8424cdd 100644 --- a/addons/crm/i18n/hu.po +++ b/addons/crm/i18n/hu.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2011-02-02 18:48+0000\n" -"Last-Translator: Krisztian Eyssen \n" +"PO-Revision-Date: 2013-03-17 23:22+0000\n" +"Last-Translator: krnkris \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-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-18 04:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm @@ -274,7 +274,7 @@ msgstr "Érdeklődők elemzése" #: code:addons/crm/crm_lead.py:1010 #, python-format msgid "%s a call for the %s." -msgstr "" +msgstr "%s egy hívás erre a %s." #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_resource_type_act @@ -494,6 +494,8 @@ msgstr "" #: view:crm.lead:0 msgid "Leads that are assigned to one of the sale teams I manage, or to me" msgstr "" +"Érdeklődések, melyek az én irányításom alatt lévő csoportnak, vagy nekem " +"lettek iktatva" #. module: crm #: field:crm.lead,partner_address_email:0 @@ -626,7 +628,7 @@ msgstr "Egyesít" #. module: crm #: model:email.template,subject:crm.email_template_opportunity_mail msgid "Opportunity ${object.name | h})" -msgstr "" +msgstr "Lehetőség ${object.name | h})" #. module: crm #: view:crm.case.categ:0 @@ -990,6 +992,8 @@ msgid "" "Opportunities that are assigned to either me or one of the sale teams I " "manage" msgstr "" +"Lejhetőségek, melyek vagy részemre vagy az egyik általam vezetett csoporthoz " +"lett iktatva" #. module: crm #: help:crm.case.section,resource_calendar_id:0 @@ -1042,7 +1046,7 @@ msgstr "Tárgy" #. module: crm #: view:crm.lead:0 msgid "New Leads" -msgstr "" +msgstr "Új érdeklődések" #. module: crm #: view:crm.lead:0 @@ -1408,7 +1412,7 @@ msgstr "Kiosztás leírása" #. module: crm #: view:crm.lead:0 msgid "Lead Description" -msgstr "" +msgstr "Érdeklődés leírása" #. module: crm #: code:addons/crm/crm_lead.py:565 @@ -1464,7 +1468,7 @@ msgstr "Mégse" #. module: crm #: view:crm.lead:0 msgid "Opportunities Assigned to Me or My Team(s)" -msgstr "" +msgstr "Lehetőség, mely nekem vagy a csoportomnak lett iktatva" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor4 @@ -1528,7 +1532,7 @@ msgstr "Nyitott állapotú Érdeklődések/Lehetőségek" #. module: crm #: model:ir.model,name:crm.model_res_users msgid "Users" -msgstr "" +msgstr "Felhasználók" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_stage @@ -1777,7 +1781,7 @@ msgstr "Lehetőségek szakaszok szerint" #. module: crm #: model:process.transition,note:crm.process_transition_leadpartner0 msgid "Prospect is converting to business partner" -msgstr "A leendő partner átalakítá alatt üzleti partnerré" +msgstr "A leendő partner átalakítása üzleti partnerré" #. module: crm #: view:crm.case.channel:0 @@ -1885,7 +1889,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Leads Assigned to Me or My Team(s)" -msgstr "" +msgstr "Érdeklődés, mely részemre vagy a csoportomnak lett iktatva" #. module: crm #: model:ir.model,name:crm.model_crm_segmentation_line @@ -2236,7 +2240,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Unassigned Opportunities" -msgstr "" +msgstr "Nem iktatott lehetőségek" #. module: crm #: view:crm.lead:0 @@ -2395,7 +2399,7 @@ msgstr "Érdeklődés átalakítva egy lehetőséggé" #. module: crm #: view:crm.lead:0 msgid "Unassigned Leads" -msgstr "" +msgstr "Nem iktatott rdeklődések" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_won @@ -2926,7 +2930,7 @@ msgstr "Tervezett bevételek" #. module: crm #: view:crm.lead:0 msgid "Exp.Closing" -msgstr "" +msgstr "Elv. határidő" #. module: crm #: help:crm.lead.report,deadline_year:0 @@ -2975,7 +2979,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Create date" -msgstr "" +msgstr "Dátumot létrehoz" #. module: crm #: view:crm.lead:0 @@ -3166,7 +3170,7 @@ msgstr "Kampány neve" #. module: crm #: view:crm.segmentation:0 msgid "Profiling" -msgstr "" +msgstr "Profilozás" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall_report @@ -3921,9 +3925,6 @@ msgstr "" #~ msgid "Potential Reseller" #~ msgstr "Lehetséges viszonteladó" -#~ msgid "Recurrency Option" -#~ msgstr "Ismétlődő opció" - #~ msgid "Plug-In" #~ msgstr "Plug-In" @@ -3983,3 +3984,9 @@ msgstr "" #~ msgid "State of Mind" #~ msgstr "Hozzáállás" + +#~ msgid "Recurrency Option" +#~ msgstr "Ismétlődés lehetőségei" + +#~ msgid "Convert To Opportunity" +#~ msgstr "Átalakítás lehetőséggé" diff --git a/addons/crm/i18n/id.po b/addons/crm/i18n/id.po index b4427a9ec89..703fcb20375 100644 --- a/addons/crm/i18n/id.po +++ b/addons/crm/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/it.po b/addons/crm/i18n/it.po index 02f89252221..8157b76552b 100644 --- a/addons/crm/i18n/it.po +++ b/addons/crm/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/ja.po b/addons/crm/i18n/ja.po index 50ffbcaa496..07fcd07cdb4 100644 --- a/addons/crm/i18n/ja.po +++ b/addons/crm/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-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/ko.po b/addons/crm/i18n/ko.po index a8407072372..4fdc9f39220 100644 --- a/addons/crm/i18n/ko.po +++ b/addons/crm/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/lo.po b/addons/crm/i18n/lo.po index 0fc2790c2ff..b33c5cabcce 100644 --- a/addons/crm/i18n/lo.po +++ b/addons/crm/i18n/lo.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-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/lt.po b/addons/crm/i18n/lt.po index bce96860a2f..594a7b564b8 100644 --- a/addons/crm/i18n/lt.po +++ b/addons/crm/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: lt\n" diff --git a/addons/crm/i18n/lv.po b/addons/crm/i18n/lv.po index d788140327a..47f1718fdbc 100644 --- a/addons/crm/i18n/lv.po +++ b/addons/crm/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/mk.po b/addons/crm/i18n/mk.po index d03a3503419..dce44986306 100644 --- a/addons/crm/i18n/mk.po +++ b/addons/crm/i18n/mk.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-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/mn.po b/addons/crm/i18n/mn.po index f06fa37625c..483aaa7a562 100644 --- a/addons/crm/i18n/mn.po +++ b/addons/crm/i18n/mn.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-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/nb.po b/addons/crm/i18n/nb.po index 3a9872b9196..1914f154f37 100644 --- a/addons/crm/i18n/nb.po +++ b/addons/crm/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/nl.po b/addons/crm/i18n/nl.po index bbc93b2639f..7a526175e90 100644 --- a/addons/crm/i18n/nl.po +++ b/addons/crm/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/nl_BE.po b/addons/crm/i18n/nl_BE.po index e1ef53c0899..697c7c4f083 100644 --- a/addons/crm/i18n/nl_BE.po +++ b/addons/crm/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: nl\n" diff --git a/addons/crm/i18n/pl.po b/addons/crm/i18n/pl.po index c5d80b702f8..8f0143bd28c 100644 --- a/addons/crm/i18n/pl.po +++ b/addons/crm/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:08+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/pt.po b/addons/crm/i18n/pt.po index 11a33611ea7..fe95126e2e0 100644 --- a/addons/crm/i18n/pt.po +++ b/addons/crm/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/pt_BR.po b/addons/crm/i18n/pt_BR.po index 65a993a497b..62e1e27bef2 100644 --- a/addons/crm/i18n/pt_BR.po +++ b/addons/crm/i18n/pt_BR.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-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/ro.po b/addons/crm/i18n/ro.po index 9cb57527e77..ebbf4808e5c 100644 --- a/addons/crm/i18n/ro.po +++ b/addons/crm/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/ru.po b/addons/crm/i18n/ru.po index 5030296a7ce..19ae76e9f46 100644 --- a/addons/crm/i18n/ru.po +++ b/addons/crm/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/sk.po b/addons/crm/i18n/sk.po index 9630da9dc91..56c5ef3aae0 100644 --- a/addons/crm/i18n/sk.po +++ b/addons/crm/i18n/sk.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-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/sl.po b/addons/crm/i18n/sl.po index 0adad129396..2b4814d72c8 100644 --- a/addons/crm/i18n/sl.po +++ b/addons/crm/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/sq.po b/addons/crm/i18n/sq.po index 4e38cc03d6f..25e03d0f2a7 100644 --- a/addons/crm/i18n/sq.po +++ b/addons/crm/i18n/sq.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-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/sr.po b/addons/crm/i18n/sr.po index 4a7a19d9e0a..4412e9f36a2 100644 --- a/addons/crm/i18n/sr.po +++ b/addons/crm/i18n/sr.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-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/sr@latin.po b/addons/crm/i18n/sr@latin.po index dc54b35a5de..fbddb874303 100644 --- a/addons/crm/i18n/sr@latin.po +++ b/addons/crm/i18n/sr@latin.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/sv.po b/addons/crm/i18n/sv.po index 0930b60daaf..feb4fe694df 100644 --- a/addons/crm/i18n/sv.po +++ b/addons/crm/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/th.po b/addons/crm/i18n/th.po index f493f6a763b..082ed1efa6d 100644 --- a/addons/crm/i18n/th.po +++ b/addons/crm/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-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/tlh.po b/addons/crm/i18n/tlh.po index af6f2667d31..b1484ff472a 100644 --- a/addons/crm/i18n/tlh.po +++ b/addons/crm/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/tr.po b/addons/crm/i18n/tr.po index 74212725b58..5b103c087d9 100644 --- a/addons/crm/i18n/tr.po +++ b/addons/crm/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/uk.po b/addons/crm/i18n/uk.po index 49f003133a7..1aab70d95f3 100644 --- a/addons/crm/i18n/uk.po +++ b/addons/crm/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/vi.po b/addons/crm/i18n/vi.po index fce63e5eed3..ae401925a9f 100644 --- a/addons/crm/i18n/vi.po +++ b/addons/crm/i18n/vi.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-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/zh_CN.po b/addons/crm/i18n/zh_CN.po index 3ebc954f617..d7182841d8b 100644 --- a/addons/crm/i18n/zh_CN.po +++ b/addons/crm/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm/i18n/zh_TW.po b/addons/crm/i18n/zh_TW.po index 0ca1441e472..bcbc2a7b2a2 100644 --- a/addons/crm/i18n/zh_TW.po +++ b/addons/crm/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:10+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:09+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm diff --git a/addons/crm_claim/i18n/ar.po b/addons/crm_claim/i18n/ar.po index bbc370d31f5..a986bb244dc 100644 --- a/addons/crm_claim/i18n/ar.po +++ b/addons/crm_claim/i18n/ar.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/bg.po b/addons/crm_claim/i18n/bg.po index 6c1730939e2..8a5cb4723d9 100644 --- a/addons/crm_claim/i18n/bg.po +++ b/addons/crm_claim/i18n/bg.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/ca.po b/addons/crm_claim/i18n/ca.po index 82f4247f1a6..914d8fcabf4 100644 --- a/addons/crm_claim/i18n/ca.po +++ b/addons/crm_claim/i18n/ca.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/da.po b/addons/crm_claim/i18n/da.po index e6cc1c3c30e..3191b053667 100644 --- a/addons/crm_claim/i18n/da.po +++ b/addons/crm_claim/i18n/da.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/de.po b/addons/crm_claim/i18n/de.po index 86ab549b4e2..b3139f25ec9 100644 --- a/addons/crm_claim/i18n/de.po +++ b/addons/crm_claim/i18n/de.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/el.po b/addons/crm_claim/i18n/el.po index 6456db03f48..269dc6f55ce 100644 --- a/addons/crm_claim/i18n/el.po +++ b/addons/crm_claim/i18n/el.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/es.po b/addons/crm_claim/i18n/es.po index a0c00103871..52de57feb5c 100644 --- a/addons/crm_claim/i18n/es.po +++ b/addons/crm_claim/i18n/es.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/es_CR.po b/addons/crm_claim/i18n/es_CR.po index b55731df089..b42536f8e8e 100644 --- a/addons/crm_claim/i18n/es_CR.po +++ b/addons/crm_claim/i18n/es_CR.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/crm_claim/i18n/es_EC.po b/addons/crm_claim/i18n/es_EC.po index 27dbc09f86d..fa4a7251af5 100644 --- a/addons/crm_claim/i18n/es_EC.po +++ b/addons/crm_claim/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/es_PY.po b/addons/crm_claim/i18n/es_PY.po index 3fd2b596d11..3e321a8e7db 100644 --- a/addons/crm_claim/i18n/es_PY.po +++ b/addons/crm_claim/i18n/es_PY.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/fi.po b/addons/crm_claim/i18n/fi.po index 2b7244a84ab..b61a424b922 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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/fr.po b/addons/crm_claim/i18n/fr.po index c72a4275698..03cd18e98c8 100644 --- a/addons/crm_claim/i18n/fr.po +++ b/addons/crm_claim/i18n/fr.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/gl.po b/addons/crm_claim/i18n/gl.po index fd8a5c017b1..841afc211fc 100644 --- a/addons/crm_claim/i18n/gl.po +++ b/addons/crm_claim/i18n/gl.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/gu.po b/addons/crm_claim/i18n/gu.po index 851779befc3..de7dcf0109f 100644 --- a/addons/crm_claim/i18n/gu.po +++ b/addons/crm_claim/i18n/gu.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/hr.po b/addons/crm_claim/i18n/hr.po index 757c383f08d..a478ae52974 100644 --- a/addons/crm_claim/i18n/hr.po +++ b/addons/crm_claim/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/hu.po b/addons/crm_claim/i18n/hu.po index 28e7da57036..d7087a7c864 100644 --- a/addons/crm_claim/i18n/hu.po +++ b/addons/crm_claim/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/it.po b/addons/crm_claim/i18n/it.po index ae44cdfcfc5..845e903362b 100644 --- a/addons/crm_claim/i18n/it.po +++ b/addons/crm_claim/i18n/it.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/ja.po b/addons/crm_claim/i18n/ja.po index ad70ca04a9e..61456a453f7 100644 --- a/addons/crm_claim/i18n/ja.po +++ b/addons/crm_claim/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/lt.po b/addons/crm_claim/i18n/lt.po index b3ebde3a22a..92f053116f9 100644 --- a/addons/crm_claim/i18n/lt.po +++ b/addons/crm_claim/i18n/lt.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/mk.po b/addons/crm_claim/i18n/mk.po index 2374857fc82..a92087cf524 100644 --- a/addons/crm_claim/i18n/mk.po +++ b/addons/crm_claim/i18n/mk.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/mn.po b/addons/crm_claim/i18n/mn.po index 7476b56e9a2..cb02be7c874 100644 --- a/addons/crm_claim/i18n/mn.po +++ b/addons/crm_claim/i18n/mn.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/nb.po b/addons/crm_claim/i18n/nb.po index e93b457d19c..f553623fa1a 100644 --- a/addons/crm_claim/i18n/nb.po +++ b/addons/crm_claim/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/nl.po b/addons/crm_claim/i18n/nl.po index 8a1e495a78b..98f6b575ba9 100644 --- a/addons/crm_claim/i18n/nl.po +++ b/addons/crm_claim/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim @@ -886,7 +886,7 @@ msgstr "Berichten en communicatie historie" #. module: crm_claim #: field:sale.config.settings,fetchmail_claim:0 msgid "Create claims from incoming mails" -msgstr "Maak een klacht van een inkomende mail" +msgstr "Maak een klacht van een inkomende e-mail" #. module: crm_claim #: field:crm.claim.stage,sequence:0 diff --git a/addons/crm_claim/i18n/pl.po b/addons/crm_claim/i18n/pl.po index 59ef4f650eb..69c3f399013 100644 --- a/addons/crm_claim/i18n/pl.po +++ b/addons/crm_claim/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/pt.po b/addons/crm_claim/i18n/pt.po index 3c275b00a39..0857f1fbd20 100644 --- a/addons/crm_claim/i18n/pt.po +++ b/addons/crm_claim/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/pt_BR.po b/addons/crm_claim/i18n/pt_BR.po index f4f0903620b..3a5166a4b2f 100644 --- a/addons/crm_claim/i18n/pt_BR.po +++ b/addons/crm_claim/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/ro.po b/addons/crm_claim/i18n/ro.po index ff9e09cf13e..9586edfd28d 100644 --- a/addons/crm_claim/i18n/ro.po +++ b/addons/crm_claim/i18n/ro.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/ru.po b/addons/crm_claim/i18n/ru.po index 6c7c3942554..afcf4702a67 100644 --- a/addons/crm_claim/i18n/ru.po +++ b/addons/crm_claim/i18n/ru.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/sl.po b/addons/crm_claim/i18n/sl.po index db1620790d8..bd5076ddeea 100644 --- a/addons/crm_claim/i18n/sl.po +++ b/addons/crm_claim/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/sq.po b/addons/crm_claim/i18n/sq.po index 541f8327ec8..f12c6e204a7 100644 --- a/addons/crm_claim/i18n/sq.po +++ b/addons/crm_claim/i18n/sq.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/sr.po b/addons/crm_claim/i18n/sr.po index fa99e1448be..98b3a29531b 100644 --- a/addons/crm_claim/i18n/sr.po +++ b/addons/crm_claim/i18n/sr.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/sr@latin.po b/addons/crm_claim/i18n/sr@latin.po index 5b56a91fccc..59df8b9f534 100644 --- a/addons/crm_claim/i18n/sr@latin.po +++ b/addons/crm_claim/i18n/sr@latin.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/sv.po b/addons/crm_claim/i18n/sv.po index 5f4eb15c35b..f53f174b264 100644 --- a/addons/crm_claim/i18n/sv.po +++ b/addons/crm_claim/i18n/sv.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/tr.po b/addons/crm_claim/i18n/tr.po index 1eedbfc0cc6..7c436804d6c 100644 --- a/addons/crm_claim/i18n/tr.po +++ b/addons/crm_claim/i18n/tr.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/zh_CN.po b/addons/crm_claim/i18n/zh_CN.po index bc0c01977cc..ef03a53c34b 100644 --- a/addons/crm_claim/i18n/zh_CN.po +++ b/addons/crm_claim/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/zh_TW.po b/addons/crm_claim/i18n/zh_TW.po index 9f3b575e624..b9c7ca01577 100644 --- a/addons/crm_claim/i18n/zh_TW.po +++ b/addons/crm_claim/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_claim diff --git a/addons/crm_helpdesk/i18n/ar.po b/addons/crm_helpdesk/i18n/ar.po index d05e3dc60b6..2caa9483b7a 100644 --- a/addons/crm_helpdesk/i18n/ar.po +++ b/addons/crm_helpdesk/i18n/ar.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/bg.po b/addons/crm_helpdesk/i18n/bg.po index 3b3d2e4448a..3ce40596658 100644 --- a/addons/crm_helpdesk/i18n/bg.po +++ b/addons/crm_helpdesk/i18n/bg.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/ca.po b/addons/crm_helpdesk/i18n/ca.po index c15dc8bb1e5..93ad7585484 100644 --- a/addons/crm_helpdesk/i18n/ca.po +++ b/addons/crm_helpdesk/i18n/ca.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/da.po b/addons/crm_helpdesk/i18n/da.po index 1447c5ef250..a7a6bdf69b8 100644 --- a/addons/crm_helpdesk/i18n/da.po +++ b/addons/crm_helpdesk/i18n/da.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/de.po b/addons/crm_helpdesk/i18n/de.po index e0858792c03..28e78af66cd 100644 --- a/addons/crm_helpdesk/i18n/de.po +++ b/addons/crm_helpdesk/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/el.po b/addons/crm_helpdesk/i18n/el.po index 01d95ca402e..44e1adfe27d 100644 --- a/addons/crm_helpdesk/i18n/el.po +++ b/addons/crm_helpdesk/i18n/el.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/es.po b/addons/crm_helpdesk/i18n/es.po index 47f548b9322..15aa60ebd46 100644 --- a/addons/crm_helpdesk/i18n/es.po +++ b/addons/crm_helpdesk/i18n/es.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/es_CR.po b/addons/crm_helpdesk/i18n/es_CR.po index 9bf3454e758..56c0dea9a05 100644 --- a/addons/crm_helpdesk/i18n/es_CR.po +++ b/addons/crm_helpdesk/i18n/es_CR.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/crm_helpdesk/i18n/es_PY.po b/addons/crm_helpdesk/i18n/es_PY.po index 7fbe982f205..f667b53568b 100644 --- a/addons/crm_helpdesk/i18n/es_PY.po +++ b/addons/crm_helpdesk/i18n/es_PY.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/fi.po b/addons/crm_helpdesk/i18n/fi.po index 0aa7f4715df..056b391d831 100644 --- a/addons/crm_helpdesk/i18n/fi.po +++ b/addons/crm_helpdesk/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/fr.po b/addons/crm_helpdesk/i18n/fr.po index 7a50c69c742..40075f5055c 100644 --- a/addons/crm_helpdesk/i18n/fr.po +++ b/addons/crm_helpdesk/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/gl.po b/addons/crm_helpdesk/i18n/gl.po index 4d410d8bece..0526613b4ea 100644 --- a/addons/crm_helpdesk/i18n/gl.po +++ b/addons/crm_helpdesk/i18n/gl.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/gu.po b/addons/crm_helpdesk/i18n/gu.po index 2c5e9ae434b..d68aae7c7a3 100644 --- a/addons/crm_helpdesk/i18n/gu.po +++ b/addons/crm_helpdesk/i18n/gu.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/hr.po b/addons/crm_helpdesk/i18n/hr.po index 4421c29cfe0..25b620bc6ea 100644 --- a/addons/crm_helpdesk/i18n/hr.po +++ b/addons/crm_helpdesk/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/hu.po b/addons/crm_helpdesk/i18n/hu.po index d7749677ca2..2b35100a47a 100644 --- a/addons/crm_helpdesk/i18n/hu.po +++ b/addons/crm_helpdesk/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/it.po b/addons/crm_helpdesk/i18n/it.po index 6bec3ebad3a..b43fc48fc69 100644 --- a/addons/crm_helpdesk/i18n/it.po +++ b/addons/crm_helpdesk/i18n/it.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/ja.po b/addons/crm_helpdesk/i18n/ja.po index 80cd08f1f12..98bd0dede89 100644 --- a/addons/crm_helpdesk/i18n/ja.po +++ b/addons/crm_helpdesk/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/lt.po b/addons/crm_helpdesk/i18n/lt.po index 966868a4783..e42fef27002 100644 --- a/addons/crm_helpdesk/i18n/lt.po +++ b/addons/crm_helpdesk/i18n/lt.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/lv.po b/addons/crm_helpdesk/i18n/lv.po index 917ddb4181e..beb40de54a1 100644 --- a/addons/crm_helpdesk/i18n/lv.po +++ b/addons/crm_helpdesk/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/mk.po b/addons/crm_helpdesk/i18n/mk.po index 64616c1e051..7b0c444f003 100644 --- a/addons/crm_helpdesk/i18n/mk.po +++ b/addons/crm_helpdesk/i18n/mk.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/mn.po b/addons/crm_helpdesk/i18n/mn.po index 516a0536779..938b5c40884 100644 --- a/addons/crm_helpdesk/i18n/mn.po +++ b/addons/crm_helpdesk/i18n/mn.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/nb.po b/addons/crm_helpdesk/i18n/nb.po index 92aa031dad0..a8f31b6a031 100644 --- a/addons/crm_helpdesk/i18n/nb.po +++ b/addons/crm_helpdesk/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/nl.po b/addons/crm_helpdesk/i18n/nl.po index a5103aa05f3..0235eeae99a 100644 --- a/addons/crm_helpdesk/i18n/nl.po +++ b/addons/crm_helpdesk/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/pl.po b/addons/crm_helpdesk/i18n/pl.po index fe9e7fdac11..01079c99103 100644 --- a/addons/crm_helpdesk/i18n/pl.po +++ b/addons/crm_helpdesk/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/pt.po b/addons/crm_helpdesk/i18n/pt.po index eee625b4056..d2263dd1b89 100644 --- a/addons/crm_helpdesk/i18n/pt.po +++ b/addons/crm_helpdesk/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/pt_BR.po b/addons/crm_helpdesk/i18n/pt_BR.po index c2b16942eaf..d3f5c7ba813 100644 --- a/addons/crm_helpdesk/i18n/pt_BR.po +++ b/addons/crm_helpdesk/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/ro.po b/addons/crm_helpdesk/i18n/ro.po index c8453433fe3..49bdb6233e0 100644 --- a/addons/crm_helpdesk/i18n/ro.po +++ b/addons/crm_helpdesk/i18n/ro.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/ru.po b/addons/crm_helpdesk/i18n/ru.po index 54950e573eb..e8eb90af9d7 100644 --- a/addons/crm_helpdesk/i18n/ru.po +++ b/addons/crm_helpdesk/i18n/ru.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/sl.po b/addons/crm_helpdesk/i18n/sl.po index b2998fef8e0..7e5dc180800 100644 --- a/addons/crm_helpdesk/i18n/sl.po +++ b/addons/crm_helpdesk/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/sq.po b/addons/crm_helpdesk/i18n/sq.po index f51764d5765..abc47429e25 100644 --- a/addons/crm_helpdesk/i18n/sq.po +++ b/addons/crm_helpdesk/i18n/sq.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/sr.po b/addons/crm_helpdesk/i18n/sr.po index f2cec66de1d..3d07962991a 100644 --- a/addons/crm_helpdesk/i18n/sr.po +++ b/addons/crm_helpdesk/i18n/sr.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/sr@latin.po b/addons/crm_helpdesk/i18n/sr@latin.po index c2c90f4e13a..32f7568e01e 100644 --- a/addons/crm_helpdesk/i18n/sr@latin.po +++ b/addons/crm_helpdesk/i18n/sr@latin.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/sv.po b/addons/crm_helpdesk/i18n/sv.po index 71054b57ff3..9e0376dea03 100644 --- a/addons/crm_helpdesk/i18n/sv.po +++ b/addons/crm_helpdesk/i18n/sv.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/tr.po b/addons/crm_helpdesk/i18n/tr.po index 5a388a0e5b7..3a23263a13d 100644 --- a/addons/crm_helpdesk/i18n/tr.po +++ b/addons/crm_helpdesk/i18n/tr.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/zh_CN.po b/addons/crm_helpdesk/i18n/zh_CN.po index 0e5cb9368fd..4a80e7f9385 100644 --- a/addons/crm_helpdesk/i18n/zh_CN.po +++ b/addons/crm_helpdesk/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/zh_TW.po b/addons/crm_helpdesk/i18n/zh_TW.po index 522089c1252..1ba2d6fb8c9 100644 --- a/addons/crm_helpdesk/i18n/zh_TW.po +++ b/addons/crm_helpdesk/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_helpdesk diff --git a/addons/crm_partner_assign/i18n/ar.po b/addons/crm_partner_assign/i18n/ar.po index 408399761eb..c038a2b0fac 100644 --- a/addons/crm_partner_assign/i18n/ar.po +++ b/addons/crm_partner_assign/i18n/ar.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/bg.po b/addons/crm_partner_assign/i18n/bg.po index cfbb547d4b4..46a537a7563 100644 --- a/addons/crm_partner_assign/i18n/bg.po +++ b/addons/crm_partner_assign/i18n/bg.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/ca.po b/addons/crm_partner_assign/i18n/ca.po index 2c000f29abe..f63bc426e25 100644 --- a/addons/crm_partner_assign/i18n/ca.po +++ b/addons/crm_partner_assign/i18n/ca.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/da.po b/addons/crm_partner_assign/i18n/da.po index 8e1f8dd5b10..93aa75ba0cb 100644 --- a/addons/crm_partner_assign/i18n/da.po +++ b/addons/crm_partner_assign/i18n/da.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/de.po b/addons/crm_partner_assign/i18n/de.po index 2e3d09a5e05..98625562638 100644 --- a/addons/crm_partner_assign/i18n/de.po +++ b/addons/crm_partner_assign/i18n/de.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/el.po b/addons/crm_partner_assign/i18n/el.po index 8eff05c0866..9334b08f8fc 100644 --- a/addons/crm_partner_assign/i18n/el.po +++ b/addons/crm_partner_assign/i18n/el.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/es.po b/addons/crm_partner_assign/i18n/es.po index 004319f5c36..42c5924a82c 100644 --- a/addons/crm_partner_assign/i18n/es.po +++ b/addons/crm_partner_assign/i18n/es.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/es_CR.po b/addons/crm_partner_assign/i18n/es_CR.po index cd9e62f0932..19f4a7e455e 100644 --- a/addons/crm_partner_assign/i18n/es_CR.po +++ b/addons/crm_partner_assign/i18n/es_CR.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/crm_partner_assign/i18n/es_PY.po b/addons/crm_partner_assign/i18n/es_PY.po index f2cb450fbab..f930b8ed2c9 100644 --- a/addons/crm_partner_assign/i18n/es_PY.po +++ b/addons/crm_partner_assign/i18n/es_PY.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/fi.po b/addons/crm_partner_assign/i18n/fi.po index cab376bf011..9022aa67567 100644 --- a/addons/crm_partner_assign/i18n/fi.po +++ b/addons/crm_partner_assign/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/fr.po b/addons/crm_partner_assign/i18n/fr.po index 6c7cce63ace..ca2e8d0af9e 100644 --- a/addons/crm_partner_assign/i18n/fr.po +++ b/addons/crm_partner_assign/i18n/fr.po @@ -15,7 +15,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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/gl.po b/addons/crm_partner_assign/i18n/gl.po index 5f56c463568..46037a78b8b 100644 --- a/addons/crm_partner_assign/i18n/gl.po +++ b/addons/crm_partner_assign/i18n/gl.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/hr.po b/addons/crm_partner_assign/i18n/hr.po index 845616be2c0..408163d9d03 100644 --- a/addons/crm_partner_assign/i18n/hr.po +++ b/addons/crm_partner_assign/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/hu.po b/addons/crm_partner_assign/i18n/hu.po index 0a92ff8df6e..e8353308eb5 100644 --- a/addons/crm_partner_assign/i18n/hu.po +++ b/addons/crm_partner_assign/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/it.po b/addons/crm_partner_assign/i18n/it.po index 585b83fc905..1f5a95ed07f 100644 --- a/addons/crm_partner_assign/i18n/it.po +++ b/addons/crm_partner_assign/i18n/it.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/ja.po b/addons/crm_partner_assign/i18n/ja.po index 660ee544dc6..3fb3fb15764 100644 --- a/addons/crm_partner_assign/i18n/ja.po +++ b/addons/crm_partner_assign/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/lt.po b/addons/crm_partner_assign/i18n/lt.po index 81dc1194d39..ffeb7e9a9a6 100644 --- a/addons/crm_partner_assign/i18n/lt.po +++ b/addons/crm_partner_assign/i18n/lt.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/lv.po b/addons/crm_partner_assign/i18n/lv.po index 99ac6dd8a67..48f66608aa9 100644 --- a/addons/crm_partner_assign/i18n/lv.po +++ b/addons/crm_partner_assign/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/mk.po b/addons/crm_partner_assign/i18n/mk.po index f43a177824e..cb1d49c8580 100644 --- a/addons/crm_partner_assign/i18n/mk.po +++ b/addons/crm_partner_assign/i18n/mk.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/mn.po b/addons/crm_partner_assign/i18n/mn.po index bd0435f40b0..a42c612f6e1 100644 --- a/addons/crm_partner_assign/i18n/mn.po +++ b/addons/crm_partner_assign/i18n/mn.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/nb.po b/addons/crm_partner_assign/i18n/nb.po index a1787f1921b..c47ef3d732c 100644 --- a/addons/crm_partner_assign/i18n/nb.po +++ b/addons/crm_partner_assign/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/nl.po b/addons/crm_partner_assign/i18n/nl.po index c737e0123c8..d72aa0d55ab 100644 --- a/addons/crm_partner_assign/i18n/nl.po +++ b/addons/crm_partner_assign/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/pl.po b/addons/crm_partner_assign/i18n/pl.po index 9702ba72b9b..6a260ee1738 100644 --- a/addons/crm_partner_assign/i18n/pl.po +++ b/addons/crm_partner_assign/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/pt.po b/addons/crm_partner_assign/i18n/pt.po index fbfebda33e9..a319c146039 100644 --- a/addons/crm_partner_assign/i18n/pt.po +++ b/addons/crm_partner_assign/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/pt_BR.po b/addons/crm_partner_assign/i18n/pt_BR.po index 7e131534ec6..aba69c91977 100644 --- a/addons/crm_partner_assign/i18n/pt_BR.po +++ b/addons/crm_partner_assign/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/ro.po b/addons/crm_partner_assign/i18n/ro.po index b107631ebdd..d53a0e2282c 100644 --- a/addons/crm_partner_assign/i18n/ro.po +++ b/addons/crm_partner_assign/i18n/ro.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/ru.po b/addons/crm_partner_assign/i18n/ru.po index d20c4ff0acb..f0a7ff509c9 100644 --- a/addons/crm_partner_assign/i18n/ru.po +++ b/addons/crm_partner_assign/i18n/ru.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/sl.po b/addons/crm_partner_assign/i18n/sl.po index c2e22262632..e119a38ad42 100644 --- a/addons/crm_partner_assign/i18n/sl.po +++ b/addons/crm_partner_assign/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/sq.po b/addons/crm_partner_assign/i18n/sq.po index ef1326cd35f..369e306aeb2 100644 --- a/addons/crm_partner_assign/i18n/sq.po +++ b/addons/crm_partner_assign/i18n/sq.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/sr@latin.po b/addons/crm_partner_assign/i18n/sr@latin.po index b092cb2edcd..e147c04764e 100644 --- a/addons/crm_partner_assign/i18n/sr@latin.po +++ b/addons/crm_partner_assign/i18n/sr@latin.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/sv.po b/addons/crm_partner_assign/i18n/sv.po index b56515ff605..2f204719115 100644 --- a/addons/crm_partner_assign/i18n/sv.po +++ b/addons/crm_partner_assign/i18n/sv.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/tr.po b/addons/crm_partner_assign/i18n/tr.po index 96ccaa40320..a7ea1c787d1 100644 --- a/addons/crm_partner_assign/i18n/tr.po +++ b/addons/crm_partner_assign/i18n/tr.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/zh_CN.po b/addons/crm_partner_assign/i18n/zh_CN.po index 815ab5e6c70..af764d72747 100644 --- a/addons/crm_partner_assign/i18n/zh_CN.po +++ b/addons/crm_partner_assign/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/zh_TW.po b/addons/crm_partner_assign/i18n/zh_TW.po index 3586017b750..7e5b64cf468 100644 --- a/addons/crm_partner_assign/i18n/zh_TW.po +++ b/addons/crm_partner_assign/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_partner_assign diff --git a/addons/crm_profiling/i18n/ar.po b/addons/crm_profiling/i18n/ar.po index b83f44c1895..2eb8a7b2a95 100644 --- a/addons/crm_profiling/i18n/ar.po +++ b/addons/crm_profiling/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/bg.po b/addons/crm_profiling/i18n/bg.po index fb0cae74470..e9d22d5db79 100644 --- a/addons/crm_profiling/i18n/bg.po +++ b/addons/crm_profiling/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/bs.po b/addons/crm_profiling/i18n/bs.po index c6dcc5b5853..3c9fc52c217 100644 --- a/addons/crm_profiling/i18n/bs.po +++ b/addons/crm_profiling/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/ca.po b/addons/crm_profiling/i18n/ca.po index 8a05e5687c0..a3de851a208 100644 --- a/addons/crm_profiling/i18n/ca.po +++ b/addons/crm_profiling/i18n/ca.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/cs.po b/addons/crm_profiling/i18n/cs.po index bbb50ba7871..2014b5f187e 100644 --- a/addons/crm_profiling/i18n/cs.po +++ b/addons/crm_profiling/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/da.po b/addons/crm_profiling/i18n/da.po index cf6e495d7a1..909d6018208 100644 --- a/addons/crm_profiling/i18n/da.po +++ b/addons/crm_profiling/i18n/da.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/de.po b/addons/crm_profiling/i18n/de.po index 17c99d578ef..b3c625a60f6 100644 --- a/addons/crm_profiling/i18n/de.po +++ b/addons/crm_profiling/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/el.po b/addons/crm_profiling/i18n/el.po index 14d20f1d6e8..2e2ffb3c174 100644 --- a/addons/crm_profiling/i18n/el.po +++ b/addons/crm_profiling/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/crm_profiling/i18n/en_GB.po b/addons/crm_profiling/i18n/en_GB.po index 1ea2c47f3d4..2727049837a 100644 --- a/addons/crm_profiling/i18n/en_GB.po +++ b/addons/crm_profiling/i18n/en_GB.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/es.po b/addons/crm_profiling/i18n/es.po index 140fa3ce46b..ba2f1cf7f03 100644 --- a/addons/crm_profiling/i18n/es.po +++ b/addons/crm_profiling/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/es_AR.po b/addons/crm_profiling/i18n/es_AR.po index 86327691e43..07ed1843300 100644 --- a/addons/crm_profiling/i18n/es_AR.po +++ b/addons/crm_profiling/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/es_CR.po b/addons/crm_profiling/i18n/es_CR.po index 1380d492dd9..185a394b14d 100644 --- a/addons/crm_profiling/i18n/es_CR.po +++ b/addons/crm_profiling/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/crm_profiling/i18n/es_EC.po b/addons/crm_profiling/i18n/es_EC.po index 0c6c27c3caa..d7f89805280 100644 --- a/addons/crm_profiling/i18n/es_EC.po +++ b/addons/crm_profiling/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/es_PY.po b/addons/crm_profiling/i18n/es_PY.po index a00500f6bf9..c41170ec778 100644 --- a/addons/crm_profiling/i18n/es_PY.po +++ b/addons/crm_profiling/i18n/es_PY.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/et.po b/addons/crm_profiling/i18n/et.po index 77dbee902e3..6bfaf54df93 100644 --- a/addons/crm_profiling/i18n/et.po +++ b/addons/crm_profiling/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/fi.po b/addons/crm_profiling/i18n/fi.po index e521a4c2eda..b59f5c86f35 100644 --- a/addons/crm_profiling/i18n/fi.po +++ b/addons/crm_profiling/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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/fr.po b/addons/crm_profiling/i18n/fr.po index 2d962fb325a..413dd33cf3f 100644 --- a/addons/crm_profiling/i18n/fr.po +++ b/addons/crm_profiling/i18n/fr.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/gl.po b/addons/crm_profiling/i18n/gl.po index 6117c5dbaa6..9d0a5cffe8f 100644 --- a/addons/crm_profiling/i18n/gl.po +++ b/addons/crm_profiling/i18n/gl.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/gu.po b/addons/crm_profiling/i18n/gu.po index 2ef88c59ffb..093c87b14bf 100644 --- a/addons/crm_profiling/i18n/gu.po +++ b/addons/crm_profiling/i18n/gu.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/hr.po b/addons/crm_profiling/i18n/hr.po index 80d6ed397a0..91b3884fdf2 100644 --- a/addons/crm_profiling/i18n/hr.po +++ b/addons/crm_profiling/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/crm_profiling/i18n/hu.po b/addons/crm_profiling/i18n/hu.po index 2f53c63e569..ecbfcd6fbbf 100644 --- a/addons/crm_profiling/i18n/hu.po +++ b/addons/crm_profiling/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/id.po b/addons/crm_profiling/i18n/id.po index 94302b1a0ce..d0e46866473 100644 --- a/addons/crm_profiling/i18n/id.po +++ b/addons/crm_profiling/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/it.po b/addons/crm_profiling/i18n/it.po index de4f1e81854..854645b837b 100644 --- a/addons/crm_profiling/i18n/it.po +++ b/addons/crm_profiling/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/ja.po b/addons/crm_profiling/i18n/ja.po index d7dd6c4f76c..11f3b2698ea 100644 --- a/addons/crm_profiling/i18n/ja.po +++ b/addons/crm_profiling/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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/ko.po b/addons/crm_profiling/i18n/ko.po index f98d5354ac7..35fda6353b4 100644 --- a/addons/crm_profiling/i18n/ko.po +++ b/addons/crm_profiling/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/lt.po b/addons/crm_profiling/i18n/lt.po index 459a812d926..59f92b17a36 100644 --- a/addons/crm_profiling/i18n/lt.po +++ b/addons/crm_profiling/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/lv.po b/addons/crm_profiling/i18n/lv.po index a4fad8b8af6..95d575b4cb1 100644 --- a/addons/crm_profiling/i18n/lv.po +++ b/addons/crm_profiling/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/mk.po b/addons/crm_profiling/i18n/mk.po index 189e4bbe7f0..e68070c4b78 100644 --- a/addons/crm_profiling/i18n/mk.po +++ b/addons/crm_profiling/i18n/mk.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/mn.po b/addons/crm_profiling/i18n/mn.po index 038f6396445..54b5bae7098 100644 --- a/addons/crm_profiling/i18n/mn.po +++ b/addons/crm_profiling/i18n/mn.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/nb.po b/addons/crm_profiling/i18n/nb.po index 070a5143623..5b5fdbfd9de 100644 --- a/addons/crm_profiling/i18n/nb.po +++ b/addons/crm_profiling/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/nl.po b/addons/crm_profiling/i18n/nl.po index f01ad20f05d..0e136613ce7 100644 --- a/addons/crm_profiling/i18n/nl.po +++ b/addons/crm_profiling/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/nl_BE.po b/addons/crm_profiling/i18n/nl_BE.po index 1e762545282..2c1a4444d1d 100644 --- a/addons/crm_profiling/i18n/nl_BE.po +++ b/addons/crm_profiling/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/pl.po b/addons/crm_profiling/i18n/pl.po index e5c71c1af94..b4009eba315 100644 --- a/addons/crm_profiling/i18n/pl.po +++ b/addons/crm_profiling/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/pt.po b/addons/crm_profiling/i18n/pt.po index 3368401e449..4b645cea244 100644 --- a/addons/crm_profiling/i18n/pt.po +++ b/addons/crm_profiling/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/pt_BR.po b/addons/crm_profiling/i18n/pt_BR.po index 76007cbcc65..a5c59749b92 100644 --- a/addons/crm_profiling/i18n/pt_BR.po +++ b/addons/crm_profiling/i18n/pt_BR.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/ro.po b/addons/crm_profiling/i18n/ro.po index 56e617f281f..5cbe9515299 100644 --- a/addons/crm_profiling/i18n/ro.po +++ b/addons/crm_profiling/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/ru.po b/addons/crm_profiling/i18n/ru.po index 2bbf6a95a65..8cbe1695e82 100644 --- a/addons/crm_profiling/i18n/ru.po +++ b/addons/crm_profiling/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/sk.po b/addons/crm_profiling/i18n/sk.po index 1ebd7c65308..e757d3c756f 100644 --- a/addons/crm_profiling/i18n/sk.po +++ b/addons/crm_profiling/i18n/sk.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/sl.po b/addons/crm_profiling/i18n/sl.po index 1ca2c7d9c7e..2c6850e2463 100644 --- a/addons/crm_profiling/i18n/sl.po +++ b/addons/crm_profiling/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/sq.po b/addons/crm_profiling/i18n/sq.po index 103ee870ecc..20fe9596d4c 100644 --- a/addons/crm_profiling/i18n/sq.po +++ b/addons/crm_profiling/i18n/sq.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/sr.po b/addons/crm_profiling/i18n/sr.po index 7a7107901c7..d373ef7edf6 100644 --- a/addons/crm_profiling/i18n/sr.po +++ b/addons/crm_profiling/i18n/sr.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/sr@latin.po b/addons/crm_profiling/i18n/sr@latin.po index 8deb3c62aed..9c993dc6353 100644 --- a/addons/crm_profiling/i18n/sr@latin.po +++ b/addons/crm_profiling/i18n/sr@latin.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/sv.po b/addons/crm_profiling/i18n/sv.po index fa49b297694..32ba7849e55 100644 --- a/addons/crm_profiling/i18n/sv.po +++ b/addons/crm_profiling/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/tlh.po b/addons/crm_profiling/i18n/tlh.po index 6b110420f68..497ff7c88db 100644 --- a/addons/crm_profiling/i18n/tlh.po +++ b/addons/crm_profiling/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/tr.po b/addons/crm_profiling/i18n/tr.po index 766c8540f79..a7de2893213 100644 --- a/addons/crm_profiling/i18n/tr.po +++ b/addons/crm_profiling/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/uk.po b/addons/crm_profiling/i18n/uk.po index 1d4831787fe..a8158d56d50 100644 --- a/addons/crm_profiling/i18n/uk.po +++ b/addons/crm_profiling/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/vi.po b/addons/crm_profiling/i18n/vi.po index 6f2641057ab..9089afb76c6 100644 --- a/addons/crm_profiling/i18n/vi.po +++ b/addons/crm_profiling/i18n/vi.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/zh_CN.po b/addons/crm_profiling/i18n/zh_CN.po index 7ff5e410387..0065cfff54f 100644 --- a/addons/crm_profiling/i18n/zh_CN.po +++ b/addons/crm_profiling/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/zh_TW.po b/addons/crm_profiling/i18n/zh_TW.po index 504bb8f4fb7..522eb48a8a4 100644 --- a/addons/crm_profiling/i18n/zh_TW.po +++ b/addons/crm_profiling/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_profiling diff --git a/addons/crm_todo/i18n/ar.po b/addons/crm_todo/i18n/ar.po index 6eca6c99c0f..80160befc6d 100644 --- a/addons/crm_todo/i18n/ar.po +++ b/addons/crm_todo/i18n/ar.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/de.po b/addons/crm_todo/i18n/de.po index c66d069c034..3cc4bb396f5 100644 --- a/addons/crm_todo/i18n/de.po +++ b/addons/crm_todo/i18n/de.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/en_GB.po b/addons/crm_todo/i18n/en_GB.po index 524f05da892..9487992ed78 100644 --- a/addons/crm_todo/i18n/en_GB.po +++ b/addons/crm_todo/i18n/en_GB.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/es.po b/addons/crm_todo/i18n/es.po index 8954c0db13d..e4f7f346acf 100644 --- a/addons/crm_todo/i18n/es.po +++ b/addons/crm_todo/i18n/es.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/es_CR.po b/addons/crm_todo/i18n/es_CR.po index 6d257a8e10e..1a5aabde2f9 100644 --- a/addons/crm_todo/i18n/es_CR.po +++ b/addons/crm_todo/i18n/es_CR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/fi.po b/addons/crm_todo/i18n/fi.po index ce9f4a71228..98513d5be33 100644 --- a/addons/crm_todo/i18n/fi.po +++ b/addons/crm_todo/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/fr.po b/addons/crm_todo/i18n/fr.po index f0a0cd7311e..6c92772a6c1 100644 --- a/addons/crm_todo/i18n/fr.po +++ b/addons/crm_todo/i18n/fr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/gu.po b/addons/crm_todo/i18n/gu.po index a3f26f646d2..422d430565a 100644 --- a/addons/crm_todo/i18n/gu.po +++ b/addons/crm_todo/i18n/gu.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/hr.po b/addons/crm_todo/i18n/hr.po index 668b7683e64..d2fed785abd 100644 --- a/addons/crm_todo/i18n/hr.po +++ b/addons/crm_todo/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/hu.po b/addons/crm_todo/i18n/hu.po index 8368c3457a9..98a3f830caf 100644 --- a/addons/crm_todo/i18n/hu.po +++ b/addons/crm_todo/i18n/hu.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/it.po b/addons/crm_todo/i18n/it.po index 9848edea5e3..b75f7c93ea0 100644 --- a/addons/crm_todo/i18n/it.po +++ b/addons/crm_todo/i18n/it.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/ja.po b/addons/crm_todo/i18n/ja.po index ba7a0942c86..4e8ee8f7f43 100644 --- a/addons/crm_todo/i18n/ja.po +++ b/addons/crm_todo/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/lt.po b/addons/crm_todo/i18n/lt.po index 25254a3df25..a1be0845605 100644 --- a/addons/crm_todo/i18n/lt.po +++ b/addons/crm_todo/i18n/lt.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/mk.po b/addons/crm_todo/i18n/mk.po index 502ac75f163..8ea86c1ac1f 100644 --- a/addons/crm_todo/i18n/mk.po +++ b/addons/crm_todo/i18n/mk.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/mn.po b/addons/crm_todo/i18n/mn.po index 9fc63fb74a6..2cb78f013b1 100644 --- a/addons/crm_todo/i18n/mn.po +++ b/addons/crm_todo/i18n/mn.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/nb.po b/addons/crm_todo/i18n/nb.po index 5e8596f21d0..bd36f119c4e 100644 --- a/addons/crm_todo/i18n/nb.po +++ b/addons/crm_todo/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/nl.po b/addons/crm_todo/i18n/nl.po index 17c0b2d154c..abbe9459249 100644 --- a/addons/crm_todo/i18n/nl.po +++ b/addons/crm_todo/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/pl.po b/addons/crm_todo/i18n/pl.po index 557ceb7435c..f3ef8069ffb 100644 --- a/addons/crm_todo/i18n/pl.po +++ b/addons/crm_todo/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/pt.po b/addons/crm_todo/i18n/pt.po index 57eae88eb2e..b03f22de2a9 100644 --- a/addons/crm_todo/i18n/pt.po +++ b/addons/crm_todo/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/pt_BR.po b/addons/crm_todo/i18n/pt_BR.po index 6f8c15587f3..c6305228a5f 100644 --- a/addons/crm_todo/i18n/pt_BR.po +++ b/addons/crm_todo/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/ro.po b/addons/crm_todo/i18n/ro.po index 10e0f2babd3..ff36a6fc154 100644 --- a/addons/crm_todo/i18n/ro.po +++ b/addons/crm_todo/i18n/ro.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/ru.po b/addons/crm_todo/i18n/ru.po index 5a259eab360..2a2dbdcdd74 100644 --- a/addons/crm_todo/i18n/ru.po +++ b/addons/crm_todo/i18n/ru.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/sl.po b/addons/crm_todo/i18n/sl.po index b1d3ea5d306..a394de85517 100644 --- a/addons/crm_todo/i18n/sl.po +++ b/addons/crm_todo/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/sr@latin.po b/addons/crm_todo/i18n/sr@latin.po index 92615cdb978..da02e769e00 100644 --- a/addons/crm_todo/i18n/sr@latin.po +++ b/addons/crm_todo/i18n/sr@latin.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/sv.po b/addons/crm_todo/i18n/sv.po index e1ff2667c52..d04946c1eed 100644 --- a/addons/crm_todo/i18n/sv.po +++ b/addons/crm_todo/i18n/sv.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/tr.po b/addons/crm_todo/i18n/tr.po index de8df6efcd3..4cddedb20d5 100644 --- a/addons/crm_todo/i18n/tr.po +++ b/addons/crm_todo/i18n/tr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/zh_CN.po b/addons/crm_todo/i18n/zh_CN.po index 587423d1f11..0c4ff5f7e5e 100644 --- a/addons/crm_todo/i18n/zh_CN.po +++ b/addons/crm_todo/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/zh_TW.po b/addons/crm_todo/i18n/zh_TW.po index b1e7cb96146..c9add021734 100644 --- a/addons/crm_todo/i18n/zh_TW.po +++ b/addons/crm_todo/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: crm_todo diff --git a/addons/decimal_precision/i18n/ar.po b/addons/decimal_precision/i18n/ar.po index c85cbada734..47d99a59da4 100644 --- a/addons/decimal_precision/i18n/ar.po +++ b/addons/decimal_precision/i18n/ar.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/bg.po b/addons/decimal_precision/i18n/bg.po index 674b0ee3fdb..1ce79a603ea 100644 --- a/addons/decimal_precision/i18n/bg.po +++ b/addons/decimal_precision/i18n/bg.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/ca.po b/addons/decimal_precision/i18n/ca.po index 3a357754101..8880b8fa2f1 100644 --- a/addons/decimal_precision/i18n/ca.po +++ b/addons/decimal_precision/i18n/ca.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/cs.po b/addons/decimal_precision/i18n/cs.po index a0d35c8d145..334c35d0ee6 100644 --- a/addons/decimal_precision/i18n/cs.po +++ b/addons/decimal_precision/i18n/cs.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/da.po b/addons/decimal_precision/i18n/da.po index a1f5829e15f..6871a9754b8 100644 --- a/addons/decimal_precision/i18n/da.po +++ b/addons/decimal_precision/i18n/da.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/de.po b/addons/decimal_precision/i18n/de.po index 3b2faa8f7eb..07a4aa5e20f 100644 --- a/addons/decimal_precision/i18n/de.po +++ b/addons/decimal_precision/i18n/de.po @@ -15,7 +15,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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/el.po b/addons/decimal_precision/i18n/el.po index 1da0f0a814d..8ac26fcf9c2 100644 --- a/addons/decimal_precision/i18n/el.po +++ b/addons/decimal_precision/i18n/el.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/en_GB.po b/addons/decimal_precision/i18n/en_GB.po index b40b1662a83..d4e3e57d0e1 100644 --- a/addons/decimal_precision/i18n/en_GB.po +++ b/addons/decimal_precision/i18n/en_GB.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/es.po b/addons/decimal_precision/i18n/es.po index 8785d5852f8..1aa52f9ef60 100644 --- a/addons/decimal_precision/i18n/es.po +++ b/addons/decimal_precision/i18n/es.po @@ -15,7 +15,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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/es_CR.po b/addons/decimal_precision/i18n/es_CR.po index e18530d193a..9997f38389f 100644 --- a/addons/decimal_precision/i18n/es_CR.po +++ b/addons/decimal_precision/i18n/es_CR.po @@ -15,7 +15,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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/decimal_precision/i18n/es_EC.po b/addons/decimal_precision/i18n/es_EC.po index 40da89d2033..b9cf890907e 100644 --- a/addons/decimal_precision/i18n/es_EC.po +++ b/addons/decimal_precision/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/es_MX.po b/addons/decimal_precision/i18n/es_MX.po index 73be1be9b32..0471069ca6f 100644 --- a/addons/decimal_precision/i18n/es_MX.po +++ b/addons/decimal_precision/i18n/es_MX.po @@ -15,7 +15,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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/es_PY.po b/addons/decimal_precision/i18n/es_PY.po index 4c5308046a1..de96fc141e9 100644 --- a/addons/decimal_precision/i18n/es_PY.po +++ b/addons/decimal_precision/i18n/es_PY.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/fi.po b/addons/decimal_precision/i18n/fi.po index 31167ec05c0..8bd34b5b299 100644 --- a/addons/decimal_precision/i18n/fi.po +++ b/addons/decimal_precision/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/fr.po b/addons/decimal_precision/i18n/fr.po index 203fcfb1dde..0f339d6dd02 100644 --- a/addons/decimal_precision/i18n/fr.po +++ b/addons/decimal_precision/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/gl.po b/addons/decimal_precision/i18n/gl.po index bce9b9b8081..a87e5393696 100644 --- a/addons/decimal_precision/i18n/gl.po +++ b/addons/decimal_precision/i18n/gl.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/gu.po b/addons/decimal_precision/i18n/gu.po index 6791eb5619b..4a197e25c91 100644 --- a/addons/decimal_precision/i18n/gu.po +++ b/addons/decimal_precision/i18n/gu.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/hr.po b/addons/decimal_precision/i18n/hr.po index dfaea7c1d67..ced361e718a 100644 --- a/addons/decimal_precision/i18n/hr.po +++ b/addons/decimal_precision/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/hu.po b/addons/decimal_precision/i18n/hu.po index 8f7c8842640..e3ca92768b9 100644 --- a/addons/decimal_precision/i18n/hu.po +++ b/addons/decimal_precision/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/id.po b/addons/decimal_precision/i18n/id.po index 8d18d852ac2..a37b9b20d88 100644 --- a/addons/decimal_precision/i18n/id.po +++ b/addons/decimal_precision/i18n/id.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/it.po b/addons/decimal_precision/i18n/it.po index 032b41d297c..7ce7e36ea6b 100644 --- a/addons/decimal_precision/i18n/it.po +++ b/addons/decimal_precision/i18n/it.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/ja.po b/addons/decimal_precision/i18n/ja.po index bc747b394c7..a41a6144b02 100644 --- a/addons/decimal_precision/i18n/ja.po +++ b/addons/decimal_precision/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/lt.po b/addons/decimal_precision/i18n/lt.po index 9428fad9fb3..50916f66de2 100644 --- a/addons/decimal_precision/i18n/lt.po +++ b/addons/decimal_precision/i18n/lt.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/lv.po b/addons/decimal_precision/i18n/lv.po index 362af0862c0..ce2214d2b9c 100644 --- a/addons/decimal_precision/i18n/lv.po +++ b/addons/decimal_precision/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/mk.po b/addons/decimal_precision/i18n/mk.po index 6b5fcd5001b..b62e8f0104b 100644 --- a/addons/decimal_precision/i18n/mk.po +++ b/addons/decimal_precision/i18n/mk.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/mn.po b/addons/decimal_precision/i18n/mn.po index 07fbea3b968..85e53a98845 100644 --- a/addons/decimal_precision/i18n/mn.po +++ b/addons/decimal_precision/i18n/mn.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/nb.po b/addons/decimal_precision/i18n/nb.po index 67f88f28b24..3ca61cf64b3 100644 --- a/addons/decimal_precision/i18n/nb.po +++ b/addons/decimal_precision/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/nl.po b/addons/decimal_precision/i18n/nl.po index 494faa312e9..bab097257e8 100644 --- a/addons/decimal_precision/i18n/nl.po +++ b/addons/decimal_precision/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/nl_BE.po b/addons/decimal_precision/i18n/nl_BE.po index 39cc1c92be8..7af42869e35 100644 --- a/addons/decimal_precision/i18n/nl_BE.po +++ b/addons/decimal_precision/i18n/nl_BE.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/pl.po b/addons/decimal_precision/i18n/pl.po index 70c02f67665..b7adf26e87a 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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/pt.po b/addons/decimal_precision/i18n/pt.po index 3e6d4f23200..2329276bc34 100644 --- a/addons/decimal_precision/i18n/pt.po +++ b/addons/decimal_precision/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/pt_BR.po b/addons/decimal_precision/i18n/pt_BR.po index b5807d688cc..f2a3d3cf7b8 100644 --- a/addons/decimal_precision/i18n/pt_BR.po +++ b/addons/decimal_precision/i18n/pt_BR.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/ro.po b/addons/decimal_precision/i18n/ro.po index 5ac408b3356..1f51cc2ddcb 100644 --- a/addons/decimal_precision/i18n/ro.po +++ b/addons/decimal_precision/i18n/ro.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/ru.po b/addons/decimal_precision/i18n/ru.po index db0ea1027f6..0425d665686 100644 --- a/addons/decimal_precision/i18n/ru.po +++ b/addons/decimal_precision/i18n/ru.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/sk.po b/addons/decimal_precision/i18n/sk.po index 869f7ba90c7..ec815ef0f0c 100644 --- a/addons/decimal_precision/i18n/sk.po +++ b/addons/decimal_precision/i18n/sk.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/sl.po b/addons/decimal_precision/i18n/sl.po index 42296e3a287..96650a0ff40 100644 --- a/addons/decimal_precision/i18n/sl.po +++ b/addons/decimal_precision/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/sr.po b/addons/decimal_precision/i18n/sr.po index f6a587b18f2..1d65499c1a0 100644 --- a/addons/decimal_precision/i18n/sr.po +++ b/addons/decimal_precision/i18n/sr.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/sr@latin.po b/addons/decimal_precision/i18n/sr@latin.po index 724d1b4a77e..a19397e6efd 100644 --- a/addons/decimal_precision/i18n/sr@latin.po +++ b/addons/decimal_precision/i18n/sr@latin.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/sv.po b/addons/decimal_precision/i18n/sv.po index 95297db11c2..0ada0fe9e94 100644 --- a/addons/decimal_precision/i18n/sv.po +++ b/addons/decimal_precision/i18n/sv.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/tr.po b/addons/decimal_precision/i18n/tr.po index 4b3d96e975f..96d8786971a 100644 --- a/addons/decimal_precision/i18n/tr.po +++ b/addons/decimal_precision/i18n/tr.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/vi.po b/addons/decimal_precision/i18n/vi.po index 145d950612d..496b12c7cde 100644 --- a/addons/decimal_precision/i18n/vi.po +++ b/addons/decimal_precision/i18n/vi.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/zh_CN.po b/addons/decimal_precision/i18n/zh_CN.po index 63d61ef9148..469402baeef 100644 --- a/addons/decimal_precision/i18n/zh_CN.po +++ b/addons/decimal_precision/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/zh_TW.po b/addons/decimal_precision/i18n/zh_TW.po index 10715f7df02..db99bf51b64 100644 --- a/addons/decimal_precision/i18n/zh_TW.po +++ b/addons/decimal_precision/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: decimal_precision diff --git a/addons/delivery/i18n/ar.po b/addons/delivery/i18n/ar.po index 47b1e104608..687369383e1 100644 --- a/addons/delivery/i18n/ar.po +++ b/addons/delivery/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/bg.po b/addons/delivery/i18n/bg.po index 56043dccc66..b0ac4241cec 100644 --- a/addons/delivery/i18n/bg.po +++ b/addons/delivery/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/bs.po b/addons/delivery/i18n/bs.po index 00266812335..70ffa54db34 100644 --- a/addons/delivery/i18n/bs.po +++ b/addons/delivery/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/ca.po b/addons/delivery/i18n/ca.po index baefaa243e4..fbd3046aacb 100644 --- a/addons/delivery/i18n/ca.po +++ b/addons/delivery/i18n/ca.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/cs.po b/addons/delivery/i18n/cs.po index d0b844c09a5..50f3d70e6de 100644 --- a/addons/delivery/i18n/cs.po +++ b/addons/delivery/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/delivery/i18n/da.po b/addons/delivery/i18n/da.po index 00bb786e4de..1590aacab92 100644 --- a/addons/delivery/i18n/da.po +++ b/addons/delivery/i18n/da.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/de.po b/addons/delivery/i18n/de.po index 62ba5a5cab4..701abf648e7 100644 --- a/addons/delivery/i18n/de.po +++ b/addons/delivery/i18n/de.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/el.po b/addons/delivery/i18n/el.po index 3a77a1010a6..e49adcb78ff 100644 --- a/addons/delivery/i18n/el.po +++ b/addons/delivery/i18n/el.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/es.po b/addons/delivery/i18n/es.po index 79cc2092f22..3f623a64ef3 100644 --- a/addons/delivery/i18n/es.po +++ b/addons/delivery/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/es_AR.po b/addons/delivery/i18n/es_AR.po index 730add5a00e..b59cb76ab27 100644 --- a/addons/delivery/i18n/es_AR.po +++ b/addons/delivery/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/es_CR.po b/addons/delivery/i18n/es_CR.po index 98628f183b5..40b0a5374cd 100644 --- a/addons/delivery/i18n/es_CR.po +++ b/addons/delivery/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/delivery/i18n/es_EC.po b/addons/delivery/i18n/es_EC.po index af9c97aeddd..b6bbd65d11c 100644 --- a/addons/delivery/i18n/es_EC.po +++ b/addons/delivery/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/es_MX.po b/addons/delivery/i18n/es_MX.po index a7b69bfc233..17cabd24584 100644 --- a/addons/delivery/i18n/es_MX.po +++ b/addons/delivery/i18n/es_MX.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/es_PY.po b/addons/delivery/i18n/es_PY.po index 8413d663b5e..e483d103a64 100644 --- a/addons/delivery/i18n/es_PY.po +++ b/addons/delivery/i18n/es_PY.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-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/et.po b/addons/delivery/i18n/et.po index 7ab2b8dccbe..b6baaf9ffec 100644 --- a/addons/delivery/i18n/et.po +++ b/addons/delivery/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/fi.po b/addons/delivery/i18n/fi.po index cdd6a57aeac..751c13542a4 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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/fr.po b/addons/delivery/i18n/fr.po index 7fbecba94bd..ae6122c262d 100644 --- a/addons/delivery/i18n/fr.po +++ b/addons/delivery/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #~ msgid "Invalid XML for View Architecture!" diff --git a/addons/delivery/i18n/gl.po b/addons/delivery/i18n/gl.po index 19fc64556f5..82c86a7bfad 100644 --- a/addons/delivery/i18n/gl.po +++ b/addons/delivery/i18n/gl.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/hi.po b/addons/delivery/i18n/hi.po index 22a16e5a0d4..b4179d81001 100644 --- a/addons/delivery/i18n/hi.po +++ b/addons/delivery/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/hr.po b/addons/delivery/i18n/hr.po index eb44d5c4fc6..0aeb10297a5 100644 --- a/addons/delivery/i18n/hr.po +++ b/addons/delivery/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/delivery/i18n/hu.po b/addons/delivery/i18n/hu.po index 7034205cc73..d5bee53849a 100644 --- a/addons/delivery/i18n/hu.po +++ b/addons/delivery/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/id.po b/addons/delivery/i18n/id.po index 26bdfec2269..bcde48fa690 100644 --- a/addons/delivery/i18n/id.po +++ b/addons/delivery/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/it.po b/addons/delivery/i18n/it.po index 0a008100a7c..d3ba0216af1 100644 --- a/addons/delivery/i18n/it.po +++ b/addons/delivery/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/ja.po b/addons/delivery/i18n/ja.po index 73fc85e1c94..237b65571ba 100644 --- a/addons/delivery/i18n/ja.po +++ b/addons/delivery/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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/ko.po b/addons/delivery/i18n/ko.po index 2bd7dffdea1..2fb8da78099 100644 --- a/addons/delivery/i18n/ko.po +++ b/addons/delivery/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/lt.po b/addons/delivery/i18n/lt.po index 81483399d02..59808d9ae0f 100644 --- a/addons/delivery/i18n/lt.po +++ b/addons/delivery/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/lv.po b/addons/delivery/i18n/lv.po index 1f657633d7d..502ec684a2f 100644 --- a/addons/delivery/i18n/lv.po +++ b/addons/delivery/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/mk.po b/addons/delivery/i18n/mk.po index 0de5e964821..c803c0062fd 100644 --- a/addons/delivery/i18n/mk.po +++ b/addons/delivery/i18n/mk.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/mn.po b/addons/delivery/i18n/mn.po index efc7667221c..76ff0a9ac1f 100644 --- a/addons/delivery/i18n/mn.po +++ b/addons/delivery/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/nb.po b/addons/delivery/i18n/nb.po index 43ff2e09f2a..4b11be4a331 100644 --- a/addons/delivery/i18n/nb.po +++ b/addons/delivery/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/nl.po b/addons/delivery/i18n/nl.po index c5bc098e12c..c9bd9c0e255 100644 --- a/addons/delivery/i18n/nl.po +++ b/addons/delivery/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/nl_BE.po b/addons/delivery/i18n/nl_BE.po index 612d68cf164..c1747002c89 100644 --- a/addons/delivery/i18n/nl_BE.po +++ b/addons/delivery/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/pl.po b/addons/delivery/i18n/pl.po index 16ac3d9b1bf..987bbf2e49c 100644 --- a/addons/delivery/i18n/pl.po +++ b/addons/delivery/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/pt.po b/addons/delivery/i18n/pt.po index 6870f230da1..b84d9d37bd8 100644 --- a/addons/delivery/i18n/pt.po +++ b/addons/delivery/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/pt_BR.po b/addons/delivery/i18n/pt_BR.po index 91c741b5dc2..d835682eadb 100644 --- a/addons/delivery/i18n/pt_BR.po +++ b/addons/delivery/i18n/pt_BR.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/ro.po b/addons/delivery/i18n/ro.po index f2bf0b1127e..cc5ceeea491 100644 --- a/addons/delivery/i18n/ro.po +++ b/addons/delivery/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/ru.po b/addons/delivery/i18n/ru.po index 01511d85e63..5e09adf3083 100644 --- a/addons/delivery/i18n/ru.po +++ b/addons/delivery/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/sl.po b/addons/delivery/i18n/sl.po index 99d836ca29f..7511e767dff 100644 --- a/addons/delivery/i18n/sl.po +++ b/addons/delivery/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/sq.po b/addons/delivery/i18n/sq.po index bcad938ef1e..3add2363f6c 100644 --- a/addons/delivery/i18n/sq.po +++ b/addons/delivery/i18n/sq.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/sr.po b/addons/delivery/i18n/sr.po index 5e6ddc0aa8b..0082453a764 100644 --- a/addons/delivery/i18n/sr.po +++ b/addons/delivery/i18n/sr.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/sr@latin.po b/addons/delivery/i18n/sr@latin.po index 39da69d2e57..0f56b663031 100644 --- a/addons/delivery/i18n/sr@latin.po +++ b/addons/delivery/i18n/sr@latin.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-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/sv.po b/addons/delivery/i18n/sv.po index d748d376f27..b636e85aaf8 100644 --- a/addons/delivery/i18n/sv.po +++ b/addons/delivery/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/th.po b/addons/delivery/i18n/th.po index 5fb105f490a..a24e62e8a35 100644 --- a/addons/delivery/i18n/th.po +++ b/addons/delivery/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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/tlh.po b/addons/delivery/i18n/tlh.po index c1f4487f71b..17f2c495ba0 100644 --- a/addons/delivery/i18n/tlh.po +++ b/addons/delivery/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/tr.po b/addons/delivery/i18n/tr.po index 78ea9b2b367..1a34bf8cdcc 100644 --- a/addons/delivery/i18n/tr.po +++ b/addons/delivery/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/uk.po b/addons/delivery/i18n/uk.po index ae8cbff43bd..016742d6e0e 100644 --- a/addons/delivery/i18n/uk.po +++ b/addons/delivery/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/vi.po b/addons/delivery/i18n/vi.po index dd016e2db7e..c1a9ab41dac 100644 --- a/addons/delivery/i18n/vi.po +++ b/addons/delivery/i18n/vi.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/zh_CN.po b/addons/delivery/i18n/zh_CN.po index 8b9d21b7db0..5c9112b3dc2 100644 --- a/addons/delivery/i18n/zh_CN.po +++ b/addons/delivery/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/delivery/i18n/zh_TW.po b/addons/delivery/i18n/zh_TW.po index 9b701904f97..26c0e65a74c 100644 --- a/addons/delivery/i18n/zh_TW.po +++ b/addons/delivery/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: delivery diff --git a/addons/document/i18n/ar.po b/addons/document/i18n/ar.po index b2657297310..a26a68450f4 100644 --- a/addons/document/i18n/ar.po +++ b/addons/document/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/bg.po b/addons/document/i18n/bg.po index 2f0eb45a29c..6440a8800a6 100644 --- a/addons/document/i18n/bg.po +++ b/addons/document/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/bs.po b/addons/document/i18n/bs.po index fc82288f747..42a6e2c3463 100644 --- a/addons/document/i18n/bs.po +++ b/addons/document/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/ca.po b/addons/document/i18n/ca.po index 6539c55254b..c4a94877df8 100644 --- a/addons/document/i18n/ca.po +++ b/addons/document/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/cs.po b/addons/document/i18n/cs.po index 5974c9f6678..be3cbf9b50d 100644 --- a/addons/document/i18n/cs.po +++ b/addons/document/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/document/i18n/da.po b/addons/document/i18n/da.po index b9c48ca6c23..2ab91ea5f5d 100644 --- a/addons/document/i18n/da.po +++ b/addons/document/i18n/da.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/de.po b/addons/document/i18n/de.po index 0d4b01ed533..9cfce98157a 100644 --- a/addons/document/i18n/de.po +++ b/addons/document/i18n/de.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/el.po b/addons/document/i18n/el.po index ed702c66ad2..e219424146b 100644 --- a/addons/document/i18n/el.po +++ b/addons/document/i18n/el.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/es.po b/addons/document/i18n/es.po index 3f765638987..b54cdf5cfe8 100644 --- a/addons/document/i18n/es.po +++ b/addons/document/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/es_AR.po b/addons/document/i18n/es_AR.po index 64fc2936f7a..4ee58a577a0 100644 --- a/addons/document/i18n/es_AR.po +++ b/addons/document/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/es_CR.po b/addons/document/i18n/es_CR.po index 330f53bcbb8..b191c5ddd73 100644 --- a/addons/document/i18n/es_CR.po +++ b/addons/document/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/document/i18n/es_EC.po b/addons/document/i18n/es_EC.po index 78e686deb27..4d113ab094f 100644 --- a/addons/document/i18n/es_EC.po +++ b/addons/document/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/es_PY.po b/addons/document/i18n/es_PY.po index f1025089b13..e2c2e04b400 100644 --- a/addons/document/i18n/es_PY.po +++ b/addons/document/i18n/es_PY.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/et.po b/addons/document/i18n/et.po index 8d3b3d56a60..ba2de7b71c0 100644 --- a/addons/document/i18n/et.po +++ b/addons/document/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/fi.po b/addons/document/i18n/fi.po index 74957af99fd..d13a6f8328d 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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/fr.po b/addons/document/i18n/fr.po index 7548c4ea912..2297e2c577b 100644 --- a/addons/document/i18n/fr.po +++ b/addons/document/i18n/fr.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/gl.po b/addons/document/i18n/gl.po index 0ce04832cea..726922486c6 100644 --- a/addons/document/i18n/gl.po +++ b/addons/document/i18n/gl.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/gu.po b/addons/document/i18n/gu.po index 8bdb36ef3e2..7b585d37cfe 100644 --- a/addons/document/i18n/gu.po +++ b/addons/document/i18n/gu.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/hi.po b/addons/document/i18n/hi.po index 8257828363a..d63dce23e2b 100644 --- a/addons/document/i18n/hi.po +++ b/addons/document/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/hr.po b/addons/document/i18n/hr.po index 2a59cc56aa5..c4d6f051c3f 100644 --- a/addons/document/i18n/hr.po +++ b/addons/document/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/document/i18n/hu.po b/addons/document/i18n/hu.po index d7c648150ad..22e863a970c 100644 --- a/addons/document/i18n/hu.po +++ b/addons/document/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/id.po b/addons/document/i18n/id.po index 91f1054ec6b..3d5e9da6a84 100644 --- a/addons/document/i18n/id.po +++ b/addons/document/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/it.po b/addons/document/i18n/it.po index 475ae02e36a..d043df54691 100644 --- a/addons/document/i18n/it.po +++ b/addons/document/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/ja.po b/addons/document/i18n/ja.po index 162bc0712d8..5cf5d031170 100644 --- a/addons/document/i18n/ja.po +++ b/addons/document/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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/ko.po b/addons/document/i18n/ko.po index e059939dc87..7a64794ba2b 100644 --- a/addons/document/i18n/ko.po +++ b/addons/document/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/lt.po b/addons/document/i18n/lt.po index 190658fbf8c..60a5105e13a 100644 --- a/addons/document/i18n/lt.po +++ b/addons/document/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/lv.po b/addons/document/i18n/lv.po index a56c727038c..1387e06afa4 100644 --- a/addons/document/i18n/lv.po +++ b/addons/document/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/mk.po b/addons/document/i18n/mk.po index 388d2a41086..45467fe68ba 100644 --- a/addons/document/i18n/mk.po +++ b/addons/document/i18n/mk.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/mn.po b/addons/document/i18n/mn.po index 2f7e4fed988..e7677c25c80 100644 --- a/addons/document/i18n/mn.po +++ b/addons/document/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/nb.po b/addons/document/i18n/nb.po index 44abf1bf9e5..7269a3b4050 100644 --- a/addons/document/i18n/nb.po +++ b/addons/document/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/nl.po b/addons/document/i18n/nl.po index 0abb40b70f3..5a196c21f5e 100644 --- a/addons/document/i18n/nl.po +++ b/addons/document/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/nl_BE.po b/addons/document/i18n/nl_BE.po index 0481ac4e75a..4c47d84ee1e 100644 --- a/addons/document/i18n/nl_BE.po +++ b/addons/document/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/pl.po b/addons/document/i18n/pl.po index 75ca8ada0bc..fecd09ade98 100644 --- a/addons/document/i18n/pl.po +++ b/addons/document/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/pt.po b/addons/document/i18n/pt.po index 5347e18398d..84d71473c7a 100644 --- a/addons/document/i18n/pt.po +++ b/addons/document/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/pt_BR.po b/addons/document/i18n/pt_BR.po index 00903b4dd3f..1fea93050ec 100644 --- a/addons/document/i18n/pt_BR.po +++ b/addons/document/i18n/pt_BR.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/ro.po b/addons/document/i18n/ro.po index c283a54bdd1..706a59b2fb8 100644 --- a/addons/document/i18n/ro.po +++ b/addons/document/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/ru.po b/addons/document/i18n/ru.po index 1e691ebc932..aa74a37be8d 100644 --- a/addons/document/i18n/ru.po +++ b/addons/document/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/sk.po b/addons/document/i18n/sk.po index ba455e0e7e8..797ab6ee0c4 100644 --- a/addons/document/i18n/sk.po +++ b/addons/document/i18n/sk.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/sl.po b/addons/document/i18n/sl.po index 69341ecef34..b5796cf18d0 100644 --- a/addons/document/i18n/sl.po +++ b/addons/document/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/sq.po b/addons/document/i18n/sq.po index 4c2ef244c83..2293c5328ca 100644 --- a/addons/document/i18n/sq.po +++ b/addons/document/i18n/sq.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/sr.po b/addons/document/i18n/sr.po index 630cd90e47b..6263183d791 100644 --- a/addons/document/i18n/sr.po +++ b/addons/document/i18n/sr.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/sr@latin.po b/addons/document/i18n/sr@latin.po index ee9ae5917b1..49fd12367d0 100644 --- a/addons/document/i18n/sr@latin.po +++ b/addons/document/i18n/sr@latin.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/sv.po b/addons/document/i18n/sv.po index 8924feeb97b..c6fd5d0d841 100644 --- a/addons/document/i18n/sv.po +++ b/addons/document/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/tlh.po b/addons/document/i18n/tlh.po index 42de058e4fe..57ad788541d 100644 --- a/addons/document/i18n/tlh.po +++ b/addons/document/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/tr.po b/addons/document/i18n/tr.po index 75b4ba829cd..43f003fe134 100644 --- a/addons/document/i18n/tr.po +++ b/addons/document/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/uk.po b/addons/document/i18n/uk.po index 94140b8e4e8..2d1a85d549a 100644 --- a/addons/document/i18n/uk.po +++ b/addons/document/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/vi.po b/addons/document/i18n/vi.po index 59dfdb4944b..67c0f1e0656 100644 --- a/addons/document/i18n/vi.po +++ b/addons/document/i18n/vi.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/zh_CN.po b/addons/document/i18n/zh_CN.po index 05f0e48c43d..ed477be9a59 100644 --- a/addons/document/i18n/zh_CN.po +++ b/addons/document/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/zh_HK.po b/addons/document/i18n/zh_HK.po index ca70a6d152b..9d43189e644 100644 --- a/addons/document/i18n/zh_HK.po +++ b/addons/document/i18n/zh_HK.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document/i18n/zh_TW.po b/addons/document/i18n/zh_TW.po index 1e3814cb61e..8a6f7b4cb20 100644 --- a/addons/document/i18n/zh_TW.po +++ b/addons/document/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document diff --git a/addons/document_ftp/i18n/ar.po b/addons/document_ftp/i18n/ar.po index 511689b3e3f..59fddab4fdc 100644 --- a/addons/document_ftp/i18n/ar.po +++ b/addons/document_ftp/i18n/ar.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/bg.po b/addons/document_ftp/i18n/bg.po index fe3d5b1be00..0d974861250 100644 --- a/addons/document_ftp/i18n/bg.po +++ b/addons/document_ftp/i18n/bg.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/ca.po b/addons/document_ftp/i18n/ca.po index fbdb7ca8c40..8f199fc0269 100644 --- a/addons/document_ftp/i18n/ca.po +++ b/addons/document_ftp/i18n/ca.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/cs.po b/addons/document_ftp/i18n/cs.po index c9f166328cc..a4230a81d0d 100644 --- a/addons/document_ftp/i18n/cs.po +++ b/addons/document_ftp/i18n/cs.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/da.po b/addons/document_ftp/i18n/da.po index ad0b4bec452..a0ea4216c31 100644 --- a/addons/document_ftp/i18n/da.po +++ b/addons/document_ftp/i18n/da.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/de.po b/addons/document_ftp/i18n/de.po index 2769fd1dc1e..fc26090a191 100644 --- a/addons/document_ftp/i18n/de.po +++ b/addons/document_ftp/i18n/de.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/el.po b/addons/document_ftp/i18n/el.po index cf09c226404..8662f1fca28 100644 --- a/addons/document_ftp/i18n/el.po +++ b/addons/document_ftp/i18n/el.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/en_GB.po b/addons/document_ftp/i18n/en_GB.po index 223a37e5ec1..6cf0aa65c6a 100644 --- a/addons/document_ftp/i18n/en_GB.po +++ b/addons/document_ftp/i18n/en_GB.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/es.po b/addons/document_ftp/i18n/es.po index 9c72df90f87..5c65b01e332 100644 --- a/addons/document_ftp/i18n/es.po +++ b/addons/document_ftp/i18n/es.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/es_CR.po b/addons/document_ftp/i18n/es_CR.po index f9729aef17b..fcd4d07becc 100644 --- a/addons/document_ftp/i18n/es_CR.po +++ b/addons/document_ftp/i18n/es_CR.po @@ -15,7 +15,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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/document_ftp/i18n/es_EC.po b/addons/document_ftp/i18n/es_EC.po index 6694c960824..cc1f9ee37ff 100644 --- a/addons/document_ftp/i18n/es_EC.po +++ b/addons/document_ftp/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/es_PY.po b/addons/document_ftp/i18n/es_PY.po index 3f811f7fa6e..658dc2a2505 100644 --- a/addons/document_ftp/i18n/es_PY.po +++ b/addons/document_ftp/i18n/es_PY.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/et.po b/addons/document_ftp/i18n/et.po index 6d18fcd3420..34ab63a531c 100644 --- a/addons/document_ftp/i18n/et.po +++ b/addons/document_ftp/i18n/et.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/fi.po b/addons/document_ftp/i18n/fi.po index b9b630fcec5..52d0d7f769b 100644 --- a/addons/document_ftp/i18n/fi.po +++ b/addons/document_ftp/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/fr.po b/addons/document_ftp/i18n/fr.po index d67894d9067..069a2f7e43a 100644 --- a/addons/document_ftp/i18n/fr.po +++ b/addons/document_ftp/i18n/fr.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/gl.po b/addons/document_ftp/i18n/gl.po index 404a22b7ba2..36d1130ea6d 100644 --- a/addons/document_ftp/i18n/gl.po +++ b/addons/document_ftp/i18n/gl.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/hr.po b/addons/document_ftp/i18n/hr.po index 0723a825732..05a1afbdb8a 100644 --- a/addons/document_ftp/i18n/hr.po +++ b/addons/document_ftp/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/hu.po b/addons/document_ftp/i18n/hu.po index 600b6ed79f8..3c6d6caec33 100644 --- a/addons/document_ftp/i18n/hu.po +++ b/addons/document_ftp/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/it.po b/addons/document_ftp/i18n/it.po index 435f361c924..c01c5b831ae 100644 --- a/addons/document_ftp/i18n/it.po +++ b/addons/document_ftp/i18n/it.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/ja.po b/addons/document_ftp/i18n/ja.po index 8ffcee0badd..1c48bb02cbb 100644 --- a/addons/document_ftp/i18n/ja.po +++ b/addons/document_ftp/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/mk.po b/addons/document_ftp/i18n/mk.po index a91fff5db1e..24be1e90939 100644 --- a/addons/document_ftp/i18n/mk.po +++ b/addons/document_ftp/i18n/mk.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/mn.po b/addons/document_ftp/i18n/mn.po index b01e300ae95..2f336a0bcc7 100644 --- a/addons/document_ftp/i18n/mn.po +++ b/addons/document_ftp/i18n/mn.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/nb.po b/addons/document_ftp/i18n/nb.po index 2f54477ebf1..5cbf0770e36 100644 --- a/addons/document_ftp/i18n/nb.po +++ b/addons/document_ftp/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/nl.po b/addons/document_ftp/i18n/nl.po index 0603262470b..ebe40e4363d 100644 --- a/addons/document_ftp/i18n/nl.po +++ b/addons/document_ftp/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/pl.po b/addons/document_ftp/i18n/pl.po index 1dd5c7fca71..c6dbedef8dc 100644 --- a/addons/document_ftp/i18n/pl.po +++ b/addons/document_ftp/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/pt.po b/addons/document_ftp/i18n/pt.po index e260ea1fd0d..f7aa385f32a 100644 --- a/addons/document_ftp/i18n/pt.po +++ b/addons/document_ftp/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/pt_BR.po b/addons/document_ftp/i18n/pt_BR.po index fbf7e320d9e..fc167e79d03 100644 --- a/addons/document_ftp/i18n/pt_BR.po +++ b/addons/document_ftp/i18n/pt_BR.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/ro.po b/addons/document_ftp/i18n/ro.po index c5f03d80bf6..9cd0a8a3a06 100644 --- a/addons/document_ftp/i18n/ro.po +++ b/addons/document_ftp/i18n/ro.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/ru.po b/addons/document_ftp/i18n/ru.po index 69a3be1797e..3fafcbc8684 100644 --- a/addons/document_ftp/i18n/ru.po +++ b/addons/document_ftp/i18n/ru.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/sk.po b/addons/document_ftp/i18n/sk.po index defcf96487e..d7cab6381a7 100644 --- a/addons/document_ftp/i18n/sk.po +++ b/addons/document_ftp/i18n/sk.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/sl.po b/addons/document_ftp/i18n/sl.po index 0d536407164..2fc021af117 100644 --- a/addons/document_ftp/i18n/sl.po +++ b/addons/document_ftp/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/sr.po b/addons/document_ftp/i18n/sr.po index a157b3c4785..188edb5c005 100644 --- a/addons/document_ftp/i18n/sr.po +++ b/addons/document_ftp/i18n/sr.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/sr@latin.po b/addons/document_ftp/i18n/sr@latin.po index 21a1d6079fb..07b8ad927d6 100644 --- a/addons/document_ftp/i18n/sr@latin.po +++ b/addons/document_ftp/i18n/sr@latin.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/sv.po b/addons/document_ftp/i18n/sv.po index 0744b016c07..69bdf3dcb99 100644 --- a/addons/document_ftp/i18n/sv.po +++ b/addons/document_ftp/i18n/sv.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/tr.po b/addons/document_ftp/i18n/tr.po index 1bfe5ef9485..429d0c415b3 100644 --- a/addons/document_ftp/i18n/tr.po +++ b/addons/document_ftp/i18n/tr.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/vi.po b/addons/document_ftp/i18n/vi.po index 6a7d687d1b1..482c8c71c87 100644 --- a/addons/document_ftp/i18n/vi.po +++ b/addons/document_ftp/i18n/vi.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/zh_CN.po b/addons/document_ftp/i18n/zh_CN.po index be0fdf6f416..7c666a81262 100644 --- a/addons/document_ftp/i18n/zh_CN.po +++ b/addons/document_ftp/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/zh_TW.po b/addons/document_ftp/i18n/zh_TW.po index 089056b5561..5e76bf6f3ea 100644 --- a/addons/document_ftp/i18n/zh_TW.po +++ b/addons/document_ftp/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_ftp diff --git a/addons/document_page/i18n/ar.po b/addons/document_page/i18n/ar.po index 6d7c81ce6f7..442a4316a24 100644 --- a/addons/document_page/i18n/ar.po +++ b/addons/document_page/i18n/ar.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/bg.po b/addons/document_page/i18n/bg.po index 609bf5c2f03..7b0ebd776cf 100644 --- a/addons/document_page/i18n/bg.po +++ b/addons/document_page/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/bs.po b/addons/document_page/i18n/bs.po index 1dc974e3cae..d0fcdb90e43 100644 --- a/addons/document_page/i18n/bs.po +++ b/addons/document_page/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/ca.po b/addons/document_page/i18n/ca.po index 55c96b7c2f8..e4cd47b1406 100644 --- a/addons/document_page/i18n/ca.po +++ b/addons/document_page/i18n/ca.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/cs.po b/addons/document_page/i18n/cs.po index 587042ec8d4..530348d558b 100644 --- a/addons/document_page/i18n/cs.po +++ b/addons/document_page/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/document_page/i18n/da.po b/addons/document_page/i18n/da.po index fde7c2e0ff7..6ce454b2627 100644 --- a/addons/document_page/i18n/da.po +++ b/addons/document_page/i18n/da.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/de.po b/addons/document_page/i18n/de.po index cb5419e067f..6cd359f12b6 100644 --- a/addons/document_page/i18n/de.po +++ b/addons/document_page/i18n/de.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/el.po b/addons/document_page/i18n/el.po index 12525c70237..99a0b7d34bd 100644 --- a/addons/document_page/i18n/el.po +++ b/addons/document_page/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/document_page/i18n/es.po b/addons/document_page/i18n/es.po index 94d6e94c526..6b9b8b43c78 100644 --- a/addons/document_page/i18n/es.po +++ b/addons/document_page/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/et.po b/addons/document_page/i18n/et.po index 1dc258c221d..1163a5fbba5 100644 --- a/addons/document_page/i18n/et.po +++ b/addons/document_page/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/fi.po b/addons/document_page/i18n/fi.po index f475bca238a..333a6b93bc1 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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/fr.po b/addons/document_page/i18n/fr.po index 1b284b612ec..f8646dc65ff 100644 --- a/addons/document_page/i18n/fr.po +++ b/addons/document_page/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/gl.po b/addons/document_page/i18n/gl.po index ada78d5c9a1..8ad7cab44bb 100644 --- a/addons/document_page/i18n/gl.po +++ b/addons/document_page/i18n/gl.po @@ -15,7 +15,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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/hr.po b/addons/document_page/i18n/hr.po index 78a1363e77e..fde54b5a0c5 100644 --- a/addons/document_page/i18n/hr.po +++ b/addons/document_page/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/hu.po b/addons/document_page/i18n/hu.po index f41c7aa8da8..b9f7d82bac0 100644 --- a/addons/document_page/i18n/hu.po +++ b/addons/document_page/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/id.po b/addons/document_page/i18n/id.po index 19a3e201a2e..c446a3af1bf 100644 --- a/addons/document_page/i18n/id.po +++ b/addons/document_page/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/it.po b/addons/document_page/i18n/it.po index a7d49586051..ca8663ed296 100644 --- a/addons/document_page/i18n/it.po +++ b/addons/document_page/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/ja.po b/addons/document_page/i18n/ja.po index 105af23810e..7e432272183 100644 --- a/addons/document_page/i18n/ja.po +++ b/addons/document_page/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/ko.po b/addons/document_page/i18n/ko.po index 78e7622ded1..c6fbc55dc82 100644 --- a/addons/document_page/i18n/ko.po +++ b/addons/document_page/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/lt.po b/addons/document_page/i18n/lt.po index 795e5ec7f61..6c310ce8aa3 100644 --- a/addons/document_page/i18n/lt.po +++ b/addons/document_page/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: lt\n" diff --git a/addons/document_page/i18n/lv.po b/addons/document_page/i18n/lv.po index 55bf0b50f75..7de591d0e90 100644 --- a/addons/document_page/i18n/lv.po +++ b/addons/document_page/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/mk.po b/addons/document_page/i18n/mk.po index 459b868e927..39711e084a8 100644 --- a/addons/document_page/i18n/mk.po +++ b/addons/document_page/i18n/mk.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/mn.po b/addons/document_page/i18n/mn.po index 6f764264765..3e1d6223891 100644 --- a/addons/document_page/i18n/mn.po +++ b/addons/document_page/i18n/mn.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/nb.po b/addons/document_page/i18n/nb.po index 119e2254af9..7721e0d19cb 100644 --- a/addons/document_page/i18n/nb.po +++ b/addons/document_page/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/nl.po b/addons/document_page/i18n/nl.po index 98158d5eaea..ef1d13d48b6 100644 --- a/addons/document_page/i18n/nl.po +++ b/addons/document_page/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/pl.po b/addons/document_page/i18n/pl.po index 9a0d5210c7d..97f9d50fde5 100644 --- a/addons/document_page/i18n/pl.po +++ b/addons/document_page/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/pt.po b/addons/document_page/i18n/pt.po index f3e27ae8d2b..72587d064af 100644 --- a/addons/document_page/i18n/pt.po +++ b/addons/document_page/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/pt_BR.po b/addons/document_page/i18n/pt_BR.po index 7c68749b054..7d08858163a 100644 --- a/addons/document_page/i18n/pt_BR.po +++ b/addons/document_page/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/ro.po b/addons/document_page/i18n/ro.po index 74ef3335af6..dd124fcc064 100644 --- a/addons/document_page/i18n/ro.po +++ b/addons/document_page/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/ru.po b/addons/document_page/i18n/ru.po index 984a7cd96a8..43c4ca79b08 100644 --- a/addons/document_page/i18n/ru.po +++ b/addons/document_page/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/sk.po b/addons/document_page/i18n/sk.po index bf88ee0f0ac..8783650a2da 100644 --- a/addons/document_page/i18n/sk.po +++ b/addons/document_page/i18n/sk.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/sl.po b/addons/document_page/i18n/sl.po index 28d1990eacd..7f6fba021ce 100644 --- a/addons/document_page/i18n/sl.po +++ b/addons/document_page/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/sq.po b/addons/document_page/i18n/sq.po index 9c29776cc43..8e95e68c086 100644 --- a/addons/document_page/i18n/sq.po +++ b/addons/document_page/i18n/sq.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/sr.po b/addons/document_page/i18n/sr.po index 49cc34d32e1..b7336075212 100644 --- a/addons/document_page/i18n/sr.po +++ b/addons/document_page/i18n/sr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/sr@latin.po b/addons/document_page/i18n/sr@latin.po index a87e25348b6..d12cdb24b7f 100644 --- a/addons/document_page/i18n/sr@latin.po +++ b/addons/document_page/i18n/sr@latin.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/sv.po b/addons/document_page/i18n/sv.po index 6bdfe9de8ab..214b915dc4a 100644 --- a/addons/document_page/i18n/sv.po +++ b/addons/document_page/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/tlh.po b/addons/document_page/i18n/tlh.po index 19a3e201a2e..c446a3af1bf 100644 --- a/addons/document_page/i18n/tlh.po +++ b/addons/document_page/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/tr.po b/addons/document_page/i18n/tr.po index 0f00c0f6ae6..643bb02c481 100644 --- a/addons/document_page/i18n/tr.po +++ b/addons/document_page/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/uk.po b/addons/document_page/i18n/uk.po index ff9cf6bf4b1..577761fd646 100644 --- a/addons/document_page/i18n/uk.po +++ b/addons/document_page/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/vi.po b/addons/document_page/i18n/vi.po index 7baf6382512..8b36e5fb7bf 100644 --- a/addons/document_page/i18n/vi.po +++ b/addons/document_page/i18n/vi.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/zh_CN.po b/addons/document_page/i18n/zh_CN.po index bbec327302a..19d7e157cca 100644 --- a/addons/document_page/i18n/zh_CN.po +++ b/addons/document_page/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_page/i18n/zh_TW.po b/addons/document_page/i18n/zh_TW.po index 8f27311b982..cac45c811ce 100644 --- a/addons/document_page/i18n/zh_TW.po +++ b/addons/document_page/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_page diff --git a/addons/document_webdav/i18n/ar.po b/addons/document_webdav/i18n/ar.po index fb17502c403..c01b4b21218 100644 --- a/addons/document_webdav/i18n/ar.po +++ b/addons/document_webdav/i18n/ar.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/bg.po b/addons/document_webdav/i18n/bg.po index e0c1ed64bb0..201c9d8e8d3 100644 --- a/addons/document_webdav/i18n/bg.po +++ b/addons/document_webdav/i18n/bg.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/ca.po b/addons/document_webdav/i18n/ca.po index 477e789c94c..357a35302af 100644 --- a/addons/document_webdav/i18n/ca.po +++ b/addons/document_webdav/i18n/ca.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/cs.po b/addons/document_webdav/i18n/cs.po index becc5a41949..163c31ceb63 100644 --- a/addons/document_webdav/i18n/cs.po +++ b/addons/document_webdav/i18n/cs.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/da.po b/addons/document_webdav/i18n/da.po index faee57e7a4c..1d8a4d7a02e 100644 --- a/addons/document_webdav/i18n/da.po +++ b/addons/document_webdav/i18n/da.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/de.po b/addons/document_webdav/i18n/de.po index 979adae9a2b..376a1967608 100644 --- a/addons/document_webdav/i18n/de.po +++ b/addons/document_webdav/i18n/de.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/el.po b/addons/document_webdav/i18n/el.po index 53f43ade135..1eb280dd665 100644 --- a/addons/document_webdav/i18n/el.po +++ b/addons/document_webdav/i18n/el.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/en_GB.po b/addons/document_webdav/i18n/en_GB.po index 6d8c54b76de..7f79baad011 100644 --- a/addons/document_webdav/i18n/en_GB.po +++ b/addons/document_webdav/i18n/en_GB.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/es.po b/addons/document_webdav/i18n/es.po index 2f41a195162..83604ad6d10 100644 --- a/addons/document_webdav/i18n/es.po +++ b/addons/document_webdav/i18n/es.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/es_CR.po b/addons/document_webdav/i18n/es_CR.po index 6a11d69e0a6..213e6d06927 100644 --- a/addons/document_webdav/i18n/es_CR.po +++ b/addons/document_webdav/i18n/es_CR.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/document_webdav/i18n/es_EC.po b/addons/document_webdav/i18n/es_EC.po index ce8730639eb..84da980edb4 100644 --- a/addons/document_webdav/i18n/es_EC.po +++ b/addons/document_webdav/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/es_PY.po b/addons/document_webdav/i18n/es_PY.po index 6bd15ed3159..1b4365c40fb 100644 --- a/addons/document_webdav/i18n/es_PY.po +++ b/addons/document_webdav/i18n/es_PY.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/et.po b/addons/document_webdav/i18n/et.po index 57f45f95331..f28d4e8ae07 100644 --- a/addons/document_webdav/i18n/et.po +++ b/addons/document_webdav/i18n/et.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/eu.po b/addons/document_webdav/i18n/eu.po index 331e0baa6b8..1127270d475 100644 --- a/addons/document_webdav/i18n/eu.po +++ b/addons/document_webdav/i18n/eu.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/fi.po b/addons/document_webdav/i18n/fi.po index 017df10109d..5a820ca5d71 100644 --- a/addons/document_webdav/i18n/fi.po +++ b/addons/document_webdav/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/fr.po b/addons/document_webdav/i18n/fr.po index 20e999b7b43..843def706b6 100644 --- a/addons/document_webdav/i18n/fr.po +++ b/addons/document_webdav/i18n/fr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/gl.po b/addons/document_webdav/i18n/gl.po index d7f97552b4e..a6ac09bc25e 100644 --- a/addons/document_webdav/i18n/gl.po +++ b/addons/document_webdav/i18n/gl.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/gu.po b/addons/document_webdav/i18n/gu.po index 18b32f01658..9d3db03d3c7 100644 --- a/addons/document_webdav/i18n/gu.po +++ b/addons/document_webdav/i18n/gu.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/hr.po b/addons/document_webdav/i18n/hr.po index 160b4f3e845..ffd443c359d 100644 --- a/addons/document_webdav/i18n/hr.po +++ b/addons/document_webdav/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/hu.po b/addons/document_webdav/i18n/hu.po index ea40738d6c4..1b84b4eb7d9 100644 --- a/addons/document_webdav/i18n/hu.po +++ b/addons/document_webdav/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/id.po b/addons/document_webdav/i18n/id.po index 9a3be0ee989..95e59c5398b 100644 --- a/addons/document_webdav/i18n/id.po +++ b/addons/document_webdav/i18n/id.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/it.po b/addons/document_webdav/i18n/it.po index 33c24c14375..89301afd100 100644 --- a/addons/document_webdav/i18n/it.po +++ b/addons/document_webdav/i18n/it.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/ja.po b/addons/document_webdav/i18n/ja.po index a35f3406c72..e67cb30f752 100644 --- a/addons/document_webdav/i18n/ja.po +++ b/addons/document_webdav/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/mk.po b/addons/document_webdav/i18n/mk.po index e6710cc259f..664c6271f18 100644 --- a/addons/document_webdav/i18n/mk.po +++ b/addons/document_webdav/i18n/mk.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/mn.po b/addons/document_webdav/i18n/mn.po index d45bc2059d7..3031c8a3f9b 100644 --- a/addons/document_webdav/i18n/mn.po +++ b/addons/document_webdav/i18n/mn.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/nb.po b/addons/document_webdav/i18n/nb.po index ba3cd856c9b..036e3d4d16b 100644 --- a/addons/document_webdav/i18n/nb.po +++ b/addons/document_webdav/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/nl.po b/addons/document_webdav/i18n/nl.po index 8babc06f799..d40086d6bdb 100644 --- a/addons/document_webdav/i18n/nl.po +++ b/addons/document_webdav/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/pl.po b/addons/document_webdav/i18n/pl.po index d86f4c597bc..34a3420665c 100644 --- a/addons/document_webdav/i18n/pl.po +++ b/addons/document_webdav/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/pt.po b/addons/document_webdav/i18n/pt.po index 9f3fcd32d44..cfcdb6f79ac 100644 --- a/addons/document_webdav/i18n/pt.po +++ b/addons/document_webdav/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/pt_BR.po b/addons/document_webdav/i18n/pt_BR.po index f6c934b7c5c..be9ec1d8574 100644 --- a/addons/document_webdav/i18n/pt_BR.po +++ b/addons/document_webdav/i18n/pt_BR.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/ro.po b/addons/document_webdav/i18n/ro.po index d4885bd7f9a..26f71b9935b 100644 --- a/addons/document_webdav/i18n/ro.po +++ b/addons/document_webdav/i18n/ro.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/ru.po b/addons/document_webdav/i18n/ru.po index 42fd863d6d4..c734d573d1b 100644 --- a/addons/document_webdav/i18n/ru.po +++ b/addons/document_webdav/i18n/ru.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/sl.po b/addons/document_webdav/i18n/sl.po index eb9ba8693c5..f7857a83503 100644 --- a/addons/document_webdav/i18n/sl.po +++ b/addons/document_webdav/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/sr.po b/addons/document_webdav/i18n/sr.po index ebf4cdeb2a7..b43f0dee74b 100644 --- a/addons/document_webdav/i18n/sr.po +++ b/addons/document_webdav/i18n/sr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/sr@latin.po b/addons/document_webdav/i18n/sr@latin.po index 014ef3a7c48..113bdaa47a0 100644 --- a/addons/document_webdav/i18n/sr@latin.po +++ b/addons/document_webdav/i18n/sr@latin.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/sv.po b/addons/document_webdav/i18n/sv.po index 5820330f808..1c14c2c944e 100644 --- a/addons/document_webdav/i18n/sv.po +++ b/addons/document_webdav/i18n/sv.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/tr.po b/addons/document_webdav/i18n/tr.po index a6716a7322c..b9bd8c27a86 100644 --- a/addons/document_webdav/i18n/tr.po +++ b/addons/document_webdav/i18n/tr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/zh_CN.po b/addons/document_webdav/i18n/zh_CN.po index 7aa5aad5d11..7e79d2caf49 100644 --- a/addons/document_webdav/i18n/zh_CN.po +++ b/addons/document_webdav/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/zh_TW.po b/addons/document_webdav/i18n/zh_TW.po index c37e87024b8..69940eba827 100644 --- a/addons/document_webdav/i18n/zh_TW.po +++ b/addons/document_webdav/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: document_webdav diff --git a/addons/edi/i18n/ar.po b/addons/edi/i18n/ar.po index 3ba12da1940..e54fbf16ba8 100644 --- a/addons/edi/i18n/ar.po +++ b/addons/edi/i18n/ar.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/de.po b/addons/edi/i18n/de.po index c779dc84578..28e1c59e784 100644 --- a/addons/edi/i18n/de.po +++ b/addons/edi/i18n/de.po @@ -15,7 +15,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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/es.po b/addons/edi/i18n/es.po index 0f672cc3534..7800b33c65e 100644 --- a/addons/edi/i18n/es.po +++ b/addons/edi/i18n/es.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/es_CR.po b/addons/edi/i18n/es_CR.po index 399e7aec5dc..6ab8eaa8c0e 100644 --- a/addons/edi/i18n/es_CR.po +++ b/addons/edi/i18n/es_CR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/fi.po b/addons/edi/i18n/fi.po index bb581a0c1b7..88475e24e7c 100644 --- a/addons/edi/i18n/fi.po +++ b/addons/edi/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/fr.po b/addons/edi/i18n/fr.po index 3428655edad..39fafd714d7 100644 --- a/addons/edi/i18n/fr.po +++ b/addons/edi/i18n/fr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/hr.po b/addons/edi/i18n/hr.po index 430f30492a3..f760ea28866 100644 --- a/addons/edi/i18n/hr.po +++ b/addons/edi/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/hu.po b/addons/edi/i18n/hu.po index 9b8f2d76a2c..c3ecf0cf3e9 100644 --- a/addons/edi/i18n/hu.po +++ b/addons/edi/i18n/hu.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/it.po b/addons/edi/i18n/it.po index f7e84191900..f167c34e2b8 100644 --- a/addons/edi/i18n/it.po +++ b/addons/edi/i18n/it.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/ja.po b/addons/edi/i18n/ja.po index 8832e73aec6..7cb9cb4e568 100644 --- a/addons/edi/i18n/ja.po +++ b/addons/edi/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/mk.po b/addons/edi/i18n/mk.po index 506594c92a8..3d832230272 100644 --- a/addons/edi/i18n/mk.po +++ b/addons/edi/i18n/mk.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/ml.po b/addons/edi/i18n/ml.po index ec17ef3f048..0da73279e2c 100644 --- a/addons/edi/i18n/ml.po +++ b/addons/edi/i18n/ml.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/mn.po b/addons/edi/i18n/mn.po index 2db8d5771c3..250b7ea5a10 100644 --- a/addons/edi/i18n/mn.po +++ b/addons/edi/i18n/mn.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/nb.po b/addons/edi/i18n/nb.po index 4d751825e89..09ebc443fe2 100644 --- a/addons/edi/i18n/nb.po +++ b/addons/edi/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/nl.po b/addons/edi/i18n/nl.po index 4971daede7d..00461c7dcdd 100644 --- a/addons/edi/i18n/nl.po +++ b/addons/edi/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/nl_BE.po b/addons/edi/i18n/nl_BE.po index c11d874a4dc..f5fc80a6fcc 100644 --- a/addons/edi/i18n/nl_BE.po +++ b/addons/edi/i18n/nl_BE.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/pl.po b/addons/edi/i18n/pl.po index 0654b096115..dfad2c10743 100644 --- a/addons/edi/i18n/pl.po +++ b/addons/edi/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/pt.po b/addons/edi/i18n/pt.po index f835e5b954f..5b5657f220d 100644 --- a/addons/edi/i18n/pt.po +++ b/addons/edi/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/pt_BR.po b/addons/edi/i18n/pt_BR.po index 0e04d22bf02..30ffcdc3209 100644 --- a/addons/edi/i18n/pt_BR.po +++ b/addons/edi/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/ro.po b/addons/edi/i18n/ro.po index 7da25238455..a8d6d1eb9d4 100644 --- a/addons/edi/i18n/ro.po +++ b/addons/edi/i18n/ro.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/ru.po b/addons/edi/i18n/ru.po index 1947a37f68a..dad4bf0dcda 100644 --- a/addons/edi/i18n/ru.po +++ b/addons/edi/i18n/ru.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/sl.po b/addons/edi/i18n/sl.po index 30a0f45d53e..bf15d5cb009 100644 --- a/addons/edi/i18n/sl.po +++ b/addons/edi/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/sv.po b/addons/edi/i18n/sv.po index adfbce1058e..f33e0918cbb 100644 --- a/addons/edi/i18n/sv.po +++ b/addons/edi/i18n/sv.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/tr.po b/addons/edi/i18n/tr.po index bcb4f86a970..dc20cbc5ff9 100644 --- a/addons/edi/i18n/tr.po +++ b/addons/edi/i18n/tr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/zh_CN.po b/addons/edi/i18n/zh_CN.po index 0bd3eb5ffd0..a07a6e3861f 100644 --- a/addons/edi/i18n/zh_CN.po +++ b/addons/edi/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/edi/i18n/zh_TW.po b/addons/edi/i18n/zh_TW.po index eb3777fd4ff..192421dbd6f 100644 --- a/addons/edi/i18n/zh_TW.po +++ b/addons/edi/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: edi diff --git a/addons/email_template/i18n/ar.po b/addons/email_template/i18n/ar.po index 15aa72a45a9..e802e4ac28d 100644 --- a/addons/email_template/i18n/ar.po +++ b/addons/email_template/i18n/ar.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/bg.po b/addons/email_template/i18n/bg.po index 43828e193ef..75b139adae4 100644 --- a/addons/email_template/i18n/bg.po +++ b/addons/email_template/i18n/bg.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/ca.po b/addons/email_template/i18n/ca.po index 9b192e81c18..a58f20a2ce5 100644 --- a/addons/email_template/i18n/ca.po +++ b/addons/email_template/i18n/ca.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/cs.po b/addons/email_template/i18n/cs.po index fd125d29364..8c4ee4c3428 100644 --- a/addons/email_template/i18n/cs.po +++ b/addons/email_template/i18n/cs.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/da.po b/addons/email_template/i18n/da.po index e6a6c6efc78..856b5ad609f 100644 --- a/addons/email_template/i18n/da.po +++ b/addons/email_template/i18n/da.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/de.po b/addons/email_template/i18n/de.po index da94ca22702..86d2d0bc490 100644 --- a/addons/email_template/i18n/de.po +++ b/addons/email_template/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/es.po b/addons/email_template/i18n/es.po index 90222f44531..1c2ddba6ea3 100644 --- a/addons/email_template/i18n/es.po +++ b/addons/email_template/i18n/es.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/es_CL.po b/addons/email_template/i18n/es_CL.po index df9ef13d0f2..3c9e955f86b 100644 --- a/addons/email_template/i18n/es_CL.po +++ b/addons/email_template/i18n/es_CL.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/es_CR.po b/addons/email_template/i18n/es_CR.po index c2a0d1b6678..9027808badf 100644 --- a/addons/email_template/i18n/es_CR.po +++ b/addons/email_template/i18n/es_CR.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/email_template/i18n/es_EC.po b/addons/email_template/i18n/es_EC.po index e4f0c014d98..cf6ae037cd3 100644 --- a/addons/email_template/i18n/es_EC.po +++ b/addons/email_template/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/et.po b/addons/email_template/i18n/et.po index 20e73202baf..71ca242f45d 100644 --- a/addons/email_template/i18n/et.po +++ b/addons/email_template/i18n/et.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/fa_AF.po b/addons/email_template/i18n/fa_AF.po index 43953c24e4d..3dd0a63772a 100644 --- a/addons/email_template/i18n/fa_AF.po +++ b/addons/email_template/i18n/fa_AF.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/fi.po b/addons/email_template/i18n/fi.po index 57d3f93e8cd..197c9add37d 100644 --- a/addons/email_template/i18n/fi.po +++ b/addons/email_template/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/fr.po b/addons/email_template/i18n/fr.po index 1c2ecd4b81e..c8a75230072 100644 --- a/addons/email_template/i18n/fr.po +++ b/addons/email_template/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/hr.po b/addons/email_template/i18n/hr.po index de08704552a..c6e55465507 100644 --- a/addons/email_template/i18n/hr.po +++ b/addons/email_template/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/hu.po b/addons/email_template/i18n/hu.po index e4feee962f1..c998043019e 100644 --- a/addons/email_template/i18n/hu.po +++ b/addons/email_template/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/it.po b/addons/email_template/i18n/it.po index c9ae3268f35..827360414d6 100644 --- a/addons/email_template/i18n/it.po +++ b/addons/email_template/i18n/it.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/ja.po b/addons/email_template/i18n/ja.po index 678ec06526a..a618a6cefd4 100644 --- a/addons/email_template/i18n/ja.po +++ b/addons/email_template/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/mk.po b/addons/email_template/i18n/mk.po index bb7cda3b86f..551ae7b0763 100644 --- a/addons/email_template/i18n/mk.po +++ b/addons/email_template/i18n/mk.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/mn.po b/addons/email_template/i18n/mn.po index 72987b73d0d..db5bccb9c1c 100644 --- a/addons/email_template/i18n/mn.po +++ b/addons/email_template/i18n/mn.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/nb.po b/addons/email_template/i18n/nb.po index c69ba45f5d8..ea528fabcce 100644 --- a/addons/email_template/i18n/nb.po +++ b/addons/email_template/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/nl.po b/addons/email_template/i18n/nl.po index 91719dc24ad..e11bf4545ae 100644 --- a/addons/email_template/i18n/nl.po +++ b/addons/email_template/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template @@ -353,7 +353,7 @@ msgstr "E-mail samenstellen wizard" #. module: email_template #: view:email.template:0 msgid "Add context action" -msgstr "Voeg conteext actie toe" +msgstr "Voeg context actie toe" #. module: email_template #: help:email.template,model_id:0 diff --git a/addons/email_template/i18n/pl.po b/addons/email_template/i18n/pl.po index 016d62ebf0f..4009997bc5c 100644 --- a/addons/email_template/i18n/pl.po +++ b/addons/email_template/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/pt.po b/addons/email_template/i18n/pt.po index 41ecd9d8b7e..bcfdd321c6a 100644 --- a/addons/email_template/i18n/pt.po +++ b/addons/email_template/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/pt_BR.po b/addons/email_template/i18n/pt_BR.po index 8f63037799f..a2394f27ee9 100644 --- a/addons/email_template/i18n/pt_BR.po +++ b/addons/email_template/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/ro.po b/addons/email_template/i18n/ro.po index 4ca1afd66de..7763e6073c7 100644 --- a/addons/email_template/i18n/ro.po +++ b/addons/email_template/i18n/ro.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/ru.po b/addons/email_template/i18n/ru.po index d58df2076c3..e12ebd076cc 100644 --- a/addons/email_template/i18n/ru.po +++ b/addons/email_template/i18n/ru.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/sl.po b/addons/email_template/i18n/sl.po index 04087aed469..e604130416c 100644 --- a/addons/email_template/i18n/sl.po +++ b/addons/email_template/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/sr.po b/addons/email_template/i18n/sr.po index 1a2fbead36e..1537ad3cf1f 100644 --- a/addons/email_template/i18n/sr.po +++ b/addons/email_template/i18n/sr.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/sr@latin.po b/addons/email_template/i18n/sr@latin.po index 9c9bb2ff1f7..7cadb7b9401 100644 --- a/addons/email_template/i18n/sr@latin.po +++ b/addons/email_template/i18n/sr@latin.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/sv.po b/addons/email_template/i18n/sv.po index bae12e6eb44..d2e8a432fcd 100644 --- a/addons/email_template/i18n/sv.po +++ b/addons/email_template/i18n/sv.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/tr.po b/addons/email_template/i18n/tr.po index 62e61e86c68..f9769d53717 100644 --- a/addons/email_template/i18n/tr.po +++ b/addons/email_template/i18n/tr.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/zh_CN.po b/addons/email_template/i18n/zh_CN.po index ed21b4de79c..7fcb7c216cf 100644 --- a/addons/email_template/i18n/zh_CN.po +++ b/addons/email_template/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/email_template/i18n/zh_TW.po b/addons/email_template/i18n/zh_TW.po index f94ba007b58..b3eab84d7b2 100644 --- a/addons/email_template/i18n/zh_TW.po +++ b/addons/email_template/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: email_template diff --git a/addons/event/i18n/ar.po b/addons/event/i18n/ar.po index 407e5071717..77775751956 100644 --- a/addons/event/i18n/ar.po +++ b/addons/event/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/bg.po b/addons/event/i18n/bg.po index e5fceb88726..ff2da9a3971 100644 --- a/addons/event/i18n/bg.po +++ b/addons/event/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/bs.po b/addons/event/i18n/bs.po index b3b874c7b5d..323b27f2896 100644 --- a/addons/event/i18n/bs.po +++ b/addons/event/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/ca.po b/addons/event/i18n/ca.po index 032fb68e2a1..55b16b7b10f 100644 --- a/addons/event/i18n/ca.po +++ b/addons/event/i18n/ca.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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/cs.po b/addons/event/i18n/cs.po index 27e9624e5ea..5887b9729db 100644 --- a/addons/event/i18n/cs.po +++ b/addons/event/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/event/i18n/da.po b/addons/event/i18n/da.po index c56c6ae07d3..9f4d9dd55b0 100644 --- a/addons/event/i18n/da.po +++ b/addons/event/i18n/da.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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/de.po b/addons/event/i18n/de.po index 41481c062e2..045df32f950 100644 --- a/addons/event/i18n/de.po +++ b/addons/event/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/el.po b/addons/event/i18n/el.po index f6fa8e4b6f0..c09763833ed 100644 --- a/addons/event/i18n/el.po +++ b/addons/event/i18n/el.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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/es.po b/addons/event/i18n/es.po index cc1c79c604b..2de327d5323 100644 --- a/addons/event/i18n/es.po +++ b/addons/event/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/es_AR.po b/addons/event/i18n/es_AR.po index e703e9d466c..8c416e87b5d 100644 --- a/addons/event/i18n/es_AR.po +++ b/addons/event/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/es_CR.po b/addons/event/i18n/es_CR.po index 8aa4ba7f37f..44e182e20a3 100644 --- a/addons/event/i18n/es_CR.po +++ b/addons/event/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/event/i18n/es_EC.po b/addons/event/i18n/es_EC.po index 6bc9d3f9157..b5f1d69275d 100644 --- a/addons/event/i18n/es_EC.po +++ b/addons/event/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/et.po b/addons/event/i18n/et.po index b65314afd1a..61d6d4c74e7 100644 --- a/addons/event/i18n/et.po +++ b/addons/event/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/fi.po b/addons/event/i18n/fi.po index bbc79157ccb..ed16411d846 100644 --- a/addons/event/i18n/fi.po +++ b/addons/event/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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/fr.po b/addons/event/i18n/fr.po index cb9e9c027a6..af882d2b2d4 100644 --- a/addons/event/i18n/fr.po +++ b/addons/event/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/gu.po b/addons/event/i18n/gu.po index b7fe81ac480..84b5a128031 100644 --- a/addons/event/i18n/gu.po +++ b/addons/event/i18n/gu.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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/hi.po b/addons/event/i18n/hi.po index 072a78ddf70..0bd72ae0444 100644 --- a/addons/event/i18n/hi.po +++ b/addons/event/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/hr.po b/addons/event/i18n/hr.po index 3bf3256a6fb..a5fdd4780ce 100644 --- a/addons/event/i18n/hr.po +++ b/addons/event/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/hu.po b/addons/event/i18n/hu.po index 93db8fcd33f..0b6576a91e6 100644 --- a/addons/event/i18n/hu.po +++ b/addons/event/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/id.po b/addons/event/i18n/id.po index 28383c02dac..ff12c876db5 100644 --- a/addons/event/i18n/id.po +++ b/addons/event/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/it.po b/addons/event/i18n/it.po index 7e51b124c02..e1837c72fde 100644 --- a/addons/event/i18n/it.po +++ b/addons/event/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/ja.po b/addons/event/i18n/ja.po index 9e911bf4844..934037de5eb 100644 --- a/addons/event/i18n/ja.po +++ b/addons/event/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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/ko.po b/addons/event/i18n/ko.po index 067e5901a6c..7fd54f1ebe4 100644 --- a/addons/event/i18n/ko.po +++ b/addons/event/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/lt.po b/addons/event/i18n/lt.po index 3672d13ac51..a49c4c06527 100644 --- a/addons/event/i18n/lt.po +++ b/addons/event/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/mk.po b/addons/event/i18n/mk.po index 1f02d716833..3623eff93d6 100644 --- a/addons/event/i18n/mk.po +++ b/addons/event/i18n/mk.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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/mn.po b/addons/event/i18n/mn.po index 6d54c6802be..3bd8970d936 100644 --- a/addons/event/i18n/mn.po +++ b/addons/event/i18n/mn.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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/nb.po b/addons/event/i18n/nb.po index 12ca2df7a60..acbc90555bc 100644 --- a/addons/event/i18n/nb.po +++ b/addons/event/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/nl.po b/addons/event/i18n/nl.po index b1c5851bedd..e68cb6fc5c8 100644 --- a/addons/event/i18n/nl.po +++ b/addons/event/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event @@ -101,7 +101,7 @@ msgstr "Bedrijf" #: field:event.event,email_confirmation_id:0 #: field:event.type,default_email_event:0 msgid "Event Confirmation Email" -msgstr "Evenement bevestign e-mail" +msgstr "Evenement bevestiging e-mail" #. module: event #: field:event.type,default_registration_max:0 diff --git a/addons/event/i18n/nl_BE.po b/addons/event/i18n/nl_BE.po index e7f6b6a52a9..a1fe17f1a54 100644 --- a/addons/event/i18n/nl_BE.po +++ b/addons/event/i18n/nl_BE.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/pl.po b/addons/event/i18n/pl.po index 90291aedaa2..98c7eb3adb6 100644 --- a/addons/event/i18n/pl.po +++ b/addons/event/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/pt.po b/addons/event/i18n/pt.po index 4b29f65a162..6359b654335 100644 --- a/addons/event/i18n/pt.po +++ b/addons/event/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/pt_BR.po b/addons/event/i18n/pt_BR.po index c68178b2641..d8e81e6e0f9 100644 --- a/addons/event/i18n/pt_BR.po +++ b/addons/event/i18n/pt_BR.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/ro.po b/addons/event/i18n/ro.po index f23ad61b0fc..7d775f8005b 100644 --- a/addons/event/i18n/ro.po +++ b/addons/event/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/ru.po b/addons/event/i18n/ru.po index 2223d7f1816..6114a117180 100644 --- a/addons/event/i18n/ru.po +++ b/addons/event/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/sk.po b/addons/event/i18n/sk.po index 28567a0dcdd..2a0fe45e3dd 100644 --- a/addons/event/i18n/sk.po +++ b/addons/event/i18n/sk.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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/sl.po b/addons/event/i18n/sl.po index f0615cf1b9b..cd3070f4105 100644 --- a/addons/event/i18n/sl.po +++ b/addons/event/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/sq.po b/addons/event/i18n/sq.po index 13b434294f2..89751fe8fda 100644 --- a/addons/event/i18n/sq.po +++ b/addons/event/i18n/sq.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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/sr.po b/addons/event/i18n/sr.po index 6a3174a3536..a79502c3d98 100644 --- a/addons/event/i18n/sr.po +++ b/addons/event/i18n/sr.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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/sr@latin.po b/addons/event/i18n/sr@latin.po index c0d01c1d938..7314ab537e1 100644 --- a/addons/event/i18n/sr@latin.po +++ b/addons/event/i18n/sr@latin.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/sv.po b/addons/event/i18n/sv.po index 6920541657b..cd7ea47b219 100644 --- a/addons/event/i18n/sv.po +++ b/addons/event/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/tlh.po b/addons/event/i18n/tlh.po index fa645a11b84..8ac406afe05 100644 --- a/addons/event/i18n/tlh.po +++ b/addons/event/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/tr.po b/addons/event/i18n/tr.po index 01f113eec50..52e55519180 100644 --- a/addons/event/i18n/tr.po +++ b/addons/event/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/uk.po b/addons/event/i18n/uk.po index fa29774a5f4..dd422c76aa5 100644 --- a/addons/event/i18n/uk.po +++ b/addons/event/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/vi.po b/addons/event/i18n/vi.po index 66fcaa12009..13c8a8edb14 100644 --- a/addons/event/i18n/vi.po +++ b/addons/event/i18n/vi.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/zh_CN.po b/addons/event/i18n/zh_CN.po index 393d1b4372a..19c3a1bb17a 100644 --- a/addons/event/i18n/zh_CN.po +++ b/addons/event/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event/i18n/zh_TW.po b/addons/event/i18n/zh_TW.po index 0fcecc79c18..f464c225076 100644 --- a/addons/event/i18n/zh_TW.po +++ b/addons/event/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event diff --git a/addons/event_moodle/i18n/de.po b/addons/event_moodle/i18n/de.po index fecaf505c53..4472670e90c 100644 --- a/addons/event_moodle/i18n/de.po +++ b/addons/event_moodle/i18n/de.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle diff --git a/addons/event_moodle/i18n/es.po b/addons/event_moodle/i18n/es.po index f2854f5fe7a..b22bdf9610e 100644 --- a/addons/event_moodle/i18n/es.po +++ b/addons/event_moodle/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle diff --git a/addons/event_moodle/i18n/fr.po b/addons/event_moodle/i18n/fr.po index f6676b7b15c..1a9b21bb6f6 100644 --- a/addons/event_moodle/i18n/fr.po +++ b/addons/event_moodle/i18n/fr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle diff --git a/addons/event_moodle/i18n/hr.po b/addons/event_moodle/i18n/hr.po index 597e837d1e8..84301e263b2 100644 --- a/addons/event_moodle/i18n/hr.po +++ b/addons/event_moodle/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle diff --git a/addons/event_moodle/i18n/hu.po b/addons/event_moodle/i18n/hu.po index 43fdd5022f1..417aea319a9 100644 --- a/addons/event_moodle/i18n/hu.po +++ b/addons/event_moodle/i18n/hu.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle diff --git a/addons/event_moodle/i18n/mk.po b/addons/event_moodle/i18n/mk.po index 8e53abaaec9..dd592ac188e 100644 --- a/addons/event_moodle/i18n/mk.po +++ b/addons/event_moodle/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle diff --git a/addons/event_moodle/i18n/mn.po b/addons/event_moodle/i18n/mn.po index d8834c73cee..b206521ebdc 100644 --- a/addons/event_moodle/i18n/mn.po +++ b/addons/event_moodle/i18n/mn.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle diff --git a/addons/event_moodle/i18n/nl.po b/addons/event_moodle/i18n/nl.po index a734de2f762..70969d19350 100644 --- a/addons/event_moodle/i18n/nl.po +++ b/addons/event_moodle/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle @@ -129,7 +129,7 @@ msgstr "Moodle gebruikersnaam" #: view:event.moodle.config.wiz:0 #: model:ir.actions.act_window,name:event_moodle.configure_moodle msgid "Configure Moodle" -msgstr "Monocle instellen" +msgstr "Moodle instellen" #. module: event_moodle #: field:event.moodle.config.wiz,moodle_token:0 diff --git a/addons/event_moodle/i18n/pt.po b/addons/event_moodle/i18n/pt.po index 437a6fc0893..721abde265d 100644 --- a/addons/event_moodle/i18n/pt.po +++ b/addons/event_moodle/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle diff --git a/addons/event_moodle/i18n/pt_BR.po b/addons/event_moodle/i18n/pt_BR.po index 5e467511552..35949b35ba6 100644 --- a/addons/event_moodle/i18n/pt_BR.po +++ b/addons/event_moodle/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle diff --git a/addons/event_moodle/i18n/ro.po b/addons/event_moodle/i18n/ro.po index 00173b64bdc..8ed23b31e65 100644 --- a/addons/event_moodle/i18n/ro.po +++ b/addons/event_moodle/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle diff --git a/addons/event_moodle/i18n/sl.po b/addons/event_moodle/i18n/sl.po index 4e08d192210..7c2d4bb4652 100644 --- a/addons/event_moodle/i18n/sl.po +++ b/addons/event_moodle/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle diff --git a/addons/event_moodle/i18n/tr.po b/addons/event_moodle/i18n/tr.po index 214b8a4cb24..4ba27033de7 100644 --- a/addons/event_moodle/i18n/tr.po +++ b/addons/event_moodle/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle diff --git a/addons/event_moodle/i18n/zh_CN.po b/addons/event_moodle/i18n/zh_CN.po index 29d2f41a1f4..34bb1f9d4ce 100644 --- a/addons/event_moodle/i18n/zh_CN.po +++ b/addons/event_moodle/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_moodle diff --git a/addons/event_sale/i18n/ar.po b/addons/event_sale/i18n/ar.po index 98842668d41..3ded680ab53 100644 --- a/addons/event_sale/i18n/ar.po +++ b/addons/event_sale/i18n/ar.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/de.po b/addons/event_sale/i18n/de.po index a786d411b4b..0184e34522d 100644 --- a/addons/event_sale/i18n/de.po +++ b/addons/event_sale/i18n/de.po @@ -15,7 +15,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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/es.po b/addons/event_sale/i18n/es.po index 247f48fb8f5..0a7c322d184 100644 --- a/addons/event_sale/i18n/es.po +++ b/addons/event_sale/i18n/es.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/fr.po b/addons/event_sale/i18n/fr.po index 4ac20d84f3a..99020c10b1f 100644 --- a/addons/event_sale/i18n/fr.po +++ b/addons/event_sale/i18n/fr.po @@ -15,7 +15,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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/hr.po b/addons/event_sale/i18n/hr.po index e1f3a5cc3b4..5f99b76a38d 100644 --- a/addons/event_sale/i18n/hr.po +++ b/addons/event_sale/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/hu.po b/addons/event_sale/i18n/hu.po index e474fcde6a5..af3fc462ec3 100644 --- a/addons/event_sale/i18n/hu.po +++ b/addons/event_sale/i18n/hu.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/it.po b/addons/event_sale/i18n/it.po index 05dcf121a4f..905c3a789ec 100644 --- a/addons/event_sale/i18n/it.po +++ b/addons/event_sale/i18n/it.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/mk.po b/addons/event_sale/i18n/mk.po index 899c63f2380..ef369d97faa 100644 --- a/addons/event_sale/i18n/mk.po +++ b/addons/event_sale/i18n/mk.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/mn.po b/addons/event_sale/i18n/mn.po index 71fa4d4025c..85f356f55f3 100644 --- a/addons/event_sale/i18n/mn.po +++ b/addons/event_sale/i18n/mn.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/nl.po b/addons/event_sale/i18n/nl.po index e5b870c5c33..88ef9b423e0 100644 --- a/addons/event_sale/i18n/nl.po +++ b/addons/event_sale/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/pl.po b/addons/event_sale/i18n/pl.po index 6b773f49a0d..d3d0b717f6d 100644 --- a/addons/event_sale/i18n/pl.po +++ b/addons/event_sale/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/pt.po b/addons/event_sale/i18n/pt.po index c735bb7fc9f..545eab2ad01 100644 --- a/addons/event_sale/i18n/pt.po +++ b/addons/event_sale/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/pt_BR.po b/addons/event_sale/i18n/pt_BR.po index 91989b70911..df92bf46f98 100644 --- a/addons/event_sale/i18n/pt_BR.po +++ b/addons/event_sale/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/ro.po b/addons/event_sale/i18n/ro.po index fdaa5b34f7a..ad500924678 100644 --- a/addons/event_sale/i18n/ro.po +++ b/addons/event_sale/i18n/ro.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/sl.po b/addons/event_sale/i18n/sl.po index 71f69b80dd1..80ed1925ca5 100644 --- a/addons/event_sale/i18n/sl.po +++ b/addons/event_sale/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/tr.po b/addons/event_sale/i18n/tr.po index c7559b5ae9b..c32bcdfa7d1 100644 --- a/addons/event_sale/i18n/tr.po +++ b/addons/event_sale/i18n/tr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/event_sale/i18n/zh_CN.po b/addons/event_sale/i18n/zh_CN.po index 85092d81f36..d663480d7cc 100644 --- a/addons/event_sale/i18n/zh_CN.po +++ b/addons/event_sale/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: event_sale diff --git a/addons/fetchmail/i18n/ar.po b/addons/fetchmail/i18n/ar.po index c2665d8f2e0..beec768d9a2 100644 --- a/addons/fetchmail/i18n/ar.po +++ b/addons/fetchmail/i18n/ar.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/bg.po b/addons/fetchmail/i18n/bg.po index d70f05c1e51..2b501361a7f 100644 --- a/addons/fetchmail/i18n/bg.po +++ b/addons/fetchmail/i18n/bg.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/ca.po b/addons/fetchmail/i18n/ca.po index f33f0c9e284..a123c10438c 100644 --- a/addons/fetchmail/i18n/ca.po +++ b/addons/fetchmail/i18n/ca.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/da.po b/addons/fetchmail/i18n/da.po index 7535e783999..ac94b42e9e8 100644 --- a/addons/fetchmail/i18n/da.po +++ b/addons/fetchmail/i18n/da.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/de.po b/addons/fetchmail/i18n/de.po index a1ebdcbe9fc..547a85fbe75 100644 --- a/addons/fetchmail/i18n/de.po +++ b/addons/fetchmail/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/el.po b/addons/fetchmail/i18n/el.po index 08dbb899104..a3f2a97985e 100644 --- a/addons/fetchmail/i18n/el.po +++ b/addons/fetchmail/i18n/el.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/en_GB.po b/addons/fetchmail/i18n/en_GB.po index c2d0a0b8670..ae80650fcee 100644 --- a/addons/fetchmail/i18n/en_GB.po +++ b/addons/fetchmail/i18n/en_GB.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/es.po b/addons/fetchmail/i18n/es.po index c9c99012bd6..d2d84e29be6 100644 --- a/addons/fetchmail/i18n/es.po +++ b/addons/fetchmail/i18n/es.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/es_CR.po b/addons/fetchmail/i18n/es_CR.po index 24126c37009..a1f120dae91 100644 --- a/addons/fetchmail/i18n/es_CR.po +++ b/addons/fetchmail/i18n/es_CR.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/fetchmail/i18n/et.po b/addons/fetchmail/i18n/et.po index f1be4002632..04da0ae447c 100644 --- a/addons/fetchmail/i18n/et.po +++ b/addons/fetchmail/i18n/et.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/fi.po b/addons/fetchmail/i18n/fi.po index 098ccffa14e..b49db3dbc33 100644 --- a/addons/fetchmail/i18n/fi.po +++ b/addons/fetchmail/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/fr.po b/addons/fetchmail/i18n/fr.po index 4737529365c..66ace2a8656 100644 --- a/addons/fetchmail/i18n/fr.po +++ b/addons/fetchmail/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/gl.po b/addons/fetchmail/i18n/gl.po index 169b4f3feaf..496614c94dd 100644 --- a/addons/fetchmail/i18n/gl.po +++ b/addons/fetchmail/i18n/gl.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/hr.po b/addons/fetchmail/i18n/hr.po index 52f7ab1bfa3..16efd685752 100644 --- a/addons/fetchmail/i18n/hr.po +++ b/addons/fetchmail/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/hu.po b/addons/fetchmail/i18n/hu.po index a685b5289df..84edf4bd32d 100644 --- a/addons/fetchmail/i18n/hu.po +++ b/addons/fetchmail/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/it.po b/addons/fetchmail/i18n/it.po index d551417c45f..0b7bf0672c0 100644 --- a/addons/fetchmail/i18n/it.po +++ b/addons/fetchmail/i18n/it.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/ja.po b/addons/fetchmail/i18n/ja.po index 9164326ccaa..65cf6a9d34f 100644 --- a/addons/fetchmail/i18n/ja.po +++ b/addons/fetchmail/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/lt.po b/addons/fetchmail/i18n/lt.po index bee13f8bd6d..97b39d903dc 100644 --- a/addons/fetchmail/i18n/lt.po +++ b/addons/fetchmail/i18n/lt.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/lv.po b/addons/fetchmail/i18n/lv.po index d940311d7c7..98c6189f4f7 100644 --- a/addons/fetchmail/i18n/lv.po +++ b/addons/fetchmail/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/mk.po b/addons/fetchmail/i18n/mk.po index 37e284d28ce..e7faa720f92 100644 --- a/addons/fetchmail/i18n/mk.po +++ b/addons/fetchmail/i18n/mk.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/mn.po b/addons/fetchmail/i18n/mn.po index aa8910988a5..602fa43ef9e 100644 --- a/addons/fetchmail/i18n/mn.po +++ b/addons/fetchmail/i18n/mn.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/nb.po b/addons/fetchmail/i18n/nb.po index 600fefea83c..518666d3365 100644 --- a/addons/fetchmail/i18n/nb.po +++ b/addons/fetchmail/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/nl.po b/addons/fetchmail/i18n/nl.po index eb0f1723f31..514265561f8 100644 --- a/addons/fetchmail/i18n/nl.po +++ b/addons/fetchmail/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/pl.po b/addons/fetchmail/i18n/pl.po index 6f92a7097a2..61077e3d175 100644 --- a/addons/fetchmail/i18n/pl.po +++ b/addons/fetchmail/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/pt.po b/addons/fetchmail/i18n/pt.po index e21169ac720..679ad12625f 100644 --- a/addons/fetchmail/i18n/pt.po +++ b/addons/fetchmail/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/pt_BR.po b/addons/fetchmail/i18n/pt_BR.po index a5d1bfa91fb..53d938a7cc6 100644 --- a/addons/fetchmail/i18n/pt_BR.po +++ b/addons/fetchmail/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/ro.po b/addons/fetchmail/i18n/ro.po index 50547d58fac..879ed18f23b 100644 --- a/addons/fetchmail/i18n/ro.po +++ b/addons/fetchmail/i18n/ro.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/ru.po b/addons/fetchmail/i18n/ru.po index 639e418c33c..1051373a3a6 100644 --- a/addons/fetchmail/i18n/ru.po +++ b/addons/fetchmail/i18n/ru.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/sl.po b/addons/fetchmail/i18n/sl.po index 5dc2d4ee3ff..788e27998f2 100644 --- a/addons/fetchmail/i18n/sl.po +++ b/addons/fetchmail/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/sr.po b/addons/fetchmail/i18n/sr.po index 806ee83ff60..bc47eedc887 100644 --- a/addons/fetchmail/i18n/sr.po +++ b/addons/fetchmail/i18n/sr.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/sr@latin.po b/addons/fetchmail/i18n/sr@latin.po index 2e2347851a8..e7991a78f7d 100644 --- a/addons/fetchmail/i18n/sr@latin.po +++ b/addons/fetchmail/i18n/sr@latin.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/sv.po b/addons/fetchmail/i18n/sv.po index 466edab31dc..2ff3d2e10e2 100644 --- a/addons/fetchmail/i18n/sv.po +++ b/addons/fetchmail/i18n/sv.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/tr.po b/addons/fetchmail/i18n/tr.po index f3e716b872d..e381cc32631 100644 --- a/addons/fetchmail/i18n/tr.po +++ b/addons/fetchmail/i18n/tr.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/vi.po b/addons/fetchmail/i18n/vi.po index 6b1e015755c..deea096d772 100644 --- a/addons/fetchmail/i18n/vi.po +++ b/addons/fetchmail/i18n/vi.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/zh_CN.po b/addons/fetchmail/i18n/zh_CN.po index bd0a8d271d2..0f28db735ed 100644 --- a/addons/fetchmail/i18n/zh_CN.po +++ b/addons/fetchmail/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fetchmail diff --git a/addons/fleet/i18n/ar.po b/addons/fleet/i18n/ar.po index 83e7b87834d..1b973379904 100644 --- a/addons/fleet/i18n/ar.po +++ b/addons/fleet/i18n/ar.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/cs.po b/addons/fleet/i18n/cs.po index 07d6ffa4a96..d5eb3e0e923 100644 --- a/addons/fleet/i18n/cs.po +++ b/addons/fleet/i18n/cs.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/de.po b/addons/fleet/i18n/de.po index e4b363067f8..f9f0523056e 100644 --- a/addons/fleet/i18n/de.po +++ b/addons/fleet/i18n/de.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/es.po b/addons/fleet/i18n/es.po index 927098197fd..6f8128e616c 100644 --- a/addons/fleet/i18n/es.po +++ b/addons/fleet/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/es_MX.po b/addons/fleet/i18n/es_MX.po index e92cc7359fb..c27f1320bc9 100644 --- a/addons/fleet/i18n/es_MX.po +++ b/addons/fleet/i18n/es_MX.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/fr.po b/addons/fleet/i18n/fr.po index 8a1242323aa..d98a5fc3cd2 100644 --- a/addons/fleet/i18n/fr.po +++ b/addons/fleet/i18n/fr.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/hr.po b/addons/fleet/i18n/hr.po index 272cc31afa0..2e53ebb970a 100644 --- a/addons/fleet/i18n/hr.po +++ b/addons/fleet/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/it.po b/addons/fleet/i18n/it.po index 92f764c885a..7b4d468cc80 100644 --- a/addons/fleet/i18n/it.po +++ b/addons/fleet/i18n/it.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/lv.po b/addons/fleet/i18n/lv.po index 70f6e50ca48..6f9d57156fe 100644 --- a/addons/fleet/i18n/lv.po +++ b/addons/fleet/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/mk.po b/addons/fleet/i18n/mk.po index 5d953750b8e..3386045b42a 100644 --- a/addons/fleet/i18n/mk.po +++ b/addons/fleet/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/mn.po b/addons/fleet/i18n/mn.po index 5f0e47e8ff7..183f25375ed 100644 --- a/addons/fleet/i18n/mn.po +++ b/addons/fleet/i18n/mn.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/nl.po b/addons/fleet/i18n/nl.po index f86fea55362..c6a3639201a 100644 --- a/addons/fleet/i18n/nl.po +++ b/addons/fleet/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/pl.po b/addons/fleet/i18n/pl.po index e3ff88ff98a..8f0efbda841 100644 --- a/addons/fleet/i18n/pl.po +++ b/addons/fleet/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/pt.po b/addons/fleet/i18n/pt.po index cf3dd0bd6d6..1f12cfaac21 100644 --- a/addons/fleet/i18n/pt.po +++ b/addons/fleet/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/pt_BR.po b/addons/fleet/i18n/pt_BR.po index ef3e91f2651..40817bc7e14 100644 --- a/addons/fleet/i18n/pt_BR.po +++ b/addons/fleet/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/ro.po b/addons/fleet/i18n/ro.po index a4e1f605bf9..7707e666be9 100644 --- a/addons/fleet/i18n/ro.po +++ b/addons/fleet/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/ru.po b/addons/fleet/i18n/ru.po index 96a6e0958d4..9bf230b6e65 100644 --- a/addons/fleet/i18n/ru.po +++ b/addons/fleet/i18n/ru.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/sl.po b/addons/fleet/i18n/sl.po index 10ae22fbdb4..49fda81361b 100644 --- a/addons/fleet/i18n/sl.po +++ b/addons/fleet/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/sv.po b/addons/fleet/i18n/sv.po index 82569c0dd80..0f7ac4d079a 100644 --- a/addons/fleet/i18n/sv.po +++ b/addons/fleet/i18n/sv.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/tr.po b/addons/fleet/i18n/tr.po index 7edd5a9e445..b74cce7224f 100644 --- a/addons/fleet/i18n/tr.po +++ b/addons/fleet/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/fleet/i18n/zh_CN.po b/addons/fleet/i18n/zh_CN.po index 7c653a79211..d2f0163b8e1 100644 --- a/addons/fleet/i18n/zh_CN.po +++ b/addons/fleet/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: fleet diff --git a/addons/google_base_account/i18n/ar.po b/addons/google_base_account/i18n/ar.po index 325ad8a568b..8b50222e7fd 100644 --- a/addons/google_base_account/i18n/ar.po +++ b/addons/google_base_account/i18n/ar.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/de.po b/addons/google_base_account/i18n/de.po index 20849d8bc73..a2afe2ed641 100644 --- a/addons/google_base_account/i18n/de.po +++ b/addons/google_base_account/i18n/de.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/es.po b/addons/google_base_account/i18n/es.po index 6205ec0c0a1..12d3a955773 100644 --- a/addons/google_base_account/i18n/es.po +++ b/addons/google_base_account/i18n/es.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/es_CR.po b/addons/google_base_account/i18n/es_CR.po index 4ff9c872bc3..f53b0edd0ba 100644 --- a/addons/google_base_account/i18n/es_CR.po +++ b/addons/google_base_account/i18n/es_CR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/fi.po b/addons/google_base_account/i18n/fi.po index 79d973edc17..08cd7b27a26 100644 --- a/addons/google_base_account/i18n/fi.po +++ b/addons/google_base_account/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/fr.po b/addons/google_base_account/i18n/fr.po index bcaa1153cce..5412c312248 100644 --- a/addons/google_base_account/i18n/fr.po +++ b/addons/google_base_account/i18n/fr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/hr.po b/addons/google_base_account/i18n/hr.po index b25ba38c423..5c97ba69f40 100644 --- a/addons/google_base_account/i18n/hr.po +++ b/addons/google_base_account/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/hu.po b/addons/google_base_account/i18n/hu.po index 4e9535333a1..7b9402f9c14 100644 --- a/addons/google_base_account/i18n/hu.po +++ b/addons/google_base_account/i18n/hu.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/it.po b/addons/google_base_account/i18n/it.po index da92b664265..b6d9966b6fb 100644 --- a/addons/google_base_account/i18n/it.po +++ b/addons/google_base_account/i18n/it.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/ja.po b/addons/google_base_account/i18n/ja.po index 0fc8b69b4bb..a7e17dc2807 100644 --- a/addons/google_base_account/i18n/ja.po +++ b/addons/google_base_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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/mk.po b/addons/google_base_account/i18n/mk.po index ae870f7b1b2..2a1a6d43907 100644 --- a/addons/google_base_account/i18n/mk.po +++ b/addons/google_base_account/i18n/mk.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/mn.po b/addons/google_base_account/i18n/mn.po index 0ca9f9e46df..799b73b1212 100644 --- a/addons/google_base_account/i18n/mn.po +++ b/addons/google_base_account/i18n/mn.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/nb.po b/addons/google_base_account/i18n/nb.po index 6ee8bf31a8a..20517c237f9 100644 --- a/addons/google_base_account/i18n/nb.po +++ b/addons/google_base_account/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/nl.po b/addons/google_base_account/i18n/nl.po index 07880bfb12d..ae65247a102 100644 --- a/addons/google_base_account/i18n/nl.po +++ b/addons/google_base_account/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/pl.po b/addons/google_base_account/i18n/pl.po index 76696a5e8e2..191311a381d 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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/pt.po b/addons/google_base_account/i18n/pt.po index 681a248b8d4..b193ccbbf2e 100644 --- a/addons/google_base_account/i18n/pt.po +++ b/addons/google_base_account/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/pt_BR.po b/addons/google_base_account/i18n/pt_BR.po index 93dfdb6996a..e1e3a5dcd3a 100644 --- a/addons/google_base_account/i18n/pt_BR.po +++ b/addons/google_base_account/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/ro.po b/addons/google_base_account/i18n/ro.po index 77be5f99799..9edbbfa4162 100644 --- a/addons/google_base_account/i18n/ro.po +++ b/addons/google_base_account/i18n/ro.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/ru.po b/addons/google_base_account/i18n/ru.po index 1a0ec4a9379..0959f6d2b8c 100644 --- a/addons/google_base_account/i18n/ru.po +++ b/addons/google_base_account/i18n/ru.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/sl.po b/addons/google_base_account/i18n/sl.po index b9beccabe3c..8a394cbd034 100644 --- a/addons/google_base_account/i18n/sl.po +++ b/addons/google_base_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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/sr@latin.po b/addons/google_base_account/i18n/sr@latin.po index cff33693a5e..0906b76f96c 100644 --- a/addons/google_base_account/i18n/sr@latin.po +++ b/addons/google_base_account/i18n/sr@latin.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/sv.po b/addons/google_base_account/i18n/sv.po index 55be5e6e433..2165be12c75 100644 --- a/addons/google_base_account/i18n/sv.po +++ b/addons/google_base_account/i18n/sv.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/tr.po b/addons/google_base_account/i18n/tr.po index 91b10643f79..467b1493efa 100644 --- a/addons/google_base_account/i18n/tr.po +++ b/addons/google_base_account/i18n/tr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_base_account/i18n/zh_CN.po b/addons/google_base_account/i18n/zh_CN.po index 6100f88f879..3a298413560 100644 --- a/addons/google_base_account/i18n/zh_CN.po +++ b/addons/google_base_account/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_base_account diff --git a/addons/google_docs/i18n/ar.po b/addons/google_docs/i18n/ar.po index bcfb94f25f8..bf8df78b926 100644 --- a/addons/google_docs/i18n/ar.po +++ b/addons/google_docs/i18n/ar.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/de.po b/addons/google_docs/i18n/de.po index 7b25f091008..017a0860244 100644 --- a/addons/google_docs/i18n/de.po +++ b/addons/google_docs/i18n/de.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/es.po b/addons/google_docs/i18n/es.po index 8d61f6832ba..71bb08ece9a 100644 --- a/addons/google_docs/i18n/es.po +++ b/addons/google_docs/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/fr.po b/addons/google_docs/i18n/fr.po index 3f0bfa36353..cf9ffdaccc8 100644 --- a/addons/google_docs/i18n/fr.po +++ b/addons/google_docs/i18n/fr.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/hr.po b/addons/google_docs/i18n/hr.po index c7e01e107cb..ac1a64cd1e2 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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/hu.po b/addons/google_docs/i18n/hu.po index c3270fa29f7..344e01173a9 100644 --- a/addons/google_docs/i18n/hu.po +++ b/addons/google_docs/i18n/hu.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/it.po b/addons/google_docs/i18n/it.po index 153ac5286b8..2eca676d6c7 100644 --- a/addons/google_docs/i18n/it.po +++ b/addons/google_docs/i18n/it.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/mk.po b/addons/google_docs/i18n/mk.po index 4ec622126bc..1dfd2120b5b 100644 --- a/addons/google_docs/i18n/mk.po +++ b/addons/google_docs/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/mn.po b/addons/google_docs/i18n/mn.po index 07219187699..68380d3592f 100644 --- a/addons/google_docs/i18n/mn.po +++ b/addons/google_docs/i18n/mn.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/nl.po b/addons/google_docs/i18n/nl.po index a1721d2849e..91b4d963e01 100644 --- a/addons/google_docs/i18n/nl.po +++ b/addons/google_docs/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/pl.po b/addons/google_docs/i18n/pl.po index 1c7f610f138..dcd97078a6f 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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/pt.po b/addons/google_docs/i18n/pt.po index 6432735abef..1539bcbedb6 100644 --- a/addons/google_docs/i18n/pt.po +++ b/addons/google_docs/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/pt_BR.po b/addons/google_docs/i18n/pt_BR.po index c15f7a6abb2..38e3c400c25 100644 --- a/addons/google_docs/i18n/pt_BR.po +++ b/addons/google_docs/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/ro.po b/addons/google_docs/i18n/ro.po index 052115a840e..716b970f190 100644 --- a/addons/google_docs/i18n/ro.po +++ b/addons/google_docs/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/ru.po b/addons/google_docs/i18n/ru.po index 1f34f8fa1b4..33f24ed557f 100644 --- a/addons/google_docs/i18n/ru.po +++ b/addons/google_docs/i18n/ru.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/sl.po b/addons/google_docs/i18n/sl.po index 4daf800273c..a93afe16703 100644 --- a/addons/google_docs/i18n/sl.po +++ b/addons/google_docs/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/sv.po b/addons/google_docs/i18n/sv.po index 21d32b8a1d9..24e7c63ea39 100644 --- a/addons/google_docs/i18n/sv.po +++ b/addons/google_docs/i18n/sv.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/tr.po b/addons/google_docs/i18n/tr.po index c2f3f7b9bd2..349d71a96b8 100644 --- a/addons/google_docs/i18n/tr.po +++ b/addons/google_docs/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/google_docs/i18n/zh_CN.po b/addons/google_docs/i18n/zh_CN.po index f88f41788ea..3ca3b5cadf9 100644 --- a/addons/google_docs/i18n/zh_CN.po +++ b/addons/google_docs/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: google_docs diff --git a/addons/hr/i18n/ar.po b/addons/hr/i18n/ar.po index 2f4e0cbb295..a7660b6dda6 100644 --- a/addons/hr/i18n/ar.po +++ b/addons/hr/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/bg.po b/addons/hr/i18n/bg.po index 1f460f3f2c2..a13c3914f66 100644 --- a/addons/hr/i18n/bg.po +++ b/addons/hr/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/bn.po b/addons/hr/i18n/bn.po index 5b0691a5f7f..71e21496d38 100644 --- a/addons/hr/i18n/bn.po +++ b/addons/hr/i18n/bn.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/bs.po b/addons/hr/i18n/bs.po index 559b4fe9e30..81b798982c1 100644 --- a/addons/hr/i18n/bs.po +++ b/addons/hr/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/ca.po b/addons/hr/i18n/ca.po index 1f4b06e2a46..651827656f6 100644 --- a/addons/hr/i18n/ca.po +++ b/addons/hr/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/cs.po b/addons/hr/i18n/cs.po index 268ecefdfe9..6c8288946c8 100644 --- a/addons/hr/i18n/cs.po +++ b/addons/hr/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/hr/i18n/da.po b/addons/hr/i18n/da.po index af5cab7cb27..5a47fa22c30 100644 --- a/addons/hr/i18n/da.po +++ b/addons/hr/i18n/da.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/de.po b/addons/hr/i18n/de.po index a0e816b6d5e..20b4cd24d30 100644 --- a/addons/hr/i18n/de.po +++ b/addons/hr/i18n/de.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/el.po b/addons/hr/i18n/el.po index fbe22e4545f..09423f8b0de 100644 --- a/addons/hr/i18n/el.po +++ b/addons/hr/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/hr/i18n/en_AU.po b/addons/hr/i18n/en_AU.po index cb2bf7ddf1f..8ebf76da0e1 100644 --- a/addons/hr/i18n/en_AU.po +++ b/addons/hr/i18n/en_AU.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/en_GB.po b/addons/hr/i18n/en_GB.po index f8aa4463f48..75ec51e5a9c 100644 --- a/addons/hr/i18n/en_GB.po +++ b/addons/hr/i18n/en_GB.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/es.po b/addons/hr/i18n/es.po index 96114276e08..2f4f3b46db8 100644 --- a/addons/hr/i18n/es.po +++ b/addons/hr/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/es_AR.po b/addons/hr/i18n/es_AR.po index b324e38b7e2..706ce912511 100644 --- a/addons/hr/i18n/es_AR.po +++ b/addons/hr/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/es_CL.po b/addons/hr/i18n/es_CL.po index 8d4962eba22..cafccdc85bd 100644 --- a/addons/hr/i18n/es_CL.po +++ b/addons/hr/i18n/es_CL.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/es_CR.po b/addons/hr/i18n/es_CR.po index 53f16518f6f..4ba45e5337a 100644 --- a/addons/hr/i18n/es_CR.po +++ b/addons/hr/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/hr/i18n/es_EC.po b/addons/hr/i18n/es_EC.po index 100de001a88..020ad665097 100644 --- a/addons/hr/i18n/es_EC.po +++ b/addons/hr/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/et.po b/addons/hr/i18n/et.po index b32b0646c70..be995eeddfe 100644 --- a/addons/hr/i18n/et.po +++ b/addons/hr/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/fi.po b/addons/hr/i18n/fi.po index b9b2791834c..69e38c8bdfa 100644 --- a/addons/hr/i18n/fi.po +++ b/addons/hr/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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/fr.po b/addons/hr/i18n/fr.po index a315279a72b..1f641659940 100644 --- a/addons/hr/i18n/fr.po +++ b/addons/hr/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/fr_BE.po b/addons/hr/i18n/fr_BE.po index fc3ded69347..99162fe1691 100644 --- a/addons/hr/i18n/fr_BE.po +++ b/addons/hr/i18n/fr_BE.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/gl.po b/addons/hr/i18n/gl.po index c02aa1cfaab..30a8990ebe7 100644 --- a/addons/hr/i18n/gl.po +++ b/addons/hr/i18n/gl.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/gu.po b/addons/hr/i18n/gu.po index 63f5a9d64e2..f09885f3a09 100644 --- a/addons/hr/i18n/gu.po +++ b/addons/hr/i18n/gu.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/hi.po b/addons/hr/i18n/hi.po index 63f583128e3..18c8377022b 100644 --- a/addons/hr/i18n/hi.po +++ b/addons/hr/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/hr.po b/addons/hr/i18n/hr.po index 3e4e6fc8577..86820f5c16b 100644 --- a/addons/hr/i18n/hr.po +++ b/addons/hr/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/hr/i18n/hu.po b/addons/hr/i18n/hu.po index af294c2367d..30edd7ee71e 100644 --- a/addons/hr/i18n/hu.po +++ b/addons/hr/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/id.po b/addons/hr/i18n/id.po index 97da9d3854a..e5edf8584e0 100644 --- a/addons/hr/i18n/id.po +++ b/addons/hr/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/it.po b/addons/hr/i18n/it.po index d56a60291bd..861d1388663 100644 --- a/addons/hr/i18n/it.po +++ b/addons/hr/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/ja.po b/addons/hr/i18n/ja.po index 3ed5aeaf74a..e28ccc73234 100644 --- a/addons/hr/i18n/ja.po +++ b/addons/hr/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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/ko.po b/addons/hr/i18n/ko.po index fcc917d76d2..ec3ea1bf816 100644 --- a/addons/hr/i18n/ko.po +++ b/addons/hr/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/lo.po b/addons/hr/i18n/lo.po index 91f3d164aec..65c4dcbf082 100644 --- a/addons/hr/i18n/lo.po +++ b/addons/hr/i18n/lo.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/lt.po b/addons/hr/i18n/lt.po index f073a9d6427..0106eb763e7 100644 --- a/addons/hr/i18n/lt.po +++ b/addons/hr/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/lv.po b/addons/hr/i18n/lv.po index dbb87c52992..1161ed782f9 100644 --- a/addons/hr/i18n/lv.po +++ b/addons/hr/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/mk.po b/addons/hr/i18n/mk.po index 74c476269c4..bc88414b090 100644 --- a/addons/hr/i18n/mk.po +++ b/addons/hr/i18n/mk.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/mn.po b/addons/hr/i18n/mn.po index 3e7b0bf3c21..737befc1b52 100644 --- a/addons/hr/i18n/mn.po +++ b/addons/hr/i18n/mn.po @@ -20,7 +20,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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/nb.po b/addons/hr/i18n/nb.po index d353cb2c352..aaac29df726 100644 --- a/addons/hr/i18n/nb.po +++ b/addons/hr/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/nl.po b/addons/hr/i18n/nl.po index a183fbfb25a..9430a17c1ee 100644 --- a/addons/hr/i18n/nl.po +++ b/addons/hr/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/nl_BE.po b/addons/hr/i18n/nl_BE.po index a1181bcf91b..413cad89f53 100644 --- a/addons/hr/i18n/nl_BE.po +++ b/addons/hr/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/pl.po b/addons/hr/i18n/pl.po index e9d1a4ed40b..ce97199127c 100644 --- a/addons/hr/i18n/pl.po +++ b/addons/hr/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/pt.po b/addons/hr/i18n/pt.po index 3eb38c5e4b5..7e9cb7d5601 100644 --- a/addons/hr/i18n/pt.po +++ b/addons/hr/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/pt_BR.po b/addons/hr/i18n/pt_BR.po index 61e6b755cf4..eef4d3f46b8 100644 --- a/addons/hr/i18n/pt_BR.po +++ b/addons/hr/i18n/pt_BR.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/ro.po b/addons/hr/i18n/ro.po index 6a6a38d1a72..60207021bb7 100644 --- a/addons/hr/i18n/ro.po +++ b/addons/hr/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/ru.po b/addons/hr/i18n/ru.po index c931fe88a66..aa6523ac9b3 100644 --- a/addons/hr/i18n/ru.po +++ b/addons/hr/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/sk.po b/addons/hr/i18n/sk.po index fb2f8fc2ccd..6f19eb61695 100644 --- a/addons/hr/i18n/sk.po +++ b/addons/hr/i18n/sk.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/sl.po b/addons/hr/i18n/sl.po index 439f40d4e17..48390c925bd 100644 --- a/addons/hr/i18n/sl.po +++ b/addons/hr/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/sq.po b/addons/hr/i18n/sq.po index f790054c317..629e247e467 100644 --- a/addons/hr/i18n/sq.po +++ b/addons/hr/i18n/sq.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/sr.po b/addons/hr/i18n/sr.po index 521c26e4a7b..e1f19a2a1a0 100644 --- a/addons/hr/i18n/sr.po +++ b/addons/hr/i18n/sr.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/sr@latin.po b/addons/hr/i18n/sr@latin.po index 3e501d6343c..96758451d68 100644 --- a/addons/hr/i18n/sr@latin.po +++ b/addons/hr/i18n/sr@latin.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/sv.po b/addons/hr/i18n/sv.po index 5c3287d82cf..020ccc3f821 100644 --- a/addons/hr/i18n/sv.po +++ b/addons/hr/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/th.po b/addons/hr/i18n/th.po index 547aace1117..61660daeeaa 100644 --- a/addons/hr/i18n/th.po +++ b/addons/hr/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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/tlh.po b/addons/hr/i18n/tlh.po index 69b14c22003..407416e62b3 100644 --- a/addons/hr/i18n/tlh.po +++ b/addons/hr/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/tr.po b/addons/hr/i18n/tr.po index d883bdc88ec..773f14afbb7 100644 --- a/addons/hr/i18n/tr.po +++ b/addons/hr/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/uk.po b/addons/hr/i18n/uk.po index 7813b57ef9c..360be9148a0 100644 --- a/addons/hr/i18n/uk.po +++ b/addons/hr/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/vi.po b/addons/hr/i18n/vi.po index 9aa23124621..a73df2a5f9d 100644 --- a/addons/hr/i18n/vi.po +++ b/addons/hr/i18n/vi.po @@ -19,7 +19,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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/zh_CN.po b/addons/hr/i18n/zh_CN.po index ceef143a91b..d5a8a8ca5ee 100644 --- a/addons/hr/i18n/zh_CN.po +++ b/addons/hr/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr/i18n/zh_TW.po b/addons/hr/i18n/zh_TW.po index 6f0864ec053..3374ca052bf 100644 --- a/addons/hr/i18n/zh_TW.po +++ b/addons/hr/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr diff --git a/addons/hr_attendance/i18n/ar.po b/addons/hr_attendance/i18n/ar.po index 6697299d20d..d418c747d88 100644 --- a/addons/hr_attendance/i18n/ar.po +++ b/addons/hr_attendance/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/bg.po b/addons/hr_attendance/i18n/bg.po index 1a65cce0d50..588d4399cc5 100644 --- a/addons/hr_attendance/i18n/bg.po +++ b/addons/hr_attendance/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/bs.po b/addons/hr_attendance/i18n/bs.po index 7529212281f..1c6d4c3b32a 100644 --- a/addons/hr_attendance/i18n/bs.po +++ b/addons/hr_attendance/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/ca.po b/addons/hr_attendance/i18n/ca.po index 5e2901eeff9..140c401fc4b 100644 --- a/addons/hr_attendance/i18n/ca.po +++ b/addons/hr_attendance/i18n/ca.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/cs.po b/addons/hr_attendance/i18n/cs.po index b9c7cb4bb92..f1e7233764b 100644 --- a/addons/hr_attendance/i18n/cs.po +++ b/addons/hr_attendance/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: czech\n" diff --git a/addons/hr_attendance/i18n/da.po b/addons/hr_attendance/i18n/da.po index 4b956f8f778..e14b6f867a0 100644 --- a/addons/hr_attendance/i18n/da.po +++ b/addons/hr_attendance/i18n/da.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/de.po b/addons/hr_attendance/i18n/de.po index 4f226a158cc..b5f525d3fbb 100644 --- a/addons/hr_attendance/i18n/de.po +++ b/addons/hr_attendance/i18n/de.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/el.po b/addons/hr_attendance/i18n/el.po index 02bfd1e37fb..c610a3c2ebe 100644 --- a/addons/hr_attendance/i18n/el.po +++ b/addons/hr_attendance/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/hr_attendance/i18n/en_GB.po b/addons/hr_attendance/i18n/en_GB.po index 81183029fa7..401f5fa29c6 100644 --- a/addons/hr_attendance/i18n/en_GB.po +++ b/addons/hr_attendance/i18n/en_GB.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/es.po b/addons/hr_attendance/i18n/es.po index d73ff829431..fd033e72cc1 100644 --- a/addons/hr_attendance/i18n/es.po +++ b/addons/hr_attendance/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/es_AR.po b/addons/hr_attendance/i18n/es_AR.po index 6a01718cbbd..8802b54d304 100644 --- a/addons/hr_attendance/i18n/es_AR.po +++ b/addons/hr_attendance/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/es_CL.po b/addons/hr_attendance/i18n/es_CL.po index 4cd0d62ae95..393eaa3747b 100644 --- a/addons/hr_attendance/i18n/es_CL.po +++ b/addons/hr_attendance/i18n/es_CL.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/es_CR.po b/addons/hr_attendance/i18n/es_CR.po index ef80288e6ab..49c5659ad8f 100644 --- a/addons/hr_attendance/i18n/es_CR.po +++ b/addons/hr_attendance/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/hr_attendance/i18n/es_EC.po b/addons/hr_attendance/i18n/es_EC.po index 70f23e515c2..9e9a7d28a7b 100644 --- a/addons/hr_attendance/i18n/es_EC.po +++ b/addons/hr_attendance/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/es_PY.po b/addons/hr_attendance/i18n/es_PY.po index 384fa40323f..21418bf272a 100644 --- a/addons/hr_attendance/i18n/es_PY.po +++ b/addons/hr_attendance/i18n/es_PY.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/et.po b/addons/hr_attendance/i18n/et.po index b121620f708..14fac2d15d2 100644 --- a/addons/hr_attendance/i18n/et.po +++ b/addons/hr_attendance/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/fi.po b/addons/hr_attendance/i18n/fi.po index 558f1e499dd..92b6e56c6c6 100644 --- a/addons/hr_attendance/i18n/fi.po +++ b/addons/hr_attendance/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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/fr.po b/addons/hr_attendance/i18n/fr.po index c1f4e399902..c7afae9091b 100644 --- a/addons/hr_attendance/i18n/fr.po +++ b/addons/hr_attendance/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #, python-format diff --git a/addons/hr_attendance/i18n/gl.po b/addons/hr_attendance/i18n/gl.po index 97e304c37a3..25dbd1cabf6 100644 --- a/addons/hr_attendance/i18n/gl.po +++ b/addons/hr_attendance/i18n/gl.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/he.po b/addons/hr_attendance/i18n/he.po index 7ecc3eb23a1..0a67fe51d34 100644 --- a/addons/hr_attendance/i18n/he.po +++ b/addons/hr_attendance/i18n/he.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/hr.po b/addons/hr_attendance/i18n/hr.po index 0152208bd7a..11ddf97c3df 100644 --- a/addons/hr_attendance/i18n/hr.po +++ b/addons/hr_attendance/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/hu.po b/addons/hr_attendance/i18n/hu.po index 7ddfe5c69f4..b5c040625ac 100644 --- a/addons/hr_attendance/i18n/hu.po +++ b/addons/hr_attendance/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/id.po b/addons/hr_attendance/i18n/id.po index eeec489756e..66da9de080b 100644 --- a/addons/hr_attendance/i18n/id.po +++ b/addons/hr_attendance/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/it.po b/addons/hr_attendance/i18n/it.po index 30214f033e1..0beed5be402 100644 --- a/addons/hr_attendance/i18n/it.po +++ b/addons/hr_attendance/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/ja.po b/addons/hr_attendance/i18n/ja.po index 7121ec78db8..13441f8e5f3 100644 --- a/addons/hr_attendance/i18n/ja.po +++ b/addons/hr_attendance/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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/ko.po b/addons/hr_attendance/i18n/ko.po index 6d7f2a6c333..a181a9b8151 100644 --- a/addons/hr_attendance/i18n/ko.po +++ b/addons/hr_attendance/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/lt.po b/addons/hr_attendance/i18n/lt.po index bc46f42cf55..ca23dd39b10 100644 --- a/addons/hr_attendance/i18n/lt.po +++ b/addons/hr_attendance/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/lv.po b/addons/hr_attendance/i18n/lv.po index 7800514ff0e..2eb7498a67f 100644 --- a/addons/hr_attendance/i18n/lv.po +++ b/addons/hr_attendance/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/mk.po b/addons/hr_attendance/i18n/mk.po index 9b24843c286..3d7fbee605d 100644 --- a/addons/hr_attendance/i18n/mk.po +++ b/addons/hr_attendance/i18n/mk.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/mn.po b/addons/hr_attendance/i18n/mn.po index 969f937dc19..f7000fa353a 100644 --- a/addons/hr_attendance/i18n/mn.po +++ b/addons/hr_attendance/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/nb.po b/addons/hr_attendance/i18n/nb.po index 5cfb60d2559..b570d68edf0 100644 --- a/addons/hr_attendance/i18n/nb.po +++ b/addons/hr_attendance/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/nl.po b/addons/hr_attendance/i18n/nl.po index 2ab420209ed..d5469efa3ed 100644 --- a/addons/hr_attendance/i18n/nl.po +++ b/addons/hr_attendance/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/nl_BE.po b/addons/hr_attendance/i18n/nl_BE.po index 69055812277..56730edbc31 100644 --- a/addons/hr_attendance/i18n/nl_BE.po +++ b/addons/hr_attendance/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/pl.po b/addons/hr_attendance/i18n/pl.po index aa62909e3fc..757468432ca 100644 --- a/addons/hr_attendance/i18n/pl.po +++ b/addons/hr_attendance/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/pt.po b/addons/hr_attendance/i18n/pt.po index aa658dd02f8..8a9a041aee9 100644 --- a/addons/hr_attendance/i18n/pt.po +++ b/addons/hr_attendance/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/pt_BR.po b/addons/hr_attendance/i18n/pt_BR.po index f5472b08e7f..100098ec411 100644 --- a/addons/hr_attendance/i18n/pt_BR.po +++ b/addons/hr_attendance/i18n/pt_BR.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/ro.po b/addons/hr_attendance/i18n/ro.po index 7f89016127c..265a25de644 100644 --- a/addons/hr_attendance/i18n/ro.po +++ b/addons/hr_attendance/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/ru.po b/addons/hr_attendance/i18n/ru.po index 789eb0e8c1e..228f370cd6c 100644 --- a/addons/hr_attendance/i18n/ru.po +++ b/addons/hr_attendance/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/sl.po b/addons/hr_attendance/i18n/sl.po index d61cdc664c5..3833dbedd55 100644 --- a/addons/hr_attendance/i18n/sl.po +++ b/addons/hr_attendance/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/sq.po b/addons/hr_attendance/i18n/sq.po index 8decbd1ab5c..ae3e9200d4d 100644 --- a/addons/hr_attendance/i18n/sq.po +++ b/addons/hr_attendance/i18n/sq.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/sr.po b/addons/hr_attendance/i18n/sr.po index bf67b9eb689..ec07dd1d860 100644 --- a/addons/hr_attendance/i18n/sr.po +++ b/addons/hr_attendance/i18n/sr.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/sr@latin.po b/addons/hr_attendance/i18n/sr@latin.po index b13b595f2bd..753b273b393 100644 --- a/addons/hr_attendance/i18n/sr@latin.po +++ b/addons/hr_attendance/i18n/sr@latin.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/sv.po b/addons/hr_attendance/i18n/sv.po index f58cd6284bc..678302f05a5 100644 --- a/addons/hr_attendance/i18n/sv.po +++ b/addons/hr_attendance/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/tlh.po b/addons/hr_attendance/i18n/tlh.po index 9230cd60ba6..42f82680cea 100644 --- a/addons/hr_attendance/i18n/tlh.po +++ b/addons/hr_attendance/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/tr.po b/addons/hr_attendance/i18n/tr.po index e576174b1fd..d4c8cf258ae 100644 --- a/addons/hr_attendance/i18n/tr.po +++ b/addons/hr_attendance/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/uk.po b/addons/hr_attendance/i18n/uk.po index 0558d0909f8..ee5783fa7bb 100644 --- a/addons/hr_attendance/i18n/uk.po +++ b/addons/hr_attendance/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/vi.po b/addons/hr_attendance/i18n/vi.po index 8e0739577af..3e19be76d57 100644 --- a/addons/hr_attendance/i18n/vi.po +++ b/addons/hr_attendance/i18n/vi.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-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/zh_CN.po b/addons/hr_attendance/i18n/zh_CN.po index 98ec80540dc..21b78d06d6f 100644 --- a/addons/hr_attendance/i18n/zh_CN.po +++ b/addons/hr_attendance/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/zh_TW.po b/addons/hr_attendance/i18n/zh_TW.po index 138d7727104..0e79d40f798 100644 --- a/addons/hr_attendance/i18n/zh_TW.po +++ b/addons/hr_attendance/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_attendance diff --git a/addons/hr_contract/i18n/ar.po b/addons/hr_contract/i18n/ar.po index 80e7ca50db2..72e031a7687 100644 --- a/addons/hr_contract/i18n/ar.po +++ b/addons/hr_contract/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/bg.po b/addons/hr_contract/i18n/bg.po index 0aaf6dba6cb..0d931de5c29 100644 --- a/addons/hr_contract/i18n/bg.po +++ b/addons/hr_contract/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/bs.po b/addons/hr_contract/i18n/bs.po index bd5c1c0982f..6ba06787bc2 100644 --- a/addons/hr_contract/i18n/bs.po +++ b/addons/hr_contract/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/ca.po b/addons/hr_contract/i18n/ca.po index 9739c4a1a98..56dc285683b 100644 --- a/addons/hr_contract/i18n/ca.po +++ b/addons/hr_contract/i18n/ca.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/cs.po b/addons/hr_contract/i18n/cs.po index 6f5fae89929..b8cfc60ff53 100644 --- a/addons/hr_contract/i18n/cs.po +++ b/addons/hr_contract/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/hr_contract/i18n/da.po b/addons/hr_contract/i18n/da.po index eb7d53b6a57..d7f6c15977d 100644 --- a/addons/hr_contract/i18n/da.po +++ b/addons/hr_contract/i18n/da.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/de.po b/addons/hr_contract/i18n/de.po index 16e4ee78cd0..21e52e34194 100644 --- a/addons/hr_contract/i18n/de.po +++ b/addons/hr_contract/i18n/de.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/el.po b/addons/hr_contract/i18n/el.po index eb285d2d552..cbf335a832a 100644 --- a/addons/hr_contract/i18n/el.po +++ b/addons/hr_contract/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/hr_contract/i18n/en_GB.po b/addons/hr_contract/i18n/en_GB.po index e8d37b299d1..bd5af314bbd 100644 --- a/addons/hr_contract/i18n/en_GB.po +++ b/addons/hr_contract/i18n/en_GB.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/es.po b/addons/hr_contract/i18n/es.po index fc77009b3bd..279f32a88c9 100644 --- a/addons/hr_contract/i18n/es.po +++ b/addons/hr_contract/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/es_AR.po b/addons/hr_contract/i18n/es_AR.po index 2e24f464887..7164dc841c3 100644 --- a/addons/hr_contract/i18n/es_AR.po +++ b/addons/hr_contract/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/es_CR.po b/addons/hr_contract/i18n/es_CR.po index bffbb22b661..4cc6ec9ea1d 100644 --- a/addons/hr_contract/i18n/es_CR.po +++ b/addons/hr_contract/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/hr_contract/i18n/es_EC.po b/addons/hr_contract/i18n/es_EC.po index fce8a14462b..ad1db7ab379 100644 --- a/addons/hr_contract/i18n/es_EC.po +++ b/addons/hr_contract/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/es_PY.po b/addons/hr_contract/i18n/es_PY.po index 2958d420487..63f57d844d5 100644 --- a/addons/hr_contract/i18n/es_PY.po +++ b/addons/hr_contract/i18n/es_PY.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/et.po b/addons/hr_contract/i18n/et.po index 0b25d1b6f2e..3cff04e3d54 100644 --- a/addons/hr_contract/i18n/et.po +++ b/addons/hr_contract/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/fi.po b/addons/hr_contract/i18n/fi.po index 55d837abad5..7df8407a49b 100644 --- a/addons/hr_contract/i18n/fi.po +++ b/addons/hr_contract/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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/fr.po b/addons/hr_contract/i18n/fr.po index 4da3483082c..2664361e8f4 100644 --- a/addons/hr_contract/i18n/fr.po +++ b/addons/hr_contract/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/gl.po b/addons/hr_contract/i18n/gl.po index 35d55118486..259516e989c 100644 --- a/addons/hr_contract/i18n/gl.po +++ b/addons/hr_contract/i18n/gl.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/gu.po b/addons/hr_contract/i18n/gu.po index 90c92d4d9cc..97f8bb5d732 100644 --- a/addons/hr_contract/i18n/gu.po +++ b/addons/hr_contract/i18n/gu.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/hi.po b/addons/hr_contract/i18n/hi.po index b96ae3ea195..02ef0f77fd9 100644 --- a/addons/hr_contract/i18n/hi.po +++ b/addons/hr_contract/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/hr.po b/addons/hr_contract/i18n/hr.po index 16f4648fc94..1915e30ff06 100644 --- a/addons/hr_contract/i18n/hr.po +++ b/addons/hr_contract/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/hu.po b/addons/hr_contract/i18n/hu.po index d1b970a25d1..1d92a471a1e 100644 --- a/addons/hr_contract/i18n/hu.po +++ b/addons/hr_contract/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/id.po b/addons/hr_contract/i18n/id.po index 2171c6a7117..bf8662b8023 100644 --- a/addons/hr_contract/i18n/id.po +++ b/addons/hr_contract/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/it.po b/addons/hr_contract/i18n/it.po index 5f5868e52d5..fae0137947a 100644 --- a/addons/hr_contract/i18n/it.po +++ b/addons/hr_contract/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/ja.po b/addons/hr_contract/i18n/ja.po index 70af04bf26c..9da3f60a70a 100644 --- a/addons/hr_contract/i18n/ja.po +++ b/addons/hr_contract/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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/ko.po b/addons/hr_contract/i18n/ko.po index bdfcb9d1095..60cef276558 100644 --- a/addons/hr_contract/i18n/ko.po +++ b/addons/hr_contract/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/lo.po b/addons/hr_contract/i18n/lo.po index 601da23eda3..7410b60a580 100644 --- a/addons/hr_contract/i18n/lo.po +++ b/addons/hr_contract/i18n/lo.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/lt.po b/addons/hr_contract/i18n/lt.po index 742b6be9924..719fb701f23 100644 --- a/addons/hr_contract/i18n/lt.po +++ b/addons/hr_contract/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/lv.po b/addons/hr_contract/i18n/lv.po index 90996485c28..bc1ab0ce27c 100644 --- a/addons/hr_contract/i18n/lv.po +++ b/addons/hr_contract/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/mk.po b/addons/hr_contract/i18n/mk.po index 7ac5e91d3db..80e711bdede 100644 --- a/addons/hr_contract/i18n/mk.po +++ b/addons/hr_contract/i18n/mk.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/mn.po b/addons/hr_contract/i18n/mn.po index 23247141642..a0bb4d8d07c 100644 --- a/addons/hr_contract/i18n/mn.po +++ b/addons/hr_contract/i18n/mn.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/nb.po b/addons/hr_contract/i18n/nb.po index 6be8140aa30..7e2660b9abd 100644 --- a/addons/hr_contract/i18n/nb.po +++ b/addons/hr_contract/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/nl.po b/addons/hr_contract/i18n/nl.po index 50be1d5e247..160c23b9591 100644 --- a/addons/hr_contract/i18n/nl.po +++ b/addons/hr_contract/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/nl_BE.po b/addons/hr_contract/i18n/nl_BE.po index e606b10ec3a..f5edbd063ef 100644 --- a/addons/hr_contract/i18n/nl_BE.po +++ b/addons/hr_contract/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/pl.po b/addons/hr_contract/i18n/pl.po index 57d0bcda5c1..04e8e6a28e2 100644 --- a/addons/hr_contract/i18n/pl.po +++ b/addons/hr_contract/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/pt.po b/addons/hr_contract/i18n/pt.po index bea1b387ed5..098ea7c7e56 100644 --- a/addons/hr_contract/i18n/pt.po +++ b/addons/hr_contract/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/pt_BR.po b/addons/hr_contract/i18n/pt_BR.po index 113b9f46d2b..e7da832bd8f 100644 --- a/addons/hr_contract/i18n/pt_BR.po +++ b/addons/hr_contract/i18n/pt_BR.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/ro.po b/addons/hr_contract/i18n/ro.po index a7d766e5c20..8b886052038 100644 --- a/addons/hr_contract/i18n/ro.po +++ b/addons/hr_contract/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/ru.po b/addons/hr_contract/i18n/ru.po index 28a8d60a8ad..7df8c0a1844 100644 --- a/addons/hr_contract/i18n/ru.po +++ b/addons/hr_contract/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/sl.po b/addons/hr_contract/i18n/sl.po index 3d4f50e5ccf..b4d3d60bd36 100644 --- a/addons/hr_contract/i18n/sl.po +++ b/addons/hr_contract/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/sq.po b/addons/hr_contract/i18n/sq.po index 82e441a466a..9e098daaee6 100644 --- a/addons/hr_contract/i18n/sq.po +++ b/addons/hr_contract/i18n/sq.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/sr.po b/addons/hr_contract/i18n/sr.po index c8950935322..7e77e97b69c 100644 --- a/addons/hr_contract/i18n/sr.po +++ b/addons/hr_contract/i18n/sr.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/sr@latin.po b/addons/hr_contract/i18n/sr@latin.po index 5a7282f8d76..2b752f4fafd 100644 --- a/addons/hr_contract/i18n/sr@latin.po +++ b/addons/hr_contract/i18n/sr@latin.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/sv.po b/addons/hr_contract/i18n/sv.po index 5edb13dc316..54812d7bbf6 100644 --- a/addons/hr_contract/i18n/sv.po +++ b/addons/hr_contract/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/tlh.po b/addons/hr_contract/i18n/tlh.po index 54ebff13525..195117dd4c6 100644 --- a/addons/hr_contract/i18n/tlh.po +++ b/addons/hr_contract/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/tr.po b/addons/hr_contract/i18n/tr.po index b394f5eb0d0..1e82877d671 100644 --- a/addons/hr_contract/i18n/tr.po +++ b/addons/hr_contract/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/uk.po b/addons/hr_contract/i18n/uk.po index 10969cc0470..8d884258660 100644 --- a/addons/hr_contract/i18n/uk.po +++ b/addons/hr_contract/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/vi.po b/addons/hr_contract/i18n/vi.po index be8e74819d2..ce1bb628b7d 100644 --- a/addons/hr_contract/i18n/vi.po +++ b/addons/hr_contract/i18n/vi.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/zh_CN.po b/addons/hr_contract/i18n/zh_CN.po index a773ee73ee5..41e1f4018aa 100644 --- a/addons/hr_contract/i18n/zh_CN.po +++ b/addons/hr_contract/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/zh_TW.po b/addons/hr_contract/i18n/zh_TW.po index 8bef0f260ce..839820a6158 100644 --- a/addons/hr_contract/i18n/zh_TW.po +++ b/addons/hr_contract/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_contract diff --git a/addons/hr_evaluation/i18n/ar.po b/addons/hr_evaluation/i18n/ar.po index a325c339f06..0c80a65eb2b 100644 --- a/addons/hr_evaluation/i18n/ar.po +++ b/addons/hr_evaluation/i18n/ar.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/bg.po b/addons/hr_evaluation/i18n/bg.po index 03c1f6373bc..672fb9ff3a8 100644 --- a/addons/hr_evaluation/i18n/bg.po +++ b/addons/hr_evaluation/i18n/bg.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/ca.po b/addons/hr_evaluation/i18n/ca.po index 4d99aa03a23..e3a11c74cd4 100644 --- a/addons/hr_evaluation/i18n/ca.po +++ b/addons/hr_evaluation/i18n/ca.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/da.po b/addons/hr_evaluation/i18n/da.po index fc18240a78f..431d1e60ed0 100644 --- a/addons/hr_evaluation/i18n/da.po +++ b/addons/hr_evaluation/i18n/da.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/de.po b/addons/hr_evaluation/i18n/de.po index e917aaab348..98b78a6c6c0 100644 --- a/addons/hr_evaluation/i18n/de.po +++ b/addons/hr_evaluation/i18n/de.po @@ -15,7 +15,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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/es.po b/addons/hr_evaluation/i18n/es.po index a764e12b4cb..0ffe6aaca76 100644 --- a/addons/hr_evaluation/i18n/es.po +++ b/addons/hr_evaluation/i18n/es.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/es_CR.po b/addons/hr_evaluation/i18n/es_CR.po index 822a57204ba..32ab349f319 100644 --- a/addons/hr_evaluation/i18n/es_CR.po +++ b/addons/hr_evaluation/i18n/es_CR.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/hr_evaluation/i18n/es_EC.po b/addons/hr_evaluation/i18n/es_EC.po index bb4c10633ba..3954c0113ab 100644 --- a/addons/hr_evaluation/i18n/es_EC.po +++ b/addons/hr_evaluation/i18n/es_EC.po @@ -15,7 +15,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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/et.po b/addons/hr_evaluation/i18n/et.po index 805349f7b75..f689f922897 100644 --- a/addons/hr_evaluation/i18n/et.po +++ b/addons/hr_evaluation/i18n/et.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/fi.po b/addons/hr_evaluation/i18n/fi.po index 636baec48c6..60e8fad2223 100644 --- a/addons/hr_evaluation/i18n/fi.po +++ b/addons/hr_evaluation/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/fr.po b/addons/hr_evaluation/i18n/fr.po index 036260934e0..5dc6981639e 100644 --- a/addons/hr_evaluation/i18n/fr.po +++ b/addons/hr_evaluation/i18n/fr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/gl.po b/addons/hr_evaluation/i18n/gl.po index 2c2077b5736..5371afd05e3 100644 --- a/addons/hr_evaluation/i18n/gl.po +++ b/addons/hr_evaluation/i18n/gl.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/hr.po b/addons/hr_evaluation/i18n/hr.po index 85f8fa471bf..81e04d3acbf 100644 --- a/addons/hr_evaluation/i18n/hr.po +++ b/addons/hr_evaluation/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/hu.po b/addons/hr_evaluation/i18n/hu.po index 33eca2a5009..63de6f2eb23 100644 --- a/addons/hr_evaluation/i18n/hu.po +++ b/addons/hr_evaluation/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/id.po b/addons/hr_evaluation/i18n/id.po index ea7617b01b4..acbd25e4a9d 100644 --- a/addons/hr_evaluation/i18n/id.po +++ b/addons/hr_evaluation/i18n/id.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/it.po b/addons/hr_evaluation/i18n/it.po index 1d2cf9b742f..875a93c7a2c 100644 --- a/addons/hr_evaluation/i18n/it.po +++ b/addons/hr_evaluation/i18n/it.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/ja.po b/addons/hr_evaluation/i18n/ja.po index 6e85afc6a73..4d11bea63f8 100644 --- a/addons/hr_evaluation/i18n/ja.po +++ b/addons/hr_evaluation/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/mk.po b/addons/hr_evaluation/i18n/mk.po index 6f8ae998581..d8b4f40af9f 100644 --- a/addons/hr_evaluation/i18n/mk.po +++ b/addons/hr_evaluation/i18n/mk.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/mn.po b/addons/hr_evaluation/i18n/mn.po index 38ec651e70b..a8045096b78 100644 --- a/addons/hr_evaluation/i18n/mn.po +++ b/addons/hr_evaluation/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/nl.po b/addons/hr_evaluation/i18n/nl.po index 459c76d9474..ef77cc3f9b2 100644 --- a/addons/hr_evaluation/i18n/nl.po +++ b/addons/hr_evaluation/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/pt.po b/addons/hr_evaluation/i18n/pt.po index 3ce4a1bb508..d6b19351e69 100644 --- a/addons/hr_evaluation/i18n/pt.po +++ b/addons/hr_evaluation/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/pt_BR.po b/addons/hr_evaluation/i18n/pt_BR.po index 2daf18bf7b7..64f87c05af8 100644 --- a/addons/hr_evaluation/i18n/pt_BR.po +++ b/addons/hr_evaluation/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/ro.po b/addons/hr_evaluation/i18n/ro.po index b5da60f24bd..11484b4d0a5 100644 --- a/addons/hr_evaluation/i18n/ro.po +++ b/addons/hr_evaluation/i18n/ro.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/ru.po b/addons/hr_evaluation/i18n/ru.po index 74dc97b4378..b3854a55dd2 100644 --- a/addons/hr_evaluation/i18n/ru.po +++ b/addons/hr_evaluation/i18n/ru.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/sl.po b/addons/hr_evaluation/i18n/sl.po index fff8c300da4..b882da1c7d8 100644 --- a/addons/hr_evaluation/i18n/sl.po +++ b/addons/hr_evaluation/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/sr.po b/addons/hr_evaluation/i18n/sr.po index ad1209d7dad..ac5283bfeb8 100644 --- a/addons/hr_evaluation/i18n/sr.po +++ b/addons/hr_evaluation/i18n/sr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/sr@latin.po b/addons/hr_evaluation/i18n/sr@latin.po index 23fee05da24..7e422c9da77 100644 --- a/addons/hr_evaluation/i18n/sr@latin.po +++ b/addons/hr_evaluation/i18n/sr@latin.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/sv.po b/addons/hr_evaluation/i18n/sv.po index 44883cce46b..0d1098a5d5b 100644 --- a/addons/hr_evaluation/i18n/sv.po +++ b/addons/hr_evaluation/i18n/sv.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/tr.po b/addons/hr_evaluation/i18n/tr.po index c021f9fbf8c..de97d98a1a3 100644 --- a/addons/hr_evaluation/i18n/tr.po +++ b/addons/hr_evaluation/i18n/tr.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/zh_CN.po b/addons/hr_evaluation/i18n/zh_CN.po index ac1d09c3d02..ca9675db6fb 100644 --- a/addons/hr_evaluation/i18n/zh_CN.po +++ b/addons/hr_evaluation/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_evaluation diff --git a/addons/hr_expense/i18n/ar.po b/addons/hr_expense/i18n/ar.po index e92cfd12e9c..1486e8e3264 100644 --- a/addons/hr_expense/i18n/ar.po +++ b/addons/hr_expense/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/bg.po b/addons/hr_expense/i18n/bg.po index 28eaa3706e3..36e060a230d 100644 --- a/addons/hr_expense/i18n/bg.po +++ b/addons/hr_expense/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/bs.po b/addons/hr_expense/i18n/bs.po index 20a2ff34520..3500fe5ace0 100644 --- a/addons/hr_expense/i18n/bs.po +++ b/addons/hr_expense/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/ca.po b/addons/hr_expense/i18n/ca.po index 3f02393a159..c98026c4cb9 100644 --- a/addons/hr_expense/i18n/ca.po +++ b/addons/hr_expense/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/cs.po b/addons/hr_expense/i18n/cs.po index 09a23cd4385..d9b005587e5 100644 --- a/addons/hr_expense/i18n/cs.po +++ b/addons/hr_expense/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/da.po b/addons/hr_expense/i18n/da.po index f10da94e910..9a326632935 100644 --- a/addons/hr_expense/i18n/da.po +++ b/addons/hr_expense/i18n/da.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/de.po b/addons/hr_expense/i18n/de.po index 9915d89f79e..4142d21a761 100644 --- a/addons/hr_expense/i18n/de.po +++ b/addons/hr_expense/i18n/de.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/el.po b/addons/hr_expense/i18n/el.po index 6394e67e847..0aa2e17ca5a 100644 --- a/addons/hr_expense/i18n/el.po +++ b/addons/hr_expense/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/hr_expense/i18n/es.po b/addons/hr_expense/i18n/es.po index c23eff06633..2524fe3c689 100644 --- a/addons/hr_expense/i18n/es.po +++ b/addons/hr_expense/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/es_AR.po b/addons/hr_expense/i18n/es_AR.po index 4ab2170f76d..1a1b7d331cd 100644 --- a/addons/hr_expense/i18n/es_AR.po +++ b/addons/hr_expense/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/es_CR.po b/addons/hr_expense/i18n/es_CR.po index e7201347a53..1b365617fdd 100644 --- a/addons/hr_expense/i18n/es_CR.po +++ b/addons/hr_expense/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/es_EC.po b/addons/hr_expense/i18n/es_EC.po index 47368aa0e74..c5b13869a52 100644 --- a/addons/hr_expense/i18n/es_EC.po +++ b/addons/hr_expense/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/et.po b/addons/hr_expense/i18n/et.po index 0723b317b43..357777843ac 100644 --- a/addons/hr_expense/i18n/et.po +++ b/addons/hr_expense/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/fi.po b/addons/hr_expense/i18n/fi.po index e12a26f6e3c..f287d9aca86 100644 --- a/addons/hr_expense/i18n/fi.po +++ b/addons/hr_expense/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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/fr.po b/addons/hr_expense/i18n/fr.po index f42c362bcc0..bdd6eef1f88 100644 --- a/addons/hr_expense/i18n/fr.po +++ b/addons/hr_expense/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/hr.po b/addons/hr_expense/i18n/hr.po index 03b197fa9fb..7f9e63a4d83 100644 --- a/addons/hr_expense/i18n/hr.po +++ b/addons/hr_expense/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/hu.po b/addons/hr_expense/i18n/hu.po index 3706cfe3b9e..1a569ff616f 100644 --- a/addons/hr_expense/i18n/hu.po +++ b/addons/hr_expense/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/id.po b/addons/hr_expense/i18n/id.po index f721dda8f54..c3a698c371f 100644 --- a/addons/hr_expense/i18n/id.po +++ b/addons/hr_expense/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/it.po b/addons/hr_expense/i18n/it.po index a1f77281586..4e70fa69b94 100644 --- a/addons/hr_expense/i18n/it.po +++ b/addons/hr_expense/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/ja.po b/addons/hr_expense/i18n/ja.po index 51394a1283b..6e5700a1a8f 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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/ko.po b/addons/hr_expense/i18n/ko.po index 7d8e3d3f69a..3fa5a4fc57b 100644 --- a/addons/hr_expense/i18n/ko.po +++ b/addons/hr_expense/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/lt.po b/addons/hr_expense/i18n/lt.po index 09a23cd4385..d9b005587e5 100644 --- a/addons/hr_expense/i18n/lt.po +++ b/addons/hr_expense/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/lv.po b/addons/hr_expense/i18n/lv.po index ba5da7f3237..b889b29315a 100644 --- a/addons/hr_expense/i18n/lv.po +++ b/addons/hr_expense/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/mk.po b/addons/hr_expense/i18n/mk.po index ff7a662e850..e610ad9c78e 100644 --- a/addons/hr_expense/i18n/mk.po +++ b/addons/hr_expense/i18n/mk.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/mn.po b/addons/hr_expense/i18n/mn.po index 404c9f24b89..2b6c3326ee4 100644 --- a/addons/hr_expense/i18n/mn.po +++ b/addons/hr_expense/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/nb.po b/addons/hr_expense/i18n/nb.po index 66ee7177e2c..1a5353adfad 100644 --- a/addons/hr_expense/i18n/nb.po +++ b/addons/hr_expense/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/nl.po b/addons/hr_expense/i18n/nl.po index 4e972a7d7c7..9d588eb71b2 100644 --- a/addons/hr_expense/i18n/nl.po +++ b/addons/hr_expense/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense @@ -93,7 +93,7 @@ msgstr "Ongelezen berichten" #: view:hr.expense.report:0 #: field:hr.expense.report,company_id:0 msgid "Company" -msgstr "BedrijfTe b" +msgstr "Bedrijf" #. 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 a2710a9bc16..47d3b4917ad 100644 --- a/addons/hr_expense/i18n/nl_BE.po +++ b/addons/hr_expense/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/pl.po b/addons/hr_expense/i18n/pl.po index e50eb4b2958..a3772efae8c 100644 --- a/addons/hr_expense/i18n/pl.po +++ b/addons/hr_expense/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/pt.po b/addons/hr_expense/i18n/pt.po index 25fadd1fdde..64ca6e19cbe 100644 --- a/addons/hr_expense/i18n/pt.po +++ b/addons/hr_expense/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/pt_BR.po b/addons/hr_expense/i18n/pt_BR.po index 6550dccf615..f552892ceb9 100644 --- a/addons/hr_expense/i18n/pt_BR.po +++ b/addons/hr_expense/i18n/pt_BR.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/ro.po b/addons/hr_expense/i18n/ro.po index b712dcf0263..eb780427687 100644 --- a/addons/hr_expense/i18n/ro.po +++ b/addons/hr_expense/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/ru.po b/addons/hr_expense/i18n/ru.po index 54c60d9d083..4a815d43099 100644 --- a/addons/hr_expense/i18n/ru.po +++ b/addons/hr_expense/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/sl.po b/addons/hr_expense/i18n/sl.po index 8b81a6396f5..724ee47f907 100644 --- a/addons/hr_expense/i18n/sl.po +++ b/addons/hr_expense/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/sq.po b/addons/hr_expense/i18n/sq.po index a502d908e87..3504add7cd1 100644 --- a/addons/hr_expense/i18n/sq.po +++ b/addons/hr_expense/i18n/sq.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/sr.po b/addons/hr_expense/i18n/sr.po index 18b396c3a3f..63244711583 100644 --- a/addons/hr_expense/i18n/sr.po +++ b/addons/hr_expense/i18n/sr.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/sr@latin.po b/addons/hr_expense/i18n/sr@latin.po index 600cd91fcc5..946831f85f2 100644 --- a/addons/hr_expense/i18n/sr@latin.po +++ b/addons/hr_expense/i18n/sr@latin.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/sv.po b/addons/hr_expense/i18n/sv.po index edc0a75a579..bb21d06b3a4 100644 --- a/addons/hr_expense/i18n/sv.po +++ b/addons/hr_expense/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/tlh.po b/addons/hr_expense/i18n/tlh.po index fba020a36f1..2a968a08b69 100644 --- a/addons/hr_expense/i18n/tlh.po +++ b/addons/hr_expense/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/tr.po b/addons/hr_expense/i18n/tr.po index 3ca9cf84e24..73d50f26085 100644 --- a/addons/hr_expense/i18n/tr.po +++ b/addons/hr_expense/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/uk.po b/addons/hr_expense/i18n/uk.po index f64f9c9843e..455fc0c55e1 100644 --- a/addons/hr_expense/i18n/uk.po +++ b/addons/hr_expense/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/vi.po b/addons/hr_expense/i18n/vi.po index 064f634baf0..4ff608b6beb 100644 --- a/addons/hr_expense/i18n/vi.po +++ b/addons/hr_expense/i18n/vi.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/zh_CN.po b/addons/hr_expense/i18n/zh_CN.po index 1dd93d020af..4c3bdbd6bf8 100644 --- a/addons/hr_expense/i18n/zh_CN.po +++ b/addons/hr_expense/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_expense/i18n/zh_TW.po b/addons/hr_expense/i18n/zh_TW.po index b602ecaf4cd..55ef7cb44db 100644 --- a/addons/hr_expense/i18n/zh_TW.po +++ b/addons/hr_expense/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_expense diff --git a/addons/hr_holidays/i18n/ar.po b/addons/hr_holidays/i18n/ar.po index 53159a0344e..657cdf3d9a4 100644 --- a/addons/hr_holidays/i18n/ar.po +++ b/addons/hr_holidays/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/bg.po b/addons/hr_holidays/i18n/bg.po index b10bb6f320c..1b9d06a504d 100644 --- a/addons/hr_holidays/i18n/bg.po +++ b/addons/hr_holidays/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/bs.po b/addons/hr_holidays/i18n/bs.po index 5aa8a2059ca..c3cc7e7445c 100644 --- a/addons/hr_holidays/i18n/bs.po +++ b/addons/hr_holidays/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/ca.po b/addons/hr_holidays/i18n/ca.po index 6a269b3f7aa..fac7ba26e45 100644 --- a/addons/hr_holidays/i18n/ca.po +++ b/addons/hr_holidays/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/cs.po b/addons/hr_holidays/i18n/cs.po index ee07e10682e..13df1c05312 100644 --- a/addons/hr_holidays/i18n/cs.po +++ b/addons/hr_holidays/i18n/cs.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/hr_holidays/i18n/da.po b/addons/hr_holidays/i18n/da.po index 18617e123d4..35ddb05c050 100644 --- a/addons/hr_holidays/i18n/da.po +++ b/addons/hr_holidays/i18n/da.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/de.po b/addons/hr_holidays/i18n/de.po index 7ade2214c7b..1c250f9e8c8 100644 --- a/addons/hr_holidays/i18n/de.po +++ b/addons/hr_holidays/i18n/de.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/el.po b/addons/hr_holidays/i18n/el.po index 5f603b4634b..4cfb27cb6ef 100644 --- a/addons/hr_holidays/i18n/el.po +++ b/addons/hr_holidays/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/hr_holidays/i18n/es.po b/addons/hr_holidays/i18n/es.po index 1e5be3bc6c2..bd0b738ad0f 100644 --- a/addons/hr_holidays/i18n/es.po +++ b/addons/hr_holidays/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/es_AR.po b/addons/hr_holidays/i18n/es_AR.po index f0d26bd9d09..d217992d520 100644 --- a/addons/hr_holidays/i18n/es_AR.po +++ b/addons/hr_holidays/i18n/es_AR.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/es_CR.po b/addons/hr_holidays/i18n/es_CR.po index 32349b36e76..2280d598ab0 100644 --- a/addons/hr_holidays/i18n/es_CR.po +++ b/addons/hr_holidays/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/hr_holidays/i18n/es_EC.po b/addons/hr_holidays/i18n/es_EC.po index 7c29ec8c5f8..5fc2adbc371 100644 --- a/addons/hr_holidays/i18n/es_EC.po +++ b/addons/hr_holidays/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/et.po b/addons/hr_holidays/i18n/et.po index 6e362df0d84..0d746645af9 100644 --- a/addons/hr_holidays/i18n/et.po +++ b/addons/hr_holidays/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/fi.po b/addons/hr_holidays/i18n/fi.po index e2bfe2ff706..753e2d1a263 100644 --- a/addons/hr_holidays/i18n/fi.po +++ b/addons/hr_holidays/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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/fr.po b/addons/hr_holidays/i18n/fr.po index 26744f2ccc9..8e82a47ad29 100644 --- a/addons/hr_holidays/i18n/fr.po +++ b/addons/hr_holidays/i18n/fr.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/gu.po b/addons/hr_holidays/i18n/gu.po index 29d29741682..d125c0cdbab 100644 --- a/addons/hr_holidays/i18n/gu.po +++ b/addons/hr_holidays/i18n/gu.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/hi.po b/addons/hr_holidays/i18n/hi.po index d37fa2cff93..8393b2e8cf7 100644 --- a/addons/hr_holidays/i18n/hi.po +++ b/addons/hr_holidays/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/hr.po b/addons/hr_holidays/i18n/hr.po index 014ec4ac77c..ad9625ac438 100644 --- a/addons/hr_holidays/i18n/hr.po +++ b/addons/hr_holidays/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/hu.po b/addons/hr_holidays/i18n/hu.po index 1f39f2654c1..fd168ce9869 100644 --- a/addons/hr_holidays/i18n/hu.po +++ b/addons/hr_holidays/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/id.po b/addons/hr_holidays/i18n/id.po index 4bdc7a8c8f0..06b98cc9586 100644 --- a/addons/hr_holidays/i18n/id.po +++ b/addons/hr_holidays/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/it.po b/addons/hr_holidays/i18n/it.po index 4b830765fd2..21bcd794ed4 100644 --- a/addons/hr_holidays/i18n/it.po +++ b/addons/hr_holidays/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/ja.po b/addons/hr_holidays/i18n/ja.po index 97e7a9ff610..6b7a39b646f 100644 --- a/addons/hr_holidays/i18n/ja.po +++ b/addons/hr_holidays/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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/ko.po b/addons/hr_holidays/i18n/ko.po index 8614a0ebdf2..8fef847260f 100644 --- a/addons/hr_holidays/i18n/ko.po +++ b/addons/hr_holidays/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/lt.po b/addons/hr_holidays/i18n/lt.po index fc3087cecd5..b6ed0a6e39b 100644 --- a/addons/hr_holidays/i18n/lt.po +++ b/addons/hr_holidays/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/lv.po b/addons/hr_holidays/i18n/lv.po index 331de1bc4e3..d9984cdc995 100644 --- a/addons/hr_holidays/i18n/lv.po +++ b/addons/hr_holidays/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/mk.po b/addons/hr_holidays/i18n/mk.po index a7eaa1f5e6e..c5c419e81a1 100644 --- a/addons/hr_holidays/i18n/mk.po +++ b/addons/hr_holidays/i18n/mk.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/mn.po b/addons/hr_holidays/i18n/mn.po index b9e6b4a7a25..a080e96a785 100644 --- a/addons/hr_holidays/i18n/mn.po +++ b/addons/hr_holidays/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/nb.po b/addons/hr_holidays/i18n/nb.po index 55022c82b48..771902ff8ec 100644 --- a/addons/hr_holidays/i18n/nb.po +++ b/addons/hr_holidays/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/nl.po b/addons/hr_holidays/i18n/nl.po index 7cda7e8cae6..514c5da6f88 100644 --- a/addons/hr_holidays/i18n/nl.po +++ b/addons/hr_holidays/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/nl_BE.po b/addons/hr_holidays/i18n/nl_BE.po index b6e4a21c2b8..4ff235bd8fe 100644 --- a/addons/hr_holidays/i18n/nl_BE.po +++ b/addons/hr_holidays/i18n/nl_BE.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/pl.po b/addons/hr_holidays/i18n/pl.po index d584cf3afe4..ebc13bc02d4 100644 --- a/addons/hr_holidays/i18n/pl.po +++ b/addons/hr_holidays/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/pt.po b/addons/hr_holidays/i18n/pt.po index 932de35a7ef..214d881b928 100644 --- a/addons/hr_holidays/i18n/pt.po +++ b/addons/hr_holidays/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/pt_BR.po b/addons/hr_holidays/i18n/pt_BR.po index 7ea414cabf7..3a1dcfb1b0f 100644 --- a/addons/hr_holidays/i18n/pt_BR.po +++ b/addons/hr_holidays/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/ro.po b/addons/hr_holidays/i18n/ro.po index d11a043f6d9..fb5c0fcef4b 100644 --- a/addons/hr_holidays/i18n/ro.po +++ b/addons/hr_holidays/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/ru.po b/addons/hr_holidays/i18n/ru.po index ebb8ff72023..c2ce405b8e7 100644 --- a/addons/hr_holidays/i18n/ru.po +++ b/addons/hr_holidays/i18n/ru.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/sl.po b/addons/hr_holidays/i18n/sl.po index 6b329a341b1..e88e033974d 100644 --- a/addons/hr_holidays/i18n/sl.po +++ b/addons/hr_holidays/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/sq.po b/addons/hr_holidays/i18n/sq.po index 46e39289a10..d15c95a642f 100644 --- a/addons/hr_holidays/i18n/sq.po +++ b/addons/hr_holidays/i18n/sq.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/sr.po b/addons/hr_holidays/i18n/sr.po index 1b6841d63c1..41cc64b427c 100644 --- a/addons/hr_holidays/i18n/sr.po +++ b/addons/hr_holidays/i18n/sr.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/sr@latin.po b/addons/hr_holidays/i18n/sr@latin.po index f63119ded55..bd3c98114f6 100644 --- a/addons/hr_holidays/i18n/sr@latin.po +++ b/addons/hr_holidays/i18n/sr@latin.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/sv.po b/addons/hr_holidays/i18n/sv.po index cfcb6c746ec..cf06e9189c9 100644 --- a/addons/hr_holidays/i18n/sv.po +++ b/addons/hr_holidays/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/th.po b/addons/hr_holidays/i18n/th.po index 52a8d6e8a2f..18bc24ce991 100644 --- a/addons/hr_holidays/i18n/th.po +++ b/addons/hr_holidays/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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/tlh.po b/addons/hr_holidays/i18n/tlh.po index fc4f7257ae0..e236f88de94 100644 --- a/addons/hr_holidays/i18n/tlh.po +++ b/addons/hr_holidays/i18n/tlh.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/tr.po b/addons/hr_holidays/i18n/tr.po index 7c0996e00bd..97ca1afcdf3 100644 --- a/addons/hr_holidays/i18n/tr.po +++ b/addons/hr_holidays/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/uk.po b/addons/hr_holidays/i18n/uk.po index 7068f96d835..071fc8976a3 100644 --- a/addons/hr_holidays/i18n/uk.po +++ b/addons/hr_holidays/i18n/uk.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/vi.po b/addons/hr_holidays/i18n/vi.po index ba926c8c133..923a4a5fb17 100644 --- a/addons/hr_holidays/i18n/vi.po +++ b/addons/hr_holidays/i18n/vi.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/zh_CN.po b/addons/hr_holidays/i18n/zh_CN.po index 3b5ba5afe86..0bedd068e9a 100644 --- a/addons/hr_holidays/i18n/zh_CN.po +++ b/addons/hr_holidays/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_holidays/i18n/zh_TW.po b/addons/hr_holidays/i18n/zh_TW.po index d48fdd5e42f..5a158cad0df 100644 --- a/addons/hr_holidays/i18n/zh_TW.po +++ b/addons/hr_holidays/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_holidays diff --git a/addons/hr_payroll/i18n/ar.po b/addons/hr_payroll/i18n/ar.po index 64e74d52227..cb399fc1248 100644 --- a/addons/hr_payroll/i18n/ar.po +++ b/addons/hr_payroll/i18n/ar.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/bg.po b/addons/hr_payroll/i18n/bg.po index 2c99972900f..49c84f45852 100644 --- a/addons/hr_payroll/i18n/bg.po +++ b/addons/hr_payroll/i18n/bg.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/ca.po b/addons/hr_payroll/i18n/ca.po index a74ce339adc..98e2563301e 100644 --- a/addons/hr_payroll/i18n/ca.po +++ b/addons/hr_payroll/i18n/ca.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/cs.po b/addons/hr_payroll/i18n/cs.po index 594979d835f..51920baa156 100644 --- a/addons/hr_payroll/i18n/cs.po +++ b/addons/hr_payroll/i18n/cs.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/hr_payroll/i18n/da.po b/addons/hr_payroll/i18n/da.po index f6b7e25b497..e27de3d491e 100644 --- a/addons/hr_payroll/i18n/da.po +++ b/addons/hr_payroll/i18n/da.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/de.po b/addons/hr_payroll/i18n/de.po index 1ce26200723..8fe40ab511c 100644 --- a/addons/hr_payroll/i18n/de.po +++ b/addons/hr_payroll/i18n/de.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/en_GB.po b/addons/hr_payroll/i18n/en_GB.po index 4be185c4aca..0663a571778 100644 --- a/addons/hr_payroll/i18n/en_GB.po +++ b/addons/hr_payroll/i18n/en_GB.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/es.po b/addons/hr_payroll/i18n/es.po index 17ed2122301..0f9a2835f56 100644 --- a/addons/hr_payroll/i18n/es.po +++ b/addons/hr_payroll/i18n/es.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/es_CR.po b/addons/hr_payroll/i18n/es_CR.po index d96fe4a10ae..1cc68bda366 100644 --- a/addons/hr_payroll/i18n/es_CR.po +++ b/addons/hr_payroll/i18n/es_CR.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/hr_payroll/i18n/es_EC.po b/addons/hr_payroll/i18n/es_EC.po index 57e2e9ac366..cdb336b77d0 100644 --- a/addons/hr_payroll/i18n/es_EC.po +++ b/addons/hr_payroll/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/es_MX.po b/addons/hr_payroll/i18n/es_MX.po index abdc4c54eae..0806e1ba388 100644 --- a/addons/hr_payroll/i18n/es_MX.po +++ b/addons/hr_payroll/i18n/es_MX.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/et.po b/addons/hr_payroll/i18n/et.po index 1544f21d0e6..b26f8507da2 100644 --- a/addons/hr_payroll/i18n/et.po +++ b/addons/hr_payroll/i18n/et.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/fi.po b/addons/hr_payroll/i18n/fi.po index a09202bc415..38b29b51ff0 100644 --- a/addons/hr_payroll/i18n/fi.po +++ b/addons/hr_payroll/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/fr.po b/addons/hr_payroll/i18n/fr.po index 765e1a44391..705086d36a1 100644 --- a/addons/hr_payroll/i18n/fr.po +++ b/addons/hr_payroll/i18n/fr.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/gl.po b/addons/hr_payroll/i18n/gl.po index f053fb27b24..5e242365c54 100644 --- a/addons/hr_payroll/i18n/gl.po +++ b/addons/hr_payroll/i18n/gl.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/gu.po b/addons/hr_payroll/i18n/gu.po index 9e73f559511..208e57be651 100644 --- a/addons/hr_payroll/i18n/gu.po +++ b/addons/hr_payroll/i18n/gu.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/he.po b/addons/hr_payroll/i18n/he.po index a431102c8eb..6ebd8e2710c 100644 --- a/addons/hr_payroll/i18n/he.po +++ b/addons/hr_payroll/i18n/he.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/hr.po b/addons/hr_payroll/i18n/hr.po index ea6f458058c..bcf2ec9e92d 100644 --- a/addons/hr_payroll/i18n/hr.po +++ b/addons/hr_payroll/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/hu.po b/addons/hr_payroll/i18n/hu.po index a1cdb391461..71ed4032cb2 100644 --- a/addons/hr_payroll/i18n/hu.po +++ b/addons/hr_payroll/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/id.po b/addons/hr_payroll/i18n/id.po index 352827518ca..3abf4beb6d7 100644 --- a/addons/hr_payroll/i18n/id.po +++ b/addons/hr_payroll/i18n/id.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/it.po b/addons/hr_payroll/i18n/it.po index 67996de5c87..6424f3ab1ae 100644 --- a/addons/hr_payroll/i18n/it.po +++ b/addons/hr_payroll/i18n/it.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/ja.po b/addons/hr_payroll/i18n/ja.po index b610a9e9bea..7f6cf6282e2 100644 --- a/addons/hr_payroll/i18n/ja.po +++ b/addons/hr_payroll/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/lo.po b/addons/hr_payroll/i18n/lo.po index 7d5c68b576e..54a05c00f99 100644 --- a/addons/hr_payroll/i18n/lo.po +++ b/addons/hr_payroll/i18n/lo.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/lt.po b/addons/hr_payroll/i18n/lt.po index 9290a883d49..d2f941a05c3 100644 --- a/addons/hr_payroll/i18n/lt.po +++ b/addons/hr_payroll/i18n/lt.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/lv.po b/addons/hr_payroll/i18n/lv.po index 363276a300a..ef71927a2ff 100644 --- a/addons/hr_payroll/i18n/lv.po +++ b/addons/hr_payroll/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/mk.po b/addons/hr_payroll/i18n/mk.po index bf09f4b9e5e..b3618a7f424 100644 --- a/addons/hr_payroll/i18n/mk.po +++ b/addons/hr_payroll/i18n/mk.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/mn.po b/addons/hr_payroll/i18n/mn.po index 767532dd075..6374902ea9a 100644 --- a/addons/hr_payroll/i18n/mn.po +++ b/addons/hr_payroll/i18n/mn.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/nb.po b/addons/hr_payroll/i18n/nb.po index 03caa89b789..feaedb7ccd1 100644 --- a/addons/hr_payroll/i18n/nb.po +++ b/addons/hr_payroll/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/nl.po b/addons/hr_payroll/i18n/nl.po index f3602d67a3d..ae7bbb97e86 100644 --- a/addons/hr_payroll/i18n/nl.po +++ b/addons/hr_payroll/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll @@ -1214,7 +1214,7 @@ msgstr "Salarisberekening" #. module: hr_payroll #: view:hr.payslip:0 msgid "Details By Salary Rule Category" -msgstr "details per salarisregel categorie" +msgstr "Details per salarisregel categorie" #. module: hr_payroll #: help:hr.payslip.input,code:0 diff --git a/addons/hr_payroll/i18n/pl.po b/addons/hr_payroll/i18n/pl.po index ac437f5c9af..7db49919a4e 100644 --- a/addons/hr_payroll/i18n/pl.po +++ b/addons/hr_payroll/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/pt.po b/addons/hr_payroll/i18n/pt.po index b3daa94d104..e5359ab15b3 100644 --- a/addons/hr_payroll/i18n/pt.po +++ b/addons/hr_payroll/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/pt_BR.po b/addons/hr_payroll/i18n/pt_BR.po index 187587efb26..d19a61b1aa0 100644 --- a/addons/hr_payroll/i18n/pt_BR.po +++ b/addons/hr_payroll/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/ro.po b/addons/hr_payroll/i18n/ro.po index c6213eb3891..956191f45b9 100644 --- a/addons/hr_payroll/i18n/ro.po +++ b/addons/hr_payroll/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/ru.po b/addons/hr_payroll/i18n/ru.po index 6980ac52dc3..8a2e6a5c98f 100644 --- a/addons/hr_payroll/i18n/ru.po +++ b/addons/hr_payroll/i18n/ru.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/sl.po b/addons/hr_payroll/i18n/sl.po index 355635643e0..9df66444d25 100644 --- a/addons/hr_payroll/i18n/sl.po +++ b/addons/hr_payroll/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/sr.po b/addons/hr_payroll/i18n/sr.po index bb5ddec912c..5a1e2091136 100644 --- a/addons/hr_payroll/i18n/sr.po +++ b/addons/hr_payroll/i18n/sr.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/sr@latin.po b/addons/hr_payroll/i18n/sr@latin.po index 4a04cf188ab..ff7370c1e3b 100644 --- a/addons/hr_payroll/i18n/sr@latin.po +++ b/addons/hr_payroll/i18n/sr@latin.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/sv.po b/addons/hr_payroll/i18n/sv.po index 41c094b55ea..3d6df8e61e0 100644 --- a/addons/hr_payroll/i18n/sv.po +++ b/addons/hr_payroll/i18n/sv.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/tr.po b/addons/hr_payroll/i18n/tr.po index 92fef5676f0..800801a2f71 100644 --- a/addons/hr_payroll/i18n/tr.po +++ b/addons/hr_payroll/i18n/tr.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/vi.po b/addons/hr_payroll/i18n/vi.po index 2a273d856b3..0f244c7d620 100644 --- a/addons/hr_payroll/i18n/vi.po +++ b/addons/hr_payroll/i18n/vi.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll/i18n/zh_CN.po b/addons/hr_payroll/i18n/zh_CN.po index a98a72221b5..3881e7545b8 100644 --- a/addons/hr_payroll/i18n/zh_CN.po +++ b/addons/hr_payroll/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll diff --git a/addons/hr_payroll_account/i18n/ar.po b/addons/hr_payroll_account/i18n/ar.po index f73293663c3..92b4ff27e62 100644 --- a/addons/hr_payroll_account/i18n/ar.po +++ b/addons/hr_payroll_account/i18n/ar.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/bg.po b/addons/hr_payroll_account/i18n/bg.po index 725cc95a9e3..94d1d1d2a0a 100644 --- a/addons/hr_payroll_account/i18n/bg.po +++ b/addons/hr_payroll_account/i18n/bg.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/ca.po b/addons/hr_payroll_account/i18n/ca.po index 60ada0b8e9f..dba516c883e 100644 --- a/addons/hr_payroll_account/i18n/ca.po +++ b/addons/hr_payroll_account/i18n/ca.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/da.po b/addons/hr_payroll_account/i18n/da.po index b0e2c745f0e..1d0f6e416be 100644 --- a/addons/hr_payroll_account/i18n/da.po +++ b/addons/hr_payroll_account/i18n/da.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/de.po b/addons/hr_payroll_account/i18n/de.po index cc27e9d9a52..01428b0f85d 100644 --- a/addons/hr_payroll_account/i18n/de.po +++ b/addons/hr_payroll_account/i18n/de.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/en_GB.po b/addons/hr_payroll_account/i18n/en_GB.po index 8db4597a9c5..3c48600c909 100644 --- a/addons/hr_payroll_account/i18n/en_GB.po +++ b/addons/hr_payroll_account/i18n/en_GB.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/es.po b/addons/hr_payroll_account/i18n/es.po index f3d4a75af4a..d261d89116d 100644 --- a/addons/hr_payroll_account/i18n/es.po +++ b/addons/hr_payroll_account/i18n/es.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/es_CR.po b/addons/hr_payroll_account/i18n/es_CR.po index 3504c5b865b..47e7e51c9ae 100644 --- a/addons/hr_payroll_account/i18n/es_CR.po +++ b/addons/hr_payroll_account/i18n/es_CR.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/hr_payroll_account/i18n/es_EC.po b/addons/hr_payroll_account/i18n/es_EC.po index d9d49b16aa8..fcbf3122382 100644 --- a/addons/hr_payroll_account/i18n/es_EC.po +++ b/addons/hr_payroll_account/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/es_PY.po b/addons/hr_payroll_account/i18n/es_PY.po index e6aef933aed..d99d48bb170 100644 --- a/addons/hr_payroll_account/i18n/es_PY.po +++ b/addons/hr_payroll_account/i18n/es_PY.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/fr.po b/addons/hr_payroll_account/i18n/fr.po index 6263860ca8b..dfb3ab74c19 100644 --- a/addons/hr_payroll_account/i18n/fr.po +++ b/addons/hr_payroll_account/i18n/fr.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/gl.po b/addons/hr_payroll_account/i18n/gl.po index ce46793428d..14282794b71 100644 --- a/addons/hr_payroll_account/i18n/gl.po +++ b/addons/hr_payroll_account/i18n/gl.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/gu.po b/addons/hr_payroll_account/i18n/gu.po index 5edb342a454..aa979d77dad 100644 --- a/addons/hr_payroll_account/i18n/gu.po +++ b/addons/hr_payroll_account/i18n/gu.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/hr.po b/addons/hr_payroll_account/i18n/hr.po index b318a9d663d..66be66a8645 100644 --- a/addons/hr_payroll_account/i18n/hr.po +++ b/addons/hr_payroll_account/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/hu.po b/addons/hr_payroll_account/i18n/hu.po index 6ab16c528b5..4006c76f710 100644 --- a/addons/hr_payroll_account/i18n/hu.po +++ b/addons/hr_payroll_account/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/id.po b/addons/hr_payroll_account/i18n/id.po index 388d871aa6e..1122a286290 100644 --- a/addons/hr_payroll_account/i18n/id.po +++ b/addons/hr_payroll_account/i18n/id.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/it.po b/addons/hr_payroll_account/i18n/it.po index 314cafc49ed..cca0eea6098 100644 --- a/addons/hr_payroll_account/i18n/it.po +++ b/addons/hr_payroll_account/i18n/it.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/ja.po b/addons/hr_payroll_account/i18n/ja.po index b41a1bd30de..797b2e1dfaf 100644 --- a/addons/hr_payroll_account/i18n/ja.po +++ b/addons/hr_payroll_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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/lv.po b/addons/hr_payroll_account/i18n/lv.po index ac346b994e6..7a284a21d73 100644 --- a/addons/hr_payroll_account/i18n/lv.po +++ b/addons/hr_payroll_account/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/mk.po b/addons/hr_payroll_account/i18n/mk.po index bd72a897529..6bc6538aa89 100644 --- a/addons/hr_payroll_account/i18n/mk.po +++ b/addons/hr_payroll_account/i18n/mk.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/mn.po b/addons/hr_payroll_account/i18n/mn.po index c205196ad21..91373f56ffe 100644 --- a/addons/hr_payroll_account/i18n/mn.po +++ b/addons/hr_payroll_account/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/nb.po b/addons/hr_payroll_account/i18n/nb.po index 416ab79e456..0600f14c635 100644 --- a/addons/hr_payroll_account/i18n/nb.po +++ b/addons/hr_payroll_account/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/nl.po b/addons/hr_payroll_account/i18n/nl.po index 0e95d9876bd..7a502934814 100644 --- a/addons/hr_payroll_account/i18n/nl.po +++ b/addons/hr_payroll_account/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/pl.po b/addons/hr_payroll_account/i18n/pl.po index 4872da30767..9530b2a251b 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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/pt.po b/addons/hr_payroll_account/i18n/pt.po index 1cd2455fb71..586774cd170 100644 --- a/addons/hr_payroll_account/i18n/pt.po +++ b/addons/hr_payroll_account/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/pt_BR.po b/addons/hr_payroll_account/i18n/pt_BR.po index d421381619b..42d65f877e1 100644 --- a/addons/hr_payroll_account/i18n/pt_BR.po +++ b/addons/hr_payroll_account/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/ro.po b/addons/hr_payroll_account/i18n/ro.po index 1cdf141a907..8717d66541e 100644 --- a/addons/hr_payroll_account/i18n/ro.po +++ b/addons/hr_payroll_account/i18n/ro.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/ru.po b/addons/hr_payroll_account/i18n/ru.po index 839ba04ac53..1ba5d84716a 100644 --- a/addons/hr_payroll_account/i18n/ru.po +++ b/addons/hr_payroll_account/i18n/ru.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/sl.po b/addons/hr_payroll_account/i18n/sl.po index 551b07c9978..859a809bfe8 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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\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 535e63ddfdf..a253d91a6c7 100644 --- a/addons/hr_payroll_account/i18n/sr@latin.po +++ b/addons/hr_payroll_account/i18n/sr@latin.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/sv.po b/addons/hr_payroll_account/i18n/sv.po index 628dbc7fd73..d5386e0a660 100644 --- a/addons/hr_payroll_account/i18n/sv.po +++ b/addons/hr_payroll_account/i18n/sv.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/tr.po b/addons/hr_payroll_account/i18n/tr.po index 617bab0eb34..6b97c810a8c 100644 --- a/addons/hr_payroll_account/i18n/tr.po +++ b/addons/hr_payroll_account/i18n/tr.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_payroll_account/i18n/zh_CN.po b/addons/hr_payroll_account/i18n/zh_CN.po index 0a57c184cd2..c03b16f7602 100644 --- a/addons/hr_payroll_account/i18n/zh_CN.po +++ b/addons/hr_payroll_account/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_payroll_account diff --git a/addons/hr_recruitment/i18n/ar.po b/addons/hr_recruitment/i18n/ar.po index 0107eb45036..e8404490c1a 100644 --- a/addons/hr_recruitment/i18n/ar.po +++ b/addons/hr_recruitment/i18n/ar.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/bg.po b/addons/hr_recruitment/i18n/bg.po index 16cfb55eba4..1c635310dc3 100644 --- a/addons/hr_recruitment/i18n/bg.po +++ b/addons/hr_recruitment/i18n/bg.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/ca.po b/addons/hr_recruitment/i18n/ca.po index 3d77bfcd3a8..b2a186e9853 100644 --- a/addons/hr_recruitment/i18n/ca.po +++ b/addons/hr_recruitment/i18n/ca.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/da.po b/addons/hr_recruitment/i18n/da.po index 4780e3a875e..e6f97cde4b2 100644 --- a/addons/hr_recruitment/i18n/da.po +++ b/addons/hr_recruitment/i18n/da.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/de.po b/addons/hr_recruitment/i18n/de.po index f89b9d02748..203f5884e88 100644 --- a/addons/hr_recruitment/i18n/de.po +++ b/addons/hr_recruitment/i18n/de.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/es.po b/addons/hr_recruitment/i18n/es.po index 3f7a839db5e..66dbe470956 100644 --- a/addons/hr_recruitment/i18n/es.po +++ b/addons/hr_recruitment/i18n/es.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/es_CR.po b/addons/hr_recruitment/i18n/es_CR.po index 15a6779475a..d6c9497e451 100644 --- a/addons/hr_recruitment/i18n/es_CR.po +++ b/addons/hr_recruitment/i18n/es_CR.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/fr.po b/addons/hr_recruitment/i18n/fr.po index 2bc61e26768..90f3f430044 100644 --- a/addons/hr_recruitment/i18n/fr.po +++ b/addons/hr_recruitment/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/hi.po b/addons/hr_recruitment/i18n/hi.po index 7cff795853a..832c0227b0e 100644 --- a/addons/hr_recruitment/i18n/hi.po +++ b/addons/hr_recruitment/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/hr.po b/addons/hr_recruitment/i18n/hr.po index 99dab58cc3a..55f37172f77 100644 --- a/addons/hr_recruitment/i18n/hr.po +++ b/addons/hr_recruitment/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/hu.po b/addons/hr_recruitment/i18n/hu.po index 5117d100dbb..7d956b34c6d 100644 --- a/addons/hr_recruitment/i18n/hu.po +++ b/addons/hr_recruitment/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/id.po b/addons/hr_recruitment/i18n/id.po index bf58b41b9a9..61346aaec0a 100644 --- a/addons/hr_recruitment/i18n/id.po +++ b/addons/hr_recruitment/i18n/id.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/it.po b/addons/hr_recruitment/i18n/it.po index b5638109893..e2e976750b2 100644 --- a/addons/hr_recruitment/i18n/it.po +++ b/addons/hr_recruitment/i18n/it.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/ja.po b/addons/hr_recruitment/i18n/ja.po index d6b3506d1c4..803b77c8c2c 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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/mk.po b/addons/hr_recruitment/i18n/mk.po index fa3c71dd3ac..ca261b156da 100644 --- a/addons/hr_recruitment/i18n/mk.po +++ b/addons/hr_recruitment/i18n/mk.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/mn.po b/addons/hr_recruitment/i18n/mn.po index 863ef6b5933..45376a84668 100644 --- a/addons/hr_recruitment/i18n/mn.po +++ b/addons/hr_recruitment/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/nb.po b/addons/hr_recruitment/i18n/nb.po index 90472a6cb67..6a07645f013 100644 --- a/addons/hr_recruitment/i18n/nb.po +++ b/addons/hr_recruitment/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/nl.po b/addons/hr_recruitment/i18n/nl.po index 5e436597c4c..b6d414d19ea 100644 --- a/addons/hr_recruitment/i18n/nl.po +++ b/addons/hr_recruitment/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/pl.po b/addons/hr_recruitment/i18n/pl.po index cc0a38aaa2d..e34165af28b 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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/pt.po b/addons/hr_recruitment/i18n/pt.po index 4908a0f95e4..8a580ed079a 100644 --- a/addons/hr_recruitment/i18n/pt.po +++ b/addons/hr_recruitment/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/pt_BR.po b/addons/hr_recruitment/i18n/pt_BR.po index d4381afb364..b9eabdccce2 100644 --- a/addons/hr_recruitment/i18n/pt_BR.po +++ b/addons/hr_recruitment/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/ro.po b/addons/hr_recruitment/i18n/ro.po index a816f6fc49a..b7e367adc60 100644 --- a/addons/hr_recruitment/i18n/ro.po +++ b/addons/hr_recruitment/i18n/ro.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/ru.po b/addons/hr_recruitment/i18n/ru.po index 84d6e6c69f2..f0c289b36f0 100644 --- a/addons/hr_recruitment/i18n/ru.po +++ b/addons/hr_recruitment/i18n/ru.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/sl.po b/addons/hr_recruitment/i18n/sl.po index 054d36976d0..5fe0d75aa83 100644 --- a/addons/hr_recruitment/i18n/sl.po +++ b/addons/hr_recruitment/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/sr.po b/addons/hr_recruitment/i18n/sr.po index 74a10e3abdd..c5153c93b74 100644 --- a/addons/hr_recruitment/i18n/sr.po +++ b/addons/hr_recruitment/i18n/sr.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/sr@latin.po b/addons/hr_recruitment/i18n/sr@latin.po index cda0055a4e5..600a6dc3b50 100644 --- a/addons/hr_recruitment/i18n/sr@latin.po +++ b/addons/hr_recruitment/i18n/sr@latin.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/sv.po b/addons/hr_recruitment/i18n/sv.po index b5c88231c0b..80763de40fc 100644 --- a/addons/hr_recruitment/i18n/sv.po +++ b/addons/hr_recruitment/i18n/sv.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/tr.po b/addons/hr_recruitment/i18n/tr.po index 8801cc46f21..9934edb1a7a 100644 --- a/addons/hr_recruitment/i18n/tr.po +++ b/addons/hr_recruitment/i18n/tr.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/vi.po b/addons/hr_recruitment/i18n/vi.po index ed24c496e3d..4b19aaca2b8 100644 --- a/addons/hr_recruitment/i18n/vi.po +++ b/addons/hr_recruitment/i18n/vi.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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_recruitment/i18n/zh_CN.po b/addons/hr_recruitment/i18n/zh_CN.po index 78e601ed1dd..10c1b525345 100644 --- a/addons/hr_recruitment/i18n/zh_CN.po +++ b/addons/hr_recruitment/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-03-15 05:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_recruitment diff --git a/addons/hr_timesheet/i18n/ar.po b/addons/hr_timesheet/i18n/ar.po index 1ce2db03a32..ef235c4b435 100644 --- a/addons/hr_timesheet/i18n/ar.po +++ b/addons/hr_timesheet/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/bg.po b/addons/hr_timesheet/i18n/bg.po index 9cc995fc72b..6f078654bef 100644 --- a/addons/hr_timesheet/i18n/bg.po +++ b/addons/hr_timesheet/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/bs.po b/addons/hr_timesheet/i18n/bs.po index 197c8732829..0d8dbc19a38 100644 --- a/addons/hr_timesheet/i18n/bs.po +++ b/addons/hr_timesheet/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/ca.po b/addons/hr_timesheet/i18n/ca.po index f6b11d8eb14..5f27bf0b185 100644 --- a/addons/hr_timesheet/i18n/ca.po +++ b/addons/hr_timesheet/i18n/ca.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/cs.po b/addons/hr_timesheet/i18n/cs.po index 447ad22bbf6..9371cbefd61 100644 --- a/addons/hr_timesheet/i18n/cs.po +++ b/addons/hr_timesheet/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/hr_timesheet/i18n/da.po b/addons/hr_timesheet/i18n/da.po index 5bdbe2c897d..714e5bc6436 100644 --- a/addons/hr_timesheet/i18n/da.po +++ b/addons/hr_timesheet/i18n/da.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/de.po b/addons/hr_timesheet/i18n/de.po index 5371128945c..7ffa955951c 100644 --- a/addons/hr_timesheet/i18n/de.po +++ b/addons/hr_timesheet/i18n/de.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/el.po b/addons/hr_timesheet/i18n/el.po index df5ed280ac2..f92ee2d3daf 100644 --- a/addons/hr_timesheet/i18n/el.po +++ b/addons/hr_timesheet/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/hr_timesheet/i18n/en_GB.po b/addons/hr_timesheet/i18n/en_GB.po index f76a5882748..1a8d6283956 100644 --- a/addons/hr_timesheet/i18n/en_GB.po +++ b/addons/hr_timesheet/i18n/en_GB.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/es.po b/addons/hr_timesheet/i18n/es.po index 92f7a95b6da..f81e7d14488 100644 --- a/addons/hr_timesheet/i18n/es.po +++ b/addons/hr_timesheet/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/es_AR.po b/addons/hr_timesheet/i18n/es_AR.po index 0e376085423..6570b12c09c 100644 --- a/addons/hr_timesheet/i18n/es_AR.po +++ b/addons/hr_timesheet/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/es_CR.po b/addons/hr_timesheet/i18n/es_CR.po index 8b8257b253c..817e347ca1c 100644 --- a/addons/hr_timesheet/i18n/es_CR.po +++ b/addons/hr_timesheet/i18n/es_CR.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/es_EC.po b/addons/hr_timesheet/i18n/es_EC.po index 35526470f56..4b6185884f1 100644 --- a/addons/hr_timesheet/i18n/es_EC.po +++ b/addons/hr_timesheet/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/et.po b/addons/hr_timesheet/i18n/et.po index fbfb65607b8..554ac6a60a8 100644 --- a/addons/hr_timesheet/i18n/et.po +++ b/addons/hr_timesheet/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/fi.po b/addons/hr_timesheet/i18n/fi.po index 68a02666d2f..52587f2eed2 100644 --- a/addons/hr_timesheet/i18n/fi.po +++ b/addons/hr_timesheet/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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/fr.po b/addons/hr_timesheet/i18n/fr.po index ab9c51b371b..36d8deca9c7 100644 --- a/addons/hr_timesheet/i18n/fr.po +++ b/addons/hr_timesheet/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #~ msgid "Error: UOS must be in a different category than the UOM" diff --git a/addons/hr_timesheet/i18n/gl.po b/addons/hr_timesheet/i18n/gl.po index 83fa792c0b1..683ea27a5a0 100644 --- a/addons/hr_timesheet/i18n/gl.po +++ b/addons/hr_timesheet/i18n/gl.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/hr.po b/addons/hr_timesheet/i18n/hr.po index 20232960330..10e3a9e4c50 100644 --- a/addons/hr_timesheet/i18n/hr.po +++ b/addons/hr_timesheet/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/hr_timesheet/i18n/hu.po b/addons/hr_timesheet/i18n/hu.po index 87ed131e08b..f0978f7f4e3 100644 --- a/addons/hr_timesheet/i18n/hu.po +++ b/addons/hr_timesheet/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/id.po b/addons/hr_timesheet/i18n/id.po index 1b20393cdc9..0c27902ab4a 100644 --- a/addons/hr_timesheet/i18n/id.po +++ b/addons/hr_timesheet/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/it.po b/addons/hr_timesheet/i18n/it.po index b719d792755..042ebbbd108 100644 --- a/addons/hr_timesheet/i18n/it.po +++ b/addons/hr_timesheet/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/ja.po b/addons/hr_timesheet/i18n/ja.po index 46c31fcbfe9..74160bca386 100644 --- a/addons/hr_timesheet/i18n/ja.po +++ b/addons/hr_timesheet/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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/ko.po b/addons/hr_timesheet/i18n/ko.po index 9c5cccfda3d..6b8d4a69222 100644 --- a/addons/hr_timesheet/i18n/ko.po +++ b/addons/hr_timesheet/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/lt.po b/addons/hr_timesheet/i18n/lt.po index 79fba207288..d7883a3898f 100644 --- a/addons/hr_timesheet/i18n/lt.po +++ b/addons/hr_timesheet/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/lv.po b/addons/hr_timesheet/i18n/lv.po index f6f0713f055..8431bf26b1b 100644 --- a/addons/hr_timesheet/i18n/lv.po +++ b/addons/hr_timesheet/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/mk.po b/addons/hr_timesheet/i18n/mk.po index 24426da7455..77d481d44a7 100644 --- a/addons/hr_timesheet/i18n/mk.po +++ b/addons/hr_timesheet/i18n/mk.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/mn.po b/addons/hr_timesheet/i18n/mn.po index 9c62056d0c8..e848d21f666 100644 --- a/addons/hr_timesheet/i18n/mn.po +++ b/addons/hr_timesheet/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/nb.po b/addons/hr_timesheet/i18n/nb.po index fb9feee16a5..12926eb2502 100644 --- a/addons/hr_timesheet/i18n/nb.po +++ b/addons/hr_timesheet/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/nl.po b/addons/hr_timesheet/i18n/nl.po index b28fdb2de6e..1387f7ddfb3 100644 --- a/addons/hr_timesheet/i18n/nl.po +++ b/addons/hr_timesheet/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/pl.po b/addons/hr_timesheet/i18n/pl.po index 65e171ec230..45a3d7e5948 100644 --- a/addons/hr_timesheet/i18n/pl.po +++ b/addons/hr_timesheet/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/pt.po b/addons/hr_timesheet/i18n/pt.po index 9fc0c77c13b..dee326a87ef 100644 --- a/addons/hr_timesheet/i18n/pt.po +++ b/addons/hr_timesheet/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/pt_BR.po b/addons/hr_timesheet/i18n/pt_BR.po index 6327f4dd4a7..b909278f506 100644 --- a/addons/hr_timesheet/i18n/pt_BR.po +++ b/addons/hr_timesheet/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/ro.po b/addons/hr_timesheet/i18n/ro.po index 3ddc5a3c70b..e1e20fd420b 100644 --- a/addons/hr_timesheet/i18n/ro.po +++ b/addons/hr_timesheet/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/ru.po b/addons/hr_timesheet/i18n/ru.po index 70be793cff3..64176899a3b 100644 --- a/addons/hr_timesheet/i18n/ru.po +++ b/addons/hr_timesheet/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/sl.po b/addons/hr_timesheet/i18n/sl.po index 7d60dcff7de..44c701ba8bb 100644 --- a/addons/hr_timesheet/i18n/sl.po +++ b/addons/hr_timesheet/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/sq.po b/addons/hr_timesheet/i18n/sq.po index 0fb10e9ab16..8f0fa7b90e2 100644 --- a/addons/hr_timesheet/i18n/sq.po +++ b/addons/hr_timesheet/i18n/sq.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/sr@latin.po b/addons/hr_timesheet/i18n/sr@latin.po index d226cc268ca..9cb5ce29a47 100644 --- a/addons/hr_timesheet/i18n/sr@latin.po +++ b/addons/hr_timesheet/i18n/sr@latin.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/sv.po b/addons/hr_timesheet/i18n/sv.po index 0ebfee8c13c..12b4edd28fd 100644 --- a/addons/hr_timesheet/i18n/sv.po +++ b/addons/hr_timesheet/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/tlh.po b/addons/hr_timesheet/i18n/tlh.po index 01db654056b..42b6dbcff47 100644 --- a/addons/hr_timesheet/i18n/tlh.po +++ b/addons/hr_timesheet/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/tr.po b/addons/hr_timesheet/i18n/tr.po index 106fb405582..4d1b9a9cc8a 100644 --- a/addons/hr_timesheet/i18n/tr.po +++ b/addons/hr_timesheet/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/uk.po b/addons/hr_timesheet/i18n/uk.po index 23fcbd16a56..acab0f7a2aa 100644 --- a/addons/hr_timesheet/i18n/uk.po +++ b/addons/hr_timesheet/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/vi.po b/addons/hr_timesheet/i18n/vi.po index 8f1c4fe2d56..e09ae2575b2 100644 --- a/addons/hr_timesheet/i18n/vi.po +++ b/addons/hr_timesheet/i18n/vi.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/zh_CN.po b/addons/hr_timesheet/i18n/zh_CN.po index e4424f21bc5..a5f6aec8d9d 100644 --- a/addons/hr_timesheet/i18n/zh_CN.po +++ b/addons/hr_timesheet/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet/i18n/zh_TW.po b/addons/hr_timesheet/i18n/zh_TW.po index 3c2a383e099..4cf89eabd63 100644 --- a/addons/hr_timesheet/i18n/zh_TW.po +++ b/addons/hr_timesheet/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet diff --git a/addons/hr_timesheet_invoice/i18n/ar.po b/addons/hr_timesheet_invoice/i18n/ar.po index 882dde11150..5b2b2e6c351 100644 --- a/addons/hr_timesheet_invoice/i18n/ar.po +++ b/addons/hr_timesheet_invoice/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/bg.po b/addons/hr_timesheet_invoice/i18n/bg.po index 33a670254e9..e405c2709ba 100644 --- a/addons/hr_timesheet_invoice/i18n/bg.po +++ b/addons/hr_timesheet_invoice/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/bs.po b/addons/hr_timesheet_invoice/i18n/bs.po index 61872751197..60245ef307a 100644 --- a/addons/hr_timesheet_invoice/i18n/bs.po +++ b/addons/hr_timesheet_invoice/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/ca.po b/addons/hr_timesheet_invoice/i18n/ca.po index 53017448b72..17bee0c6301 100644 --- a/addons/hr_timesheet_invoice/i18n/ca.po +++ b/addons/hr_timesheet_invoice/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/cs.po b/addons/hr_timesheet_invoice/i18n/cs.po index f2d4bfa604d..e7f47095baf 100644 --- a/addons/hr_timesheet_invoice/i18n/cs.po +++ b/addons/hr_timesheet_invoice/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/da.po b/addons/hr_timesheet_invoice/i18n/da.po index 6862aa4a1ef..421a98bf365 100644 --- a/addons/hr_timesheet_invoice/i18n/da.po +++ b/addons/hr_timesheet_invoice/i18n/da.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/de.po b/addons/hr_timesheet_invoice/i18n/de.po index 6cc0e2fa4d5..2e619daad19 100644 --- a/addons/hr_timesheet_invoice/i18n/de.po +++ b/addons/hr_timesheet_invoice/i18n/de.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/el.po b/addons/hr_timesheet_invoice/i18n/el.po index f36c479ea5f..f95b5f6aa4d 100644 --- a/addons/hr_timesheet_invoice/i18n/el.po +++ b/addons/hr_timesheet_invoice/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/hr_timesheet_invoice/i18n/es.po b/addons/hr_timesheet_invoice/i18n/es.po index b55774f01df..8044b5c2057 100644 --- a/addons/hr_timesheet_invoice/i18n/es.po +++ b/addons/hr_timesheet_invoice/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/es_AR.po b/addons/hr_timesheet_invoice/i18n/es_AR.po index 75298dae3dc..284a39405fc 100644 --- a/addons/hr_timesheet_invoice/i18n/es_AR.po +++ b/addons/hr_timesheet_invoice/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/es_CR.po b/addons/hr_timesheet_invoice/i18n/es_CR.po index dc6930e1d79..edd451ea12d 100644 --- a/addons/hr_timesheet_invoice/i18n/es_CR.po +++ b/addons/hr_timesheet_invoice/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/hr_timesheet_invoice/i18n/es_EC.po b/addons/hr_timesheet_invoice/i18n/es_EC.po index 0b8d08278a6..5cd59354ef2 100644 --- a/addons/hr_timesheet_invoice/i18n/es_EC.po +++ b/addons/hr_timesheet_invoice/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/et.po b/addons/hr_timesheet_invoice/i18n/et.po index c3d679227df..b4589e478ad 100644 --- a/addons/hr_timesheet_invoice/i18n/et.po +++ b/addons/hr_timesheet_invoice/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/fi.po b/addons/hr_timesheet_invoice/i18n/fi.po index bce0e588d8f..3d497cf02d6 100644 --- a/addons/hr_timesheet_invoice/i18n/fi.po +++ b/addons/hr_timesheet_invoice/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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/fr.po b/addons/hr_timesheet_invoice/i18n/fr.po index f0adafb5546..5f62b5f72a6 100644 --- a/addons/hr_timesheet_invoice/i18n/fr.po +++ b/addons/hr_timesheet_invoice/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/hr.po b/addons/hr_timesheet_invoice/i18n/hr.po index 70774a1b4d5..d0cf1626486 100644 --- a/addons/hr_timesheet_invoice/i18n/hr.po +++ b/addons/hr_timesheet_invoice/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/hu.po b/addons/hr_timesheet_invoice/i18n/hu.po index 169e709c49e..7b914aa1631 100644 --- a/addons/hr_timesheet_invoice/i18n/hu.po +++ b/addons/hr_timesheet_invoice/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/id.po b/addons/hr_timesheet_invoice/i18n/id.po index d512c8d8a27..d466750fc01 100644 --- a/addons/hr_timesheet_invoice/i18n/id.po +++ b/addons/hr_timesheet_invoice/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/it.po b/addons/hr_timesheet_invoice/i18n/it.po index e52b6ed0837..ef47edee453 100644 --- a/addons/hr_timesheet_invoice/i18n/it.po +++ b/addons/hr_timesheet_invoice/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/ja.po b/addons/hr_timesheet_invoice/i18n/ja.po index 51a4683dfec..4a4b1246829 100644 --- a/addons/hr_timesheet_invoice/i18n/ja.po +++ b/addons/hr_timesheet_invoice/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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/ko.po b/addons/hr_timesheet_invoice/i18n/ko.po index 6311e820650..3c3fe2b9722 100644 --- a/addons/hr_timesheet_invoice/i18n/ko.po +++ b/addons/hr_timesheet_invoice/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/lt.po b/addons/hr_timesheet_invoice/i18n/lt.po index 4523e3a0bef..1411a2876b3 100644 --- a/addons/hr_timesheet_invoice/i18n/lt.po +++ b/addons/hr_timesheet_invoice/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/lv.po b/addons/hr_timesheet_invoice/i18n/lv.po index 259a86c49da..e96f7194870 100644 --- a/addons/hr_timesheet_invoice/i18n/lv.po +++ b/addons/hr_timesheet_invoice/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/mk.po b/addons/hr_timesheet_invoice/i18n/mk.po index e963f05b27b..5008f8d4674 100644 --- a/addons/hr_timesheet_invoice/i18n/mk.po +++ b/addons/hr_timesheet_invoice/i18n/mk.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/mn.po b/addons/hr_timesheet_invoice/i18n/mn.po index f2c634b65cb..04b9ee2bfab 100644 --- a/addons/hr_timesheet_invoice/i18n/mn.po +++ b/addons/hr_timesheet_invoice/i18n/mn.po @@ -23,7 +23,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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/nl.po b/addons/hr_timesheet_invoice/i18n/nl.po index cc79ecc208b..838a8155371 100644 --- a/addons/hr_timesheet_invoice/i18n/nl.po +++ b/addons/hr_timesheet_invoice/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/nl_BE.po b/addons/hr_timesheet_invoice/i18n/nl_BE.po index 7196329f7d3..671fd18dbcc 100644 --- a/addons/hr_timesheet_invoice/i18n/nl_BE.po +++ b/addons/hr_timesheet_invoice/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/pl.po b/addons/hr_timesheet_invoice/i18n/pl.po index 2ab374da8cf..6c47e47e60f 100644 --- a/addons/hr_timesheet_invoice/i18n/pl.po +++ b/addons/hr_timesheet_invoice/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/pt.po b/addons/hr_timesheet_invoice/i18n/pt.po index 096e05ac197..a3cd105236d 100644 --- a/addons/hr_timesheet_invoice/i18n/pt.po +++ b/addons/hr_timesheet_invoice/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/pt_BR.po b/addons/hr_timesheet_invoice/i18n/pt_BR.po index f187db420cc..5b1c4e684f2 100644 --- a/addons/hr_timesheet_invoice/i18n/pt_BR.po +++ b/addons/hr_timesheet_invoice/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/ro.po b/addons/hr_timesheet_invoice/i18n/ro.po index 9289c07a66b..c9b6d2f81e5 100644 --- a/addons/hr_timesheet_invoice/i18n/ro.po +++ b/addons/hr_timesheet_invoice/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/ru.po b/addons/hr_timesheet_invoice/i18n/ru.po index acab84f31e4..c422ca897f5 100644 --- a/addons/hr_timesheet_invoice/i18n/ru.po +++ b/addons/hr_timesheet_invoice/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/sl.po b/addons/hr_timesheet_invoice/i18n/sl.po index 2aaa4e81b81..4ac49948693 100644 --- a/addons/hr_timesheet_invoice/i18n/sl.po +++ b/addons/hr_timesheet_invoice/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/sq.po b/addons/hr_timesheet_invoice/i18n/sq.po index 8edffefac59..a9a23f20235 100644 --- a/addons/hr_timesheet_invoice/i18n/sq.po +++ b/addons/hr_timesheet_invoice/i18n/sq.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/sr@latin.po b/addons/hr_timesheet_invoice/i18n/sr@latin.po index b4cddf1135e..c637ef0c3a9 100644 --- a/addons/hr_timesheet_invoice/i18n/sr@latin.po +++ b/addons/hr_timesheet_invoice/i18n/sr@latin.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/sv.po b/addons/hr_timesheet_invoice/i18n/sv.po index 1fad2f14ca6..12855a9acdd 100644 --- a/addons/hr_timesheet_invoice/i18n/sv.po +++ b/addons/hr_timesheet_invoice/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/tlh.po b/addons/hr_timesheet_invoice/i18n/tlh.po index 79adcf993f0..b5d7521f866 100644 --- a/addons/hr_timesheet_invoice/i18n/tlh.po +++ b/addons/hr_timesheet_invoice/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/tr.po b/addons/hr_timesheet_invoice/i18n/tr.po index 0e87f38d422..0cca80a35d2 100644 --- a/addons/hr_timesheet_invoice/i18n/tr.po +++ b/addons/hr_timesheet_invoice/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/uk.po b/addons/hr_timesheet_invoice/i18n/uk.po index 4c696150175..96a7713e4c6 100644 --- a/addons/hr_timesheet_invoice/i18n/uk.po +++ b/addons/hr_timesheet_invoice/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/vi.po b/addons/hr_timesheet_invoice/i18n/vi.po index e73f3fd06f2..2b7d9fd7d96 100644 --- a/addons/hr_timesheet_invoice/i18n/vi.po +++ b/addons/hr_timesheet_invoice/i18n/vi.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/zh_CN.po b/addons/hr_timesheet_invoice/i18n/zh_CN.po index 8b66b8505e5..4e0178f0b71 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_CN.po +++ b/addons/hr_timesheet_invoice/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_invoice/i18n/zh_TW.po b/addons/hr_timesheet_invoice/i18n/zh_TW.po index 5d69c4ed5c1..afcfba8bfb8 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_TW.po +++ b/addons/hr_timesheet_invoice/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_sheet/i18n/ar.po b/addons/hr_timesheet_sheet/i18n/ar.po index 87fe170f43e..826076645b6 100644 --- a/addons/hr_timesheet_sheet/i18n/ar.po +++ b/addons/hr_timesheet_sheet/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/bg.po b/addons/hr_timesheet_sheet/i18n/bg.po index 7ce472f4c76..b9496f33cd7 100644 --- a/addons/hr_timesheet_sheet/i18n/bg.po +++ b/addons/hr_timesheet_sheet/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/bs.po b/addons/hr_timesheet_sheet/i18n/bs.po index 31bf5908604..6c7b0dd8df2 100644 --- a/addons/hr_timesheet_sheet/i18n/bs.po +++ b/addons/hr_timesheet_sheet/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/ca.po b/addons/hr_timesheet_sheet/i18n/ca.po index daeda9c517b..00a6cab1d46 100644 --- a/addons/hr_timesheet_sheet/i18n/ca.po +++ b/addons/hr_timesheet_sheet/i18n/ca.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/cs.po b/addons/hr_timesheet_sheet/i18n/cs.po index 41dcf5a26d8..f6441e22587 100644 --- a/addons/hr_timesheet_sheet/i18n/cs.po +++ b/addons/hr_timesheet_sheet/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/da.po b/addons/hr_timesheet_sheet/i18n/da.po index cbb2fe5d8db..31a6fd14312 100644 --- a/addons/hr_timesheet_sheet/i18n/da.po +++ b/addons/hr_timesheet_sheet/i18n/da.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/de.po b/addons/hr_timesheet_sheet/i18n/de.po index 5a17862d45c..0be9fbfb245 100644 --- a/addons/hr_timesheet_sheet/i18n/de.po +++ b/addons/hr_timesheet_sheet/i18n/de.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/el.po b/addons/hr_timesheet_sheet/i18n/el.po index 3e67dbecdcb..12f36a8cae8 100644 --- a/addons/hr_timesheet_sheet/i18n/el.po +++ b/addons/hr_timesheet_sheet/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/hr_timesheet_sheet/i18n/es.po b/addons/hr_timesheet_sheet/i18n/es.po index e62cea0e512..b057723b534 100644 --- a/addons/hr_timesheet_sheet/i18n/es.po +++ b/addons/hr_timesheet_sheet/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/es_AR.po b/addons/hr_timesheet_sheet/i18n/es_AR.po index 4669ed7db2b..6750d167ba7 100644 --- a/addons/hr_timesheet_sheet/i18n/es_AR.po +++ b/addons/hr_timesheet_sheet/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/es_CR.po b/addons/hr_timesheet_sheet/i18n/es_CR.po index 482787202f5..4a6665d2e15 100644 --- a/addons/hr_timesheet_sheet/i18n/es_CR.po +++ b/addons/hr_timesheet_sheet/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/hr_timesheet_sheet/i18n/es_EC.po b/addons/hr_timesheet_sheet/i18n/es_EC.po index cbae83c7c4e..b777f250d51 100644 --- a/addons/hr_timesheet_sheet/i18n/es_EC.po +++ b/addons/hr_timesheet_sheet/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/et.po b/addons/hr_timesheet_sheet/i18n/et.po index ebefa7719a9..8c3e9d23d89 100644 --- a/addons/hr_timesheet_sheet/i18n/et.po +++ b/addons/hr_timesheet_sheet/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/fi.po b/addons/hr_timesheet_sheet/i18n/fi.po index 97f9cdc81f2..a1ff9a7b915 100644 --- a/addons/hr_timesheet_sheet/i18n/fi.po +++ b/addons/hr_timesheet_sheet/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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/fr.po b/addons/hr_timesheet_sheet/i18n/fr.po index a296dfd86b5..9501307f894 100644 --- a/addons/hr_timesheet_sheet/i18n/fr.po +++ b/addons/hr_timesheet_sheet/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/hr.po b/addons/hr_timesheet_sheet/i18n/hr.po index 7bb775df87d..f35605e2a5a 100644 --- a/addons/hr_timesheet_sheet/i18n/hr.po +++ b/addons/hr_timesheet_sheet/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/hu.po b/addons/hr_timesheet_sheet/i18n/hu.po index 046f809b42d..611eae69339 100644 --- a/addons/hr_timesheet_sheet/i18n/hu.po +++ b/addons/hr_timesheet_sheet/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/id.po b/addons/hr_timesheet_sheet/i18n/id.po index 2902afedb7d..570611e7c9a 100644 --- a/addons/hr_timesheet_sheet/i18n/id.po +++ b/addons/hr_timesheet_sheet/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/it.po b/addons/hr_timesheet_sheet/i18n/it.po index 5852c0c8088..889f647e084 100644 --- a/addons/hr_timesheet_sheet/i18n/it.po +++ b/addons/hr_timesheet_sheet/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/ja.po b/addons/hr_timesheet_sheet/i18n/ja.po index 47ffd62354d..0d82bad780c 100644 --- a/addons/hr_timesheet_sheet/i18n/ja.po +++ b/addons/hr_timesheet_sheet/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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/ko.po b/addons/hr_timesheet_sheet/i18n/ko.po index 83882a6ac54..a580b9e7e87 100644 --- a/addons/hr_timesheet_sheet/i18n/ko.po +++ b/addons/hr_timesheet_sheet/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/lt.po b/addons/hr_timesheet_sheet/i18n/lt.po index d579ed04751..32487e91ddb 100644 --- a/addons/hr_timesheet_sheet/i18n/lt.po +++ b/addons/hr_timesheet_sheet/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/lv.po b/addons/hr_timesheet_sheet/i18n/lv.po index 393de24e277..80fc86cae88 100644 --- a/addons/hr_timesheet_sheet/i18n/lv.po +++ b/addons/hr_timesheet_sheet/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/mk.po b/addons/hr_timesheet_sheet/i18n/mk.po index 2ed64bc3031..3242e044e4f 100644 --- a/addons/hr_timesheet_sheet/i18n/mk.po +++ b/addons/hr_timesheet_sheet/i18n/mk.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/mn.po b/addons/hr_timesheet_sheet/i18n/mn.po index 8dccd757986..1d1d2127970 100644 --- a/addons/hr_timesheet_sheet/i18n/mn.po +++ b/addons/hr_timesheet_sheet/i18n/mn.po @@ -27,7 +27,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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/nl.po b/addons/hr_timesheet_sheet/i18n/nl.po index c0478663bbf..0b6f9a88452 100644 --- a/addons/hr_timesheet_sheet/i18n/nl.po +++ b/addons/hr_timesheet_sheet/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet @@ -456,7 +456,7 @@ msgstr "Juli" #. module: hr_timesheet_sheet #: field:hr.config.settings,timesheet_range:0 msgid "Validate timesheets every" -msgstr "Valideer tijdsregistratie ieder" +msgstr "Valideer tijdsregistratie iedere" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:73 diff --git a/addons/hr_timesheet_sheet/i18n/nl_BE.po b/addons/hr_timesheet_sheet/i18n/nl_BE.po index d9f84de6d82..3fb862555e3 100644 --- a/addons/hr_timesheet_sheet/i18n/nl_BE.po +++ b/addons/hr_timesheet_sheet/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/pl.po b/addons/hr_timesheet_sheet/i18n/pl.po index 62200df1636..85ea7a9775b 100644 --- a/addons/hr_timesheet_sheet/i18n/pl.po +++ b/addons/hr_timesheet_sheet/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/pt.po b/addons/hr_timesheet_sheet/i18n/pt.po index 8a57bca8e7c..7b80a4c20d4 100644 --- a/addons/hr_timesheet_sheet/i18n/pt.po +++ b/addons/hr_timesheet_sheet/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/pt_BR.po b/addons/hr_timesheet_sheet/i18n/pt_BR.po index e8ae2afc6ee..0fe49869df5 100644 --- a/addons/hr_timesheet_sheet/i18n/pt_BR.po +++ b/addons/hr_timesheet_sheet/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/ro.po b/addons/hr_timesheet_sheet/i18n/ro.po index 6cb224126da..07392d0bf04 100644 --- a/addons/hr_timesheet_sheet/i18n/ro.po +++ b/addons/hr_timesheet_sheet/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/ru.po b/addons/hr_timesheet_sheet/i18n/ru.po index d7d1cc7a080..4f334de329e 100644 --- a/addons/hr_timesheet_sheet/i18n/ru.po +++ b/addons/hr_timesheet_sheet/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/sk.po b/addons/hr_timesheet_sheet/i18n/sk.po index 128c8ccc75f..81ef88be2ab 100644 --- a/addons/hr_timesheet_sheet/i18n/sk.po +++ b/addons/hr_timesheet_sheet/i18n/sk.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/sl.po b/addons/hr_timesheet_sheet/i18n/sl.po index 203a9405ea4..72a92dbd6ee 100644 --- a/addons/hr_timesheet_sheet/i18n/sl.po +++ b/addons/hr_timesheet_sheet/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/sq.po b/addons/hr_timesheet_sheet/i18n/sq.po index 3a8bd64c4e5..a36468efc7f 100644 --- a/addons/hr_timesheet_sheet/i18n/sq.po +++ b/addons/hr_timesheet_sheet/i18n/sq.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/sv.po b/addons/hr_timesheet_sheet/i18n/sv.po index 96ac7554337..21a68afbcf5 100644 --- a/addons/hr_timesheet_sheet/i18n/sv.po +++ b/addons/hr_timesheet_sheet/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/tlh.po b/addons/hr_timesheet_sheet/i18n/tlh.po index 2bb4124a666..ff095608f0b 100644 --- a/addons/hr_timesheet_sheet/i18n/tlh.po +++ b/addons/hr_timesheet_sheet/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/tr.po b/addons/hr_timesheet_sheet/i18n/tr.po index f1d17d20fa3..85d2709eea7 100644 --- a/addons/hr_timesheet_sheet/i18n/tr.po +++ b/addons/hr_timesheet_sheet/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/uk.po b/addons/hr_timesheet_sheet/i18n/uk.po index af41288c6cd..f8007ea6528 100644 --- a/addons/hr_timesheet_sheet/i18n/uk.po +++ b/addons/hr_timesheet_sheet/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/vi.po b/addons/hr_timesheet_sheet/i18n/vi.po index d005e2b3832..c7f71551c21 100644 --- a/addons/hr_timesheet_sheet/i18n/vi.po +++ b/addons/hr_timesheet_sheet/i18n/vi.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-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/zh_CN.po b/addons/hr_timesheet_sheet/i18n/zh_CN.po index 4ed8a0bbfc3..fc2c135c656 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_CN.po +++ b/addons/hr_timesheet_sheet/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/zh_TW.po b/addons/hr_timesheet_sheet/i18n/zh_TW.po index 4c8f223f4e5..bdc053d342e 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_TW.po +++ b/addons/hr_timesheet_sheet/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:28+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: hr_timesheet_sheet diff --git a/addons/knowledge/i18n/ar.po b/addons/knowledge/i18n/ar.po index a775c84bd15..d9f0c85fbbf 100644 --- a/addons/knowledge/i18n/ar.po +++ b/addons/knowledge/i18n/ar.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/bg.po b/addons/knowledge/i18n/bg.po index bdad8dcae3d..5166e9d4b11 100644 --- a/addons/knowledge/i18n/bg.po +++ b/addons/knowledge/i18n/bg.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/ca.po b/addons/knowledge/i18n/ca.po index 370ad6e087c..1c5acc8f0d2 100644 --- a/addons/knowledge/i18n/ca.po +++ b/addons/knowledge/i18n/ca.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/cs.po b/addons/knowledge/i18n/cs.po index 123aba94649..c9a194f8907 100644 --- a/addons/knowledge/i18n/cs.po +++ b/addons/knowledge/i18n/cs.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/knowledge/i18n/da.po b/addons/knowledge/i18n/da.po index 7b332251efa..297e8e8fce5 100644 --- a/addons/knowledge/i18n/da.po +++ b/addons/knowledge/i18n/da.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/de.po b/addons/knowledge/i18n/de.po index b69998324bb..c90e8d65496 100644 --- a/addons/knowledge/i18n/de.po +++ b/addons/knowledge/i18n/de.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/en_GB.po b/addons/knowledge/i18n/en_GB.po index 0bcbc72d217..26e5125c797 100644 --- a/addons/knowledge/i18n/en_GB.po +++ b/addons/knowledge/i18n/en_GB.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/es.po b/addons/knowledge/i18n/es.po index fe69669f038..2fb51ebd0c1 100644 --- a/addons/knowledge/i18n/es.po +++ b/addons/knowledge/i18n/es.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/es_AR.po b/addons/knowledge/i18n/es_AR.po index e0cf5eb5c6e..4c9f3731640 100644 --- a/addons/knowledge/i18n/es_AR.po +++ b/addons/knowledge/i18n/es_AR.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/es_CR.po b/addons/knowledge/i18n/es_CR.po index 14b2f5cc499..b6f646395de 100644 --- a/addons/knowledge/i18n/es_CR.po +++ b/addons/knowledge/i18n/es_CR.po @@ -15,7 +15,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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/knowledge/i18n/et.po b/addons/knowledge/i18n/et.po index 522a5e3b613..c9eb32eb723 100644 --- a/addons/knowledge/i18n/et.po +++ b/addons/knowledge/i18n/et.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/fi.po b/addons/knowledge/i18n/fi.po index b5e0cea1ff0..50529d67069 100644 --- a/addons/knowledge/i18n/fi.po +++ b/addons/knowledge/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/fr.po b/addons/knowledge/i18n/fr.po index b4649a62f2f..907876ee721 100644 --- a/addons/knowledge/i18n/fr.po +++ b/addons/knowledge/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/gl.po b/addons/knowledge/i18n/gl.po index b3cec138c9f..a9003bffb59 100644 --- a/addons/knowledge/i18n/gl.po +++ b/addons/knowledge/i18n/gl.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/hi.po b/addons/knowledge/i18n/hi.po index 7e2283e5506..1543b438bd1 100644 --- a/addons/knowledge/i18n/hi.po +++ b/addons/knowledge/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/hr.po b/addons/knowledge/i18n/hr.po index b80e1b2bf4f..5c565fef833 100644 --- a/addons/knowledge/i18n/hr.po +++ b/addons/knowledge/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/hu.po b/addons/knowledge/i18n/hu.po index 6f89a7db277..43e065898cb 100644 --- a/addons/knowledge/i18n/hu.po +++ b/addons/knowledge/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/it.po b/addons/knowledge/i18n/it.po index f313f2fbaf9..27c35a3377e 100644 --- a/addons/knowledge/i18n/it.po +++ b/addons/knowledge/i18n/it.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/ja.po b/addons/knowledge/i18n/ja.po index a20fd423451..d52ea8aad85 100644 --- a/addons/knowledge/i18n/ja.po +++ b/addons/knowledge/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/lo.po b/addons/knowledge/i18n/lo.po index 10df3ef722f..aa1150fbcd2 100644 --- a/addons/knowledge/i18n/lo.po +++ b/addons/knowledge/i18n/lo.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/lv.po b/addons/knowledge/i18n/lv.po index 816d49863e9..652590db589 100644 --- a/addons/knowledge/i18n/lv.po +++ b/addons/knowledge/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/mk.po b/addons/knowledge/i18n/mk.po index df1e6ed643a..597eaa55ebb 100644 --- a/addons/knowledge/i18n/mk.po +++ b/addons/knowledge/i18n/mk.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/mn.po b/addons/knowledge/i18n/mn.po index f3c0491e95a..6ec1b23e0b0 100644 --- a/addons/knowledge/i18n/mn.po +++ b/addons/knowledge/i18n/mn.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/nb.po b/addons/knowledge/i18n/nb.po index a147ffd81d8..2465a232f1c 100644 --- a/addons/knowledge/i18n/nb.po +++ b/addons/knowledge/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/nl.po b/addons/knowledge/i18n/nl.po index 71ab463647a..4fc9d29acee 100644 --- a/addons/knowledge/i18n/nl.po +++ b/addons/knowledge/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/nl_BE.po b/addons/knowledge/i18n/nl_BE.po index 97885c10557..b5278d3e260 100644 --- a/addons/knowledge/i18n/nl_BE.po +++ b/addons/knowledge/i18n/nl_BE.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/pl.po b/addons/knowledge/i18n/pl.po index 8ae69fcf903..0ec0bb7ec7e 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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/pt.po b/addons/knowledge/i18n/pt.po index b3e8c78ed59..58d6f3f1602 100644 --- a/addons/knowledge/i18n/pt.po +++ b/addons/knowledge/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/pt_BR.po b/addons/knowledge/i18n/pt_BR.po index d8a1d4bec57..281ebc2f22d 100644 --- a/addons/knowledge/i18n/pt_BR.po +++ b/addons/knowledge/i18n/pt_BR.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/ro.po b/addons/knowledge/i18n/ro.po index 9c72ebd2300..de738b54c52 100644 --- a/addons/knowledge/i18n/ro.po +++ b/addons/knowledge/i18n/ro.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/ru.po b/addons/knowledge/i18n/ru.po index 2d18cb86260..08d732a71b6 100644 --- a/addons/knowledge/i18n/ru.po +++ b/addons/knowledge/i18n/ru.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/sk.po b/addons/knowledge/i18n/sk.po index d00cfd2f5d9..54444c7efa2 100644 --- a/addons/knowledge/i18n/sk.po +++ b/addons/knowledge/i18n/sk.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/sl.po b/addons/knowledge/i18n/sl.po index d5b31aa03ce..bdd2a1fa1f6 100644 --- a/addons/knowledge/i18n/sl.po +++ b/addons/knowledge/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/sr.po b/addons/knowledge/i18n/sr.po index 7db623501aa..cef31fbb5c7 100644 --- a/addons/knowledge/i18n/sr.po +++ b/addons/knowledge/i18n/sr.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/sr@latin.po b/addons/knowledge/i18n/sr@latin.po index d3feab247ea..bc8c9f365fe 100644 --- a/addons/knowledge/i18n/sr@latin.po +++ b/addons/knowledge/i18n/sr@latin.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/sv.po b/addons/knowledge/i18n/sv.po index 8e0636ec1e8..2f7f19abc49 100644 --- a/addons/knowledge/i18n/sv.po +++ b/addons/knowledge/i18n/sv.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/tr.po b/addons/knowledge/i18n/tr.po index 6921ab17131..9812137707f 100644 --- a/addons/knowledge/i18n/tr.po +++ b/addons/knowledge/i18n/tr.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/zh_CN.po b/addons/knowledge/i18n/zh_CN.po index 538cbf4bfde..6bafd1d4e4e 100644 --- a/addons/knowledge/i18n/zh_CN.po +++ b/addons/knowledge/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/knowledge/i18n/zh_TW.po b/addons/knowledge/i18n/zh_TW.po index 017c428df74..483a1b47b0f 100644 --- a/addons/knowledge/i18n/zh_TW.po +++ b/addons/knowledge/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: knowledge diff --git a/addons/l10n_be_coda/i18n/ar.po b/addons/l10n_be_coda/i18n/ar.po index b1ed931fa4d..b33040ca428 100644 --- a/addons/l10n_be_coda/i18n/ar.po +++ b/addons/l10n_be_coda/i18n/ar.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/bg.po b/addons/l10n_be_coda/i18n/bg.po index 40295e5e338..2b3a2f5996a 100644 --- a/addons/l10n_be_coda/i18n/bg.po +++ b/addons/l10n_be_coda/i18n/bg.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/ca.po b/addons/l10n_be_coda/i18n/ca.po index f9e4d0a026e..c88de23ecda 100644 --- a/addons/l10n_be_coda/i18n/ca.po +++ b/addons/l10n_be_coda/i18n/ca.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/da.po b/addons/l10n_be_coda/i18n/da.po index 4ca2e31efac..a5c1b698c85 100644 --- a/addons/l10n_be_coda/i18n/da.po +++ b/addons/l10n_be_coda/i18n/da.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/de.po b/addons/l10n_be_coda/i18n/de.po index 066f41dba07..ed74bed988b 100644 --- a/addons/l10n_be_coda/i18n/de.po +++ b/addons/l10n_be_coda/i18n/de.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/el.po b/addons/l10n_be_coda/i18n/el.po index 205a737ea42..b329a681649 100644 --- a/addons/l10n_be_coda/i18n/el.po +++ b/addons/l10n_be_coda/i18n/el.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/en_AU.po b/addons/l10n_be_coda/i18n/en_AU.po index d240eca04f8..d9b96934af4 100644 --- a/addons/l10n_be_coda/i18n/en_AU.po +++ b/addons/l10n_be_coda/i18n/en_AU.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/en_GB.po b/addons/l10n_be_coda/i18n/en_GB.po index e87218bb112..8677bda1fd9 100644 --- a/addons/l10n_be_coda/i18n/en_GB.po +++ b/addons/l10n_be_coda/i18n/en_GB.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/es.po b/addons/l10n_be_coda/i18n/es.po index 6a17fb34d6c..5a1ede1fbfb 100644 --- a/addons/l10n_be_coda/i18n/es.po +++ b/addons/l10n_be_coda/i18n/es.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/es_CR.po b/addons/l10n_be_coda/i18n/es_CR.po index c463302cf71..d2aa663860e 100644 --- a/addons/l10n_be_coda/i18n/es_CR.po +++ b/addons/l10n_be_coda/i18n/es_CR.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/l10n_be_coda/i18n/es_EC.po b/addons/l10n_be_coda/i18n/es_EC.po index c170c407a8e..c4367954196 100644 --- a/addons/l10n_be_coda/i18n/es_EC.po +++ b/addons/l10n_be_coda/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/es_PY.po b/addons/l10n_be_coda/i18n/es_PY.po index b652b001e01..5b8bdced2d4 100644 --- a/addons/l10n_be_coda/i18n/es_PY.po +++ b/addons/l10n_be_coda/i18n/es_PY.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/et.po b/addons/l10n_be_coda/i18n/et.po index 5abf43fb9e5..3018ebe4a1c 100644 --- a/addons/l10n_be_coda/i18n/et.po +++ b/addons/l10n_be_coda/i18n/et.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/fa.po b/addons/l10n_be_coda/i18n/fa.po index e2155b7c454..0c778ebd6fd 100644 --- a/addons/l10n_be_coda/i18n/fa.po +++ b/addons/l10n_be_coda/i18n/fa.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/fi.po b/addons/l10n_be_coda/i18n/fi.po index ed7b53f0a8f..d1ce4e727af 100644 --- a/addons/l10n_be_coda/i18n/fi.po +++ b/addons/l10n_be_coda/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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/fr.po b/addons/l10n_be_coda/i18n/fr.po index c57d2341afa..13d0ede73ca 100644 --- a/addons/l10n_be_coda/i18n/fr.po +++ b/addons/l10n_be_coda/i18n/fr.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/gl.po b/addons/l10n_be_coda/i18n/gl.po index 322bd32a5e2..f05b020ab85 100644 --- a/addons/l10n_be_coda/i18n/gl.po +++ b/addons/l10n_be_coda/i18n/gl.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/hr.po b/addons/l10n_be_coda/i18n/hr.po index 298298a9633..d149a2c77c2 100644 --- a/addons/l10n_be_coda/i18n/hr.po +++ b/addons/l10n_be_coda/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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/hu.po b/addons/l10n_be_coda/i18n/hu.po index f900230840c..7617e31bd6b 100644 --- a/addons/l10n_be_coda/i18n/hu.po +++ b/addons/l10n_be_coda/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/it.po b/addons/l10n_be_coda/i18n/it.po index 2f535300af6..d778d9ae360 100644 --- a/addons/l10n_be_coda/i18n/it.po +++ b/addons/l10n_be_coda/i18n/it.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/ja.po b/addons/l10n_be_coda/i18n/ja.po index 3d3c493ee71..09eb7987c78 100644 --- a/addons/l10n_be_coda/i18n/ja.po +++ b/addons/l10n_be_coda/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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/lv.po b/addons/l10n_be_coda/i18n/lv.po index 5312d85104a..263f16f34a8 100644 --- a/addons/l10n_be_coda/i18n/lv.po +++ b/addons/l10n_be_coda/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/mk.po b/addons/l10n_be_coda/i18n/mk.po index 22fe48b13c4..b47a0d41828 100644 --- a/addons/l10n_be_coda/i18n/mk.po +++ b/addons/l10n_be_coda/i18n/mk.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/mn.po b/addons/l10n_be_coda/i18n/mn.po index cd18bddd5a5..a5130163b7f 100644 --- a/addons/l10n_be_coda/i18n/mn.po +++ b/addons/l10n_be_coda/i18n/mn.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/nb.po b/addons/l10n_be_coda/i18n/nb.po index 8797a6d25b0..7d12cabf790 100644 --- a/addons/l10n_be_coda/i18n/nb.po +++ b/addons/l10n_be_coda/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/nl.po b/addons/l10n_be_coda/i18n/nl.po index c0e785d8eef..a5b58e191f0 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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\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 7a9d6b13ae4..d159bfb3928 100644 --- a/addons/l10n_be_coda/i18n/nl_BE.po +++ b/addons/l10n_be_coda/i18n/nl_BE.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/pl.po b/addons/l10n_be_coda/i18n/pl.po index 7a5305d0be0..ea1b6b472b4 100644 --- a/addons/l10n_be_coda/i18n/pl.po +++ b/addons/l10n_be_coda/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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/pt.po b/addons/l10n_be_coda/i18n/pt.po index 5baec0c89f3..ef4c55714fa 100644 --- a/addons/l10n_be_coda/i18n/pt.po +++ b/addons/l10n_be_coda/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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/pt_BR.po b/addons/l10n_be_coda/i18n/pt_BR.po index f0c37d301d1..f6ce4ea3d36 100644 --- a/addons/l10n_be_coda/i18n/pt_BR.po +++ b/addons/l10n_be_coda/i18n/pt_BR.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/ro.po b/addons/l10n_be_coda/i18n/ro.po index 789608082ca..4d876dbf0cc 100644 --- a/addons/l10n_be_coda/i18n/ro.po +++ b/addons/l10n_be_coda/i18n/ro.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/ru.po b/addons/l10n_be_coda/i18n/ru.po index ccbad7a684d..fea46e82718 100644 --- a/addons/l10n_be_coda/i18n/ru.po +++ b/addons/l10n_be_coda/i18n/ru.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/sl.po b/addons/l10n_be_coda/i18n/sl.po index e135bca333b..487deda97c8 100644 --- a/addons/l10n_be_coda/i18n/sl.po +++ b/addons/l10n_be_coda/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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/sq.po b/addons/l10n_be_coda/i18n/sq.po index 5c82b2725d5..8c5549080f7 100644 --- a/addons/l10n_be_coda/i18n/sq.po +++ b/addons/l10n_be_coda/i18n/sq.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/sr.po b/addons/l10n_be_coda/i18n/sr.po index e501bb10b16..04e62e1738d 100644 --- a/addons/l10n_be_coda/i18n/sr.po +++ b/addons/l10n_be_coda/i18n/sr.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/sr@latin.po b/addons/l10n_be_coda/i18n/sr@latin.po index f702cd558dd..18fb2b4dd1c 100644 --- a/addons/l10n_be_coda/i18n/sr@latin.po +++ b/addons/l10n_be_coda/i18n/sr@latin.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/sv.po b/addons/l10n_be_coda/i18n/sv.po index f05ceefba61..27185a0a0ac 100644 --- a/addons/l10n_be_coda/i18n/sv.po +++ b/addons/l10n_be_coda/i18n/sv.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/tr.po b/addons/l10n_be_coda/i18n/tr.po index 8e77a086cd5..9bb8f06fbe9 100644 --- a/addons/l10n_be_coda/i18n/tr.po +++ b/addons/l10n_be_coda/i18n/tr.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-03-15 05:39+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/vi.po b/addons/l10n_be_coda/i18n/vi.po index cefc955515e..d7d83d91216 100644 --- a/addons/l10n_be_coda/i18n/vi.po +++ b/addons/l10n_be_coda/i18n/vi.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/zh_CN.po b/addons/l10n_be_coda/i18n/zh_CN.po index 0e375805b6b..753c899a53e 100644 --- a/addons/l10n_be_coda/i18n/zh_CN.po +++ b/addons/l10n_be_coda/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/zh_TW.po b/addons/l10n_be_coda/i18n/zh_TW.po index 01617fc579b..2860ed4fb94 100644 --- a/addons/l10n_be_coda/i18n/zh_TW.po +++ b/addons/l10n_be_coda/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_hr_payroll/i18n/de.po b/addons/l10n_be_hr_payroll/i18n/de.po index a0e0a8e519e..f00e6100639 100644 --- a/addons/l10n_be_hr_payroll/i18n/de.po +++ b/addons/l10n_be_hr_payroll/i18n/de.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_hr_payroll diff --git a/addons/l10n_be_hr_payroll/i18n/es.po b/addons/l10n_be_hr_payroll/i18n/es.po index d959e084143..c98bbcff392 100644 --- a/addons/l10n_be_hr_payroll/i18n/es.po +++ b/addons/l10n_be_hr_payroll/i18n/es.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_hr_payroll diff --git a/addons/l10n_be_hr_payroll/i18n/es_CR.po b/addons/l10n_be_hr_payroll/i18n/es_CR.po index 62c1ff555e9..0f80ae9c582 100644 --- a/addons/l10n_be_hr_payroll/i18n/es_CR.po +++ b/addons/l10n_be_hr_payroll/i18n/es_CR.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_hr_payroll diff --git a/addons/l10n_be_hr_payroll/i18n/pt.po b/addons/l10n_be_hr_payroll/i18n/pt.po index 83b40c85fcf..b4dbcf5d29f 100644 --- a/addons/l10n_be_hr_payroll/i18n/pt.po +++ b/addons/l10n_be_hr_payroll/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_hr_payroll diff --git a/addons/l10n_be_hr_payroll/i18n/pt_BR.po b/addons/l10n_be_hr_payroll/i18n/pt_BR.po index 3032a980df8..9dd807d2bc0 100644 --- a/addons/l10n_be_hr_payroll/i18n/pt_BR.po +++ b/addons/l10n_be_hr_payroll/i18n/pt_BR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_hr_payroll diff --git a/addons/l10n_be_hr_payroll/i18n/sl.po b/addons/l10n_be_hr_payroll/i18n/sl.po index e077bd17398..5128ab4ed72 100644 --- a/addons/l10n_be_hr_payroll/i18n/sl.po +++ b/addons/l10n_be_hr_payroll/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_hr_payroll diff --git a/addons/l10n_be_hr_payroll/i18n/sr@latin.po b/addons/l10n_be_hr_payroll/i18n/sr@latin.po index c7c40e4305f..2b39f33f0b3 100644 --- a/addons/l10n_be_hr_payroll/i18n/sr@latin.po +++ b/addons/l10n_be_hr_payroll/i18n/sr@latin.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_hr_payroll diff --git a/addons/l10n_be_hr_payroll/i18n/tr.po b/addons/l10n_be_hr_payroll/i18n/tr.po index 9394aaa48d4..c50e3ee54c4 100644 --- a/addons/l10n_be_hr_payroll/i18n/tr.po +++ b/addons/l10n_be_hr_payroll/i18n/tr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_hr_payroll diff --git a/addons/l10n_be_invoice_bba/i18n/ar.po b/addons/l10n_be_invoice_bba/i18n/ar.po index cc3dc7a0b15..2b1e5ae297b 100644 --- a/addons/l10n_be_invoice_bba/i18n/ar.po +++ b/addons/l10n_be_invoice_bba/i18n/ar.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_invoice_bba diff --git a/addons/l10n_be_invoice_bba/i18n/es.po b/addons/l10n_be_invoice_bba/i18n/es.po index d3977df7a0b..3ffb5600311 100644 --- a/addons/l10n_be_invoice_bba/i18n/es.po +++ b/addons/l10n_be_invoice_bba/i18n/es.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_invoice_bba diff --git a/addons/l10n_be_invoice_bba/i18n/es_CR.po b/addons/l10n_be_invoice_bba/i18n/es_CR.po index cbed4ceab11..82126dcc1e9 100644 --- a/addons/l10n_be_invoice_bba/i18n/es_CR.po +++ b/addons/l10n_be_invoice_bba/i18n/es_CR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_invoice_bba diff --git a/addons/l10n_be_invoice_bba/i18n/fr.po b/addons/l10n_be_invoice_bba/i18n/fr.po index 51b62a96795..d094628251d 100644 --- a/addons/l10n_be_invoice_bba/i18n/fr.po +++ b/addons/l10n_be_invoice_bba/i18n/fr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_invoice_bba diff --git a/addons/l10n_be_invoice_bba/i18n/nb.po b/addons/l10n_be_invoice_bba/i18n/nb.po index aee0b406305..9e0d8feaf1c 100644 --- a/addons/l10n_be_invoice_bba/i18n/nb.po +++ b/addons/l10n_be_invoice_bba/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_invoice_bba diff --git a/addons/l10n_be_invoice_bba/i18n/nl.po b/addons/l10n_be_invoice_bba/i18n/nl.po index 8ee837267ca..4ae8df1fbcd 100644 --- a/addons/l10n_be_invoice_bba/i18n/nl.po +++ b/addons/l10n_be_invoice_bba/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_invoice_bba diff --git a/addons/l10n_be_invoice_bba/i18n/nl_BE.po b/addons/l10n_be_invoice_bba/i18n/nl_BE.po index 88384cfb1e5..cbbfcbd11b4 100644 --- a/addons/l10n_be_invoice_bba/i18n/nl_BE.po +++ b/addons/l10n_be_invoice_bba/i18n/nl_BE.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_invoice_bba diff --git a/addons/l10n_be_invoice_bba/i18n/pt.po b/addons/l10n_be_invoice_bba/i18n/pt.po index 8c1c12b3e9a..e6c90bebc03 100644 --- a/addons/l10n_be_invoice_bba/i18n/pt.po +++ b/addons/l10n_be_invoice_bba/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_invoice_bba diff --git a/addons/l10n_be_invoice_bba/i18n/pt_BR.po b/addons/l10n_be_invoice_bba/i18n/pt_BR.po index f4d1b9ad87e..96c32db05af 100644 --- a/addons/l10n_be_invoice_bba/i18n/pt_BR.po +++ b/addons/l10n_be_invoice_bba/i18n/pt_BR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_invoice_bba diff --git a/addons/l10n_be_invoice_bba/i18n/sl.po b/addons/l10n_be_invoice_bba/i18n/sl.po index 0f5e229a773..e41f5bae778 100644 --- a/addons/l10n_be_invoice_bba/i18n/sl.po +++ b/addons/l10n_be_invoice_bba/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_invoice_bba diff --git a/addons/l10n_be_invoice_bba/i18n/sr@latin.po b/addons/l10n_be_invoice_bba/i18n/sr@latin.po index 915860feec2..513790b570e 100644 --- a/addons/l10n_be_invoice_bba/i18n/sr@latin.po +++ b/addons/l10n_be_invoice_bba/i18n/sr@latin.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_invoice_bba diff --git a/addons/l10n_be_invoice_bba/i18n/tr.po b/addons/l10n_be_invoice_bba/i18n/tr.po index b8dd63d16c6..e50565b6c01 100644 --- a/addons/l10n_be_invoice_bba/i18n/tr.po +++ b/addons/l10n_be_invoice_bba/i18n/tr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_be_invoice_bba diff --git a/addons/l10n_bo/i18n/es.po b/addons/l10n_bo/i18n/es.po index 9ff190727ee..3fcffeca057 100644 --- a/addons/l10n_bo/i18n/es.po +++ b/addons/l10n_bo/i18n/es.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_ar diff --git a/addons/l10n_bo/i18n/it.po b/addons/l10n_bo/i18n/it.po index 63a7c446efa..ea325d87872 100644 --- a/addons/l10n_bo/i18n/it.po +++ b/addons/l10n_bo/i18n/it.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_ar diff --git a/addons/l10n_bo/i18n/pt.po b/addons/l10n_bo/i18n/pt.po index dcc780d6a92..f3947dae3cb 100644 --- a/addons/l10n_bo/i18n/pt.po +++ b/addons/l10n_bo/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_ar diff --git a/addons/l10n_bo/i18n/pt_BR.po b/addons/l10n_bo/i18n/pt_BR.po index 16e113f755a..3104a7fd6f0 100644 --- a/addons/l10n_bo/i18n/pt_BR.po +++ b/addons/l10n_bo/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_ar diff --git a/addons/l10n_bo/i18n/sl.po b/addons/l10n_bo/i18n/sl.po index b1239abc040..9d24d15ced2 100644 --- a/addons/l10n_bo/i18n/sl.po +++ b/addons/l10n_bo/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_ar diff --git a/addons/l10n_bo/i18n/tr.po b/addons/l10n_bo/i18n/tr.po index 1487850e625..99bd4d8f801 100644 --- a/addons/l10n_bo/i18n/tr.po +++ b/addons/l10n_bo/i18n/tr.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_ar diff --git a/addons/l10n_fr/i18n/ar.po b/addons/l10n_fr/i18n/ar.po index 842a7660a30..21079cd69f2 100644 --- a/addons/l10n_fr/i18n/ar.po +++ b/addons/l10n_fr/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/bg.po b/addons/l10n_fr/i18n/bg.po index 4697c479363..06b713526e8 100644 --- a/addons/l10n_fr/i18n/bg.po +++ b/addons/l10n_fr/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/bs.po b/addons/l10n_fr/i18n/bs.po index 06e0faa1b90..2b11d5caeb0 100644 --- a/addons/l10n_fr/i18n/bs.po +++ b/addons/l10n_fr/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/ca.po b/addons/l10n_fr/i18n/ca.po index 34d4696c8ca..77e60d1f75b 100644 --- a/addons/l10n_fr/i18n/ca.po +++ b/addons/l10n_fr/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/cs.po b/addons/l10n_fr/i18n/cs.po index 06e0faa1b90..2b11d5caeb0 100644 --- a/addons/l10n_fr/i18n/cs.po +++ b/addons/l10n_fr/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/da.po b/addons/l10n_fr/i18n/da.po index e208a2d5fa4..aa13c0f4bce 100644 --- a/addons/l10n_fr/i18n/da.po +++ b/addons/l10n_fr/i18n/da.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/de.po b/addons/l10n_fr/i18n/de.po index 7e00e5ca98c..a5e809bf113 100644 --- a/addons/l10n_fr/i18n/de.po +++ b/addons/l10n_fr/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/es.po b/addons/l10n_fr/i18n/es.po index bdf6310010b..5c19017adc4 100644 --- a/addons/l10n_fr/i18n/es.po +++ b/addons/l10n_fr/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/es_AR.po b/addons/l10n_fr/i18n/es_AR.po index 729af4097cf..0cfa177ad18 100644 --- a/addons/l10n_fr/i18n/es_AR.po +++ b/addons/l10n_fr/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/es_CR.po b/addons/l10n_fr/i18n/es_CR.po index 024cf105e23..15bf714de35 100644 --- a/addons/l10n_fr/i18n/es_CR.po +++ b/addons/l10n_fr/i18n/es_CR.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/l10n_fr/i18n/es_PY.po b/addons/l10n_fr/i18n/es_PY.po index 5d1e0fd8939..ab424814fd6 100644 --- a/addons/l10n_fr/i18n/es_PY.po +++ b/addons/l10n_fr/i18n/es_PY.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/et.po b/addons/l10n_fr/i18n/et.po index 529a7b1e97d..1fd7ac7bfea 100644 --- a/addons/l10n_fr/i18n/et.po +++ b/addons/l10n_fr/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/fr.po b/addons/l10n_fr/i18n/fr.po index f88f3384705..a2c645ca115 100644 --- a/addons/l10n_fr/i18n/fr.po +++ b/addons/l10n_fr/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/gl.po b/addons/l10n_fr/i18n/gl.po index dabd9a3c436..2242eb73a62 100644 --- a/addons/l10n_fr/i18n/gl.po +++ b/addons/l10n_fr/i18n/gl.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/hr.po b/addons/l10n_fr/i18n/hr.po index 06e0faa1b90..2b11d5caeb0 100644 --- a/addons/l10n_fr/i18n/hr.po +++ b/addons/l10n_fr/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/hu.po b/addons/l10n_fr/i18n/hu.po index 06e0faa1b90..2b11d5caeb0 100644 --- a/addons/l10n_fr/i18n/hu.po +++ b/addons/l10n_fr/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/id.po b/addons/l10n_fr/i18n/id.po index 66b314a4e25..f5bee04f8f6 100644 --- a/addons/l10n_fr/i18n/id.po +++ b/addons/l10n_fr/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/it.po b/addons/l10n_fr/i18n/it.po index fa58c0f9fb5..b2a999c3d0d 100644 --- a/addons/l10n_fr/i18n/it.po +++ b/addons/l10n_fr/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/ko.po b/addons/l10n_fr/i18n/ko.po index 48a0796f5c5..207c04be70b 100644 --- a/addons/l10n_fr/i18n/ko.po +++ b/addons/l10n_fr/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/lt.po b/addons/l10n_fr/i18n/lt.po index ca0cc9a4e98..4f655acbd2d 100644 --- a/addons/l10n_fr/i18n/lt.po +++ b/addons/l10n_fr/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/nl.po b/addons/l10n_fr/i18n/nl.po index a7d495180da..8137215e383 100644 --- a/addons/l10n_fr/i18n/nl.po +++ b/addons/l10n_fr/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/nl_BE.po b/addons/l10n_fr/i18n/nl_BE.po index d1bc3775555..cdca90765a6 100644 --- a/addons/l10n_fr/i18n/nl_BE.po +++ b/addons/l10n_fr/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/oc.po b/addons/l10n_fr/i18n/oc.po index 694cf6026ba..f72d564ff73 100644 --- a/addons/l10n_fr/i18n/oc.po +++ b/addons/l10n_fr/i18n/oc.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/pl.po b/addons/l10n_fr/i18n/pl.po index 2040f13f0b4..3419f8f5cd3 100644 --- a/addons/l10n_fr/i18n/pl.po +++ b/addons/l10n_fr/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/pt.po b/addons/l10n_fr/i18n/pt.po index 880e5417c83..2df9ffa7af7 100644 --- a/addons/l10n_fr/i18n/pt.po +++ b/addons/l10n_fr/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/pt_BR.po b/addons/l10n_fr/i18n/pt_BR.po index bee35795e9d..b220f229ffe 100644 --- a/addons/l10n_fr/i18n/pt_BR.po +++ b/addons/l10n_fr/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/ro.po b/addons/l10n_fr/i18n/ro.po index 06e0faa1b90..2b11d5caeb0 100644 --- a/addons/l10n_fr/i18n/ro.po +++ b/addons/l10n_fr/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/ru.po b/addons/l10n_fr/i18n/ru.po index ffd870206e1..6ed616395b5 100644 --- a/addons/l10n_fr/i18n/ru.po +++ b/addons/l10n_fr/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/sl.po b/addons/l10n_fr/i18n/sl.po index 2ad8f275bd6..c63d8d18e8c 100644 --- a/addons/l10n_fr/i18n/sl.po +++ b/addons/l10n_fr/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/sq.po b/addons/l10n_fr/i18n/sq.po index c2e350f7bae..27c5630b81d 100644 --- a/addons/l10n_fr/i18n/sq.po +++ b/addons/l10n_fr/i18n/sq.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/sr@latin.po b/addons/l10n_fr/i18n/sr@latin.po index a6711884e8f..80f1a667e17 100644 --- a/addons/l10n_fr/i18n/sr@latin.po +++ b/addons/l10n_fr/i18n/sr@latin.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/sv.po b/addons/l10n_fr/i18n/sv.po index 338737b5474..7dfa3d7270f 100644 --- a/addons/l10n_fr/i18n/sv.po +++ b/addons/l10n_fr/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/tlh.po b/addons/l10n_fr/i18n/tlh.po index af0e247d9f0..52454355d33 100644 --- a/addons/l10n_fr/i18n/tlh.po +++ b/addons/l10n_fr/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/tr.po b/addons/l10n_fr/i18n/tr.po index 566e189fd8a..5e48ddd5de3 100644 --- a/addons/l10n_fr/i18n/tr.po +++ b/addons/l10n_fr/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/uk.po b/addons/l10n_fr/i18n/uk.po index 5eaef47a567..12dc5c87003 100644 --- a/addons/l10n_fr/i18n/uk.po +++ b/addons/l10n_fr/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/vi.po b/addons/l10n_fr/i18n/vi.po index 46321a07c94..d28c2a1b249 100644 --- a/addons/l10n_fr/i18n/vi.po +++ b/addons/l10n_fr/i18n/vi.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/zh_CN.po b/addons/l10n_fr/i18n/zh_CN.po index 265ef3aaa26..ffdac24058b 100644 --- a/addons/l10n_fr/i18n/zh_CN.po +++ b/addons/l10n_fr/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/zh_TW.po b/addons/l10n_fr/i18n/zh_TW.po index 03ddb57df8c..f17932e4768 100644 --- a/addons/l10n_fr/i18n/zh_TW.po +++ b/addons/l10n_fr/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:11+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr diff --git a/addons/l10n_fr_rib/i18n/ar.po b/addons/l10n_fr_rib/i18n/ar.po index 234ff6fa78c..2bb5f7eae86 100644 --- a/addons/l10n_fr_rib/i18n/ar.po +++ b/addons/l10n_fr_rib/i18n/ar.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr_rib diff --git a/addons/l10n_fr_rib/i18n/es.po b/addons/l10n_fr_rib/i18n/es.po index f2c8800492f..e9ebcecf26f 100644 --- a/addons/l10n_fr_rib/i18n/es.po +++ b/addons/l10n_fr_rib/i18n/es.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr_rib diff --git a/addons/l10n_fr_rib/i18n/es_CR.po b/addons/l10n_fr_rib/i18n/es_CR.po index 5b4a71705ce..9a390365055 100644 --- a/addons/l10n_fr_rib/i18n/es_CR.po +++ b/addons/l10n_fr_rib/i18n/es_CR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr_rib diff --git a/addons/l10n_fr_rib/i18n/fr.po b/addons/l10n_fr_rib/i18n/fr.po index 957a781b626..9f186be4006 100644 --- a/addons/l10n_fr_rib/i18n/fr.po +++ b/addons/l10n_fr_rib/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr_rib diff --git a/addons/l10n_fr_rib/i18n/pt.po b/addons/l10n_fr_rib/i18n/pt.po index bf4a5ded7ac..596661368a4 100644 --- a/addons/l10n_fr_rib/i18n/pt.po +++ b/addons/l10n_fr_rib/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr_rib diff --git a/addons/l10n_fr_rib/i18n/pt_BR.po b/addons/l10n_fr_rib/i18n/pt_BR.po index 79134625c53..3e16155b73f 100644 --- a/addons/l10n_fr_rib/i18n/pt_BR.po +++ b/addons/l10n_fr_rib/i18n/pt_BR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr_rib diff --git a/addons/l10n_fr_rib/i18n/sl.po b/addons/l10n_fr_rib/i18n/sl.po index b0a183023cb..97991186d52 100644 --- a/addons/l10n_fr_rib/i18n/sl.po +++ b/addons/l10n_fr_rib/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr_rib diff --git a/addons/l10n_fr_rib/i18n/tr.po b/addons/l10n_fr_rib/i18n/tr.po index 53b7553adcc..8fd7be01f9e 100644 --- a/addons/l10n_fr_rib/i18n/tr.po +++ b/addons/l10n_fr_rib/i18n/tr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_fr_rib diff --git a/addons/l10n_in_hr_payroll/i18n/bn.po b/addons/l10n_in_hr_payroll/i18n/bn.po index 026e8047d45..6ac6da83fe0 100644 --- a/addons/l10n_in_hr_payroll/i18n/bn.po +++ b/addons/l10n_in_hr_payroll/i18n/bn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_in_hr_payroll diff --git a/addons/l10n_in_hr_payroll/i18n/es.po b/addons/l10n_in_hr_payroll/i18n/es.po index dee3ce3a069..677b03c9e42 100644 --- a/addons/l10n_in_hr_payroll/i18n/es.po +++ b/addons/l10n_in_hr_payroll/i18n/es.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_in_hr_payroll diff --git a/addons/l10n_in_hr_payroll/i18n/gu.po b/addons/l10n_in_hr_payroll/i18n/gu.po index 438ef2c4716..febb1ffc20e 100644 --- a/addons/l10n_in_hr_payroll/i18n/gu.po +++ b/addons/l10n_in_hr_payroll/i18n/gu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_in_hr_payroll diff --git a/addons/l10n_in_hr_payroll/i18n/hi.po b/addons/l10n_in_hr_payroll/i18n/hi.po index 6c015e4a059..e64529ecf71 100644 --- a/addons/l10n_in_hr_payroll/i18n/hi.po +++ b/addons/l10n_in_hr_payroll/i18n/hi.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_in_hr_payroll diff --git a/addons/l10n_in_hr_payroll/i18n/pl.po b/addons/l10n_in_hr_payroll/i18n/pl.po index 683b0d406f3..20718ca72f3 100644 --- a/addons/l10n_in_hr_payroll/i18n/pl.po +++ b/addons/l10n_in_hr_payroll/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_in_hr_payroll diff --git a/addons/l10n_in_hr_payroll/i18n/pt.po b/addons/l10n_in_hr_payroll/i18n/pt.po index 7f6fecd3f79..023ffa8db08 100644 --- a/addons/l10n_in_hr_payroll/i18n/pt.po +++ b/addons/l10n_in_hr_payroll/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_in_hr_payroll diff --git a/addons/l10n_in_hr_payroll/i18n/pt_BR.po b/addons/l10n_in_hr_payroll/i18n/pt_BR.po index 5fa52823ebd..54c982a1558 100644 --- a/addons/l10n_in_hr_payroll/i18n/pt_BR.po +++ b/addons/l10n_in_hr_payroll/i18n/pt_BR.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_in_hr_payroll diff --git a/addons/l10n_in_hr_payroll/i18n/sl.po b/addons/l10n_in_hr_payroll/i18n/sl.po index 87fdae0ce20..386080f7f8f 100644 --- a/addons/l10n_in_hr_payroll/i18n/sl.po +++ b/addons/l10n_in_hr_payroll/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_in_hr_payroll diff --git a/addons/l10n_in_hr_payroll/i18n/ta.po b/addons/l10n_in_hr_payroll/i18n/ta.po index 5071559e8b1..5f51e7a35b0 100644 --- a/addons/l10n_in_hr_payroll/i18n/ta.po +++ b/addons/l10n_in_hr_payroll/i18n/ta.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_in_hr_payroll diff --git a/addons/l10n_in_hr_payroll/i18n/te.po b/addons/l10n_in_hr_payroll/i18n/te.po index 001286a61f2..a4d1401b7ba 100644 --- a/addons/l10n_in_hr_payroll/i18n/te.po +++ b/addons/l10n_in_hr_payroll/i18n/te.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_in_hr_payroll diff --git a/addons/l10n_in_hr_payroll/i18n/tr.po b/addons/l10n_in_hr_payroll/i18n/tr.po index 2ce29b73d76..2ed1a97f6e7 100644 --- a/addons/l10n_in_hr_payroll/i18n/tr.po +++ b/addons/l10n_in_hr_payroll/i18n/tr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_in_hr_payroll diff --git a/addons/l10n_multilang/i18n/ar.po b/addons/l10n_multilang/i18n/ar.po index 8a0d7b1a836..4fe7aa47728 100644 --- a/addons/l10n_multilang/i18n/ar.po +++ b/addons/l10n_multilang/i18n/ar.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/de.po b/addons/l10n_multilang/i18n/de.po index c0420ab740e..b477fbfc7ca 100644 --- a/addons/l10n_multilang/i18n/de.po +++ b/addons/l10n_multilang/i18n/de.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/es.po b/addons/l10n_multilang/i18n/es.po index 02241282c5d..8d5778aa611 100644 --- a/addons/l10n_multilang/i18n/es.po +++ b/addons/l10n_multilang/i18n/es.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/es_CR.po b/addons/l10n_multilang/i18n/es_CR.po index b0c8898cb97..703a53b40db 100644 --- a/addons/l10n_multilang/i18n/es_CR.po +++ b/addons/l10n_multilang/i18n/es_CR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/fr.po b/addons/l10n_multilang/i18n/fr.po index c93058a1a36..ae062992f0e 100644 --- a/addons/l10n_multilang/i18n/fr.po +++ b/addons/l10n_multilang/i18n/fr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/hr.po b/addons/l10n_multilang/i18n/hr.po index 419e7dbaafe..8953d1a63ff 100644 --- a/addons/l10n_multilang/i18n/hr.po +++ b/addons/l10n_multilang/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/hu.po b/addons/l10n_multilang/i18n/hu.po index c9569d92812..c52d77567f3 100644 --- a/addons/l10n_multilang/i18n/hu.po +++ b/addons/l10n_multilang/i18n/hu.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/mn.po b/addons/l10n_multilang/i18n/mn.po index 60a241e6291..c6e7ffe0948 100644 --- a/addons/l10n_multilang/i18n/mn.po +++ b/addons/l10n_multilang/i18n/mn.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/nl.po b/addons/l10n_multilang/i18n/nl.po index 50f1220e8dc..4589b05bb5e 100644 --- a/addons/l10n_multilang/i18n/nl.po +++ b/addons/l10n_multilang/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/pl.po b/addons/l10n_multilang/i18n/pl.po index 2ca23b5e772..2bbfd9c6a9b 100644 --- a/addons/l10n_multilang/i18n/pl.po +++ b/addons/l10n_multilang/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/pt.po b/addons/l10n_multilang/i18n/pt.po index 85ef498d966..39ae005dede 100644 --- a/addons/l10n_multilang/i18n/pt.po +++ b/addons/l10n_multilang/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/pt_BR.po b/addons/l10n_multilang/i18n/pt_BR.po index 2161b72c197..4c99cfa5fa3 100644 --- a/addons/l10n_multilang/i18n/pt_BR.po +++ b/addons/l10n_multilang/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/ro.po b/addons/l10n_multilang/i18n/ro.po index 360888901d6..a9eba2b7491 100644 --- a/addons/l10n_multilang/i18n/ro.po +++ b/addons/l10n_multilang/i18n/ro.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/sl.po b/addons/l10n_multilang/i18n/sl.po index b1345791a7c..89f029f4d9c 100644 --- a/addons/l10n_multilang/i18n/sl.po +++ b/addons/l10n_multilang/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/l10n_multilang/i18n/tr.po b/addons/l10n_multilang/i18n/tr.po index e7653ca5acd..46d8cb94f86 100644 --- a/addons/l10n_multilang/i18n/tr.po +++ b/addons/l10n_multilang/i18n/tr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: l10n_multilang diff --git a/addons/lunch/i18n/ar.po b/addons/lunch/i18n/ar.po index 88d58e65d3c..48ba22f1aab 100644 --- a/addons/lunch/i18n/ar.po +++ b/addons/lunch/i18n/ar.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/bg.po b/addons/lunch/i18n/bg.po index fb6a8006251..f178f8ab983 100644 --- a/addons/lunch/i18n/bg.po +++ b/addons/lunch/i18n/bg.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/ca.po b/addons/lunch/i18n/ca.po index a373206fc54..47180e106e4 100644 --- a/addons/lunch/i18n/ca.po +++ b/addons/lunch/i18n/ca.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/cs.po b/addons/lunch/i18n/cs.po index 46d068df073..1847a6e423a 100644 --- a/addons/lunch/i18n/cs.po +++ b/addons/lunch/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/lunch/i18n/da.po b/addons/lunch/i18n/da.po index d39a774c4c5..b9dc0692c3f 100644 --- a/addons/lunch/i18n/da.po +++ b/addons/lunch/i18n/da.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/de.po b/addons/lunch/i18n/de.po index 9001d3ae9dd..a2ff8c9eb25 100644 --- a/addons/lunch/i18n/de.po +++ b/addons/lunch/i18n/de.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/es.po b/addons/lunch/i18n/es.po index 7337020bcf3..207f71eb580 100644 --- a/addons/lunch/i18n/es.po +++ b/addons/lunch/i18n/es.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/es_CR.po b/addons/lunch/i18n/es_CR.po index 20ef4ea66b5..79ebba1905e 100644 --- a/addons/lunch/i18n/es_CR.po +++ b/addons/lunch/i18n/es_CR.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/lunch/i18n/es_PY.po b/addons/lunch/i18n/es_PY.po index d654b6deb1c..f29914419c5 100644 --- a/addons/lunch/i18n/es_PY.po +++ b/addons/lunch/i18n/es_PY.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/fi.po b/addons/lunch/i18n/fi.po index c5e1ebfacd1..04dff0ff1a5 100644 --- a/addons/lunch/i18n/fi.po +++ b/addons/lunch/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/fr.po b/addons/lunch/i18n/fr.po index 5a8ff8c294f..7ae624693a4 100644 --- a/addons/lunch/i18n/fr.po +++ b/addons/lunch/i18n/fr.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/gl.po b/addons/lunch/i18n/gl.po index 24c8017d036..dec86e557ac 100644 --- a/addons/lunch/i18n/gl.po +++ b/addons/lunch/i18n/gl.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/hr.po b/addons/lunch/i18n/hr.po index 4ef97407134..bff4e928933 100644 --- a/addons/lunch/i18n/hr.po +++ b/addons/lunch/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/hu.po b/addons/lunch/i18n/hu.po index 81f5775ae3f..bc774629cec 100644 --- a/addons/lunch/i18n/hu.po +++ b/addons/lunch/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/it.po b/addons/lunch/i18n/it.po index bb458c22b77..ce79d481a4b 100644 --- a/addons/lunch/i18n/it.po +++ b/addons/lunch/i18n/it.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/ja.po b/addons/lunch/i18n/ja.po index fd7c0d49b2c..d1aee5feeae 100644 --- a/addons/lunch/i18n/ja.po +++ b/addons/lunch/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/mk.po b/addons/lunch/i18n/mk.po index 66e87727527..ef3bc77a1c1 100644 --- a/addons/lunch/i18n/mk.po +++ b/addons/lunch/i18n/mk.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/mn.po b/addons/lunch/i18n/mn.po index 140306634ae..58f89d4bad9 100644 --- a/addons/lunch/i18n/mn.po +++ b/addons/lunch/i18n/mn.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/nl.po b/addons/lunch/i18n/nl.po index 85e6c987b40..9d8e1188633 100644 --- a/addons/lunch/i18n/nl.po +++ b/addons/lunch/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/pt.po b/addons/lunch/i18n/pt.po index f4e41d9fda3..514c229a54a 100644 --- a/addons/lunch/i18n/pt.po +++ b/addons/lunch/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/pt_BR.po b/addons/lunch/i18n/pt_BR.po index baf314889fb..218f0b1d515 100644 --- a/addons/lunch/i18n/pt_BR.po +++ b/addons/lunch/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/ro.po b/addons/lunch/i18n/ro.po index 4767846470f..fba2c0f74d6 100644 --- a/addons/lunch/i18n/ro.po +++ b/addons/lunch/i18n/ro.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/ru.po b/addons/lunch/i18n/ru.po index 6b463c815b3..237cafc838a 100644 --- a/addons/lunch/i18n/ru.po +++ b/addons/lunch/i18n/ru.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/sl.po b/addons/lunch/i18n/sl.po index fcc09c0028a..5f6c8c9c67f 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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/sr@latin.po b/addons/lunch/i18n/sr@latin.po index 9467ee951c7..1d1f28f339b 100644 --- a/addons/lunch/i18n/sr@latin.po +++ b/addons/lunch/i18n/sr@latin.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/sv.po b/addons/lunch/i18n/sv.po index 5ce777b5721..6980664dd54 100644 --- a/addons/lunch/i18n/sv.po +++ b/addons/lunch/i18n/sv.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/tr.po b/addons/lunch/i18n/tr.po index ff64a2422b3..20b801627ef 100644 --- a/addons/lunch/i18n/tr.po +++ b/addons/lunch/i18n/tr.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/zh_CN.po b/addons/lunch/i18n/zh_CN.po index 46412f084d3..b702cb44dc2 100644 --- a/addons/lunch/i18n/zh_CN.po +++ b/addons/lunch/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/lunch/i18n/zh_TW.po b/addons/lunch/i18n/zh_TW.po index a145766aba6..2d5bbf7b197 100644 --- a/addons/lunch/i18n/zh_TW.po +++ b/addons/lunch/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: lunch diff --git a/addons/mail/i18n/ar.po b/addons/mail/i18n/ar.po index 6fb47d7a039..ec2e1704a29 100644 --- a/addons/mail/i18n/ar.po +++ b/addons/mail/i18n/ar.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/bg.po b/addons/mail/i18n/bg.po index e0f8ac68a2c..7cf6c62f616 100644 --- a/addons/mail/i18n/bg.po +++ b/addons/mail/i18n/bg.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/ca.po b/addons/mail/i18n/ca.po index acc918238bb..8452f97ba37 100644 --- a/addons/mail/i18n/ca.po +++ b/addons/mail/i18n/ca.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/da.po b/addons/mail/i18n/da.po index 02be31705ae..dcb518e5e17 100644 --- a/addons/mail/i18n/da.po +++ b/addons/mail/i18n/da.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/de.po b/addons/mail/i18n/de.po index 7f3f515b7b7..3a17c1c7294 100644 --- a/addons/mail/i18n/de.po +++ b/addons/mail/i18n/de.po @@ -15,7 +15,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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/es.po b/addons/mail/i18n/es.po index 4ce2f14236a..2eeefed300e 100644 --- a/addons/mail/i18n/es.po +++ b/addons/mail/i18n/es.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/es_CR.po b/addons/mail/i18n/es_CR.po index 99c4e226de3..d77a89d0ad9 100644 --- a/addons/mail/i18n/es_CR.po +++ b/addons/mail/i18n/es_CR.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/mail/i18n/es_MX.po b/addons/mail/i18n/es_MX.po index b090a2bc091..e02d9189a62 100644 --- a/addons/mail/i18n/es_MX.po +++ b/addons/mail/i18n/es_MX.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/es_PY.po b/addons/mail/i18n/es_PY.po index 66a51fe8d3f..b27ab59b721 100644 --- a/addons/mail/i18n/es_PY.po +++ b/addons/mail/i18n/es_PY.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/et.po b/addons/mail/i18n/et.po index 37531ea8e40..c2d984e6afc 100644 --- a/addons/mail/i18n/et.po +++ b/addons/mail/i18n/et.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/fi.po b/addons/mail/i18n/fi.po index 5f6d604df14..062474237d8 100644 --- a/addons/mail/i18n/fi.po +++ b/addons/mail/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/fr.po b/addons/mail/i18n/fr.po index 43ab95b9708..cb2c0f461d0 100644 --- a/addons/mail/i18n/fr.po +++ b/addons/mail/i18n/fr.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/gl.po b/addons/mail/i18n/gl.po index d4a4b5591d1..ff0e8eb3d99 100644 --- a/addons/mail/i18n/gl.po +++ b/addons/mail/i18n/gl.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/hr.po b/addons/mail/i18n/hr.po index 67b3265932c..c2afc8e8794 100644 --- a/addons/mail/i18n/hr.po +++ b/addons/mail/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/hu.po b/addons/mail/i18n/hu.po index b6ba5c8a5a2..645803483bc 100644 --- a/addons/mail/i18n/hu.po +++ b/addons/mail/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/it.po b/addons/mail/i18n/it.po index df1846add33..d8b563e4e47 100644 --- a/addons/mail/i18n/it.po +++ b/addons/mail/i18n/it.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/ja.po b/addons/mail/i18n/ja.po index 2f48f28a20c..d135c31a420 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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/lt.po b/addons/mail/i18n/lt.po index aa35067747d..e6607b28764 100644 --- a/addons/mail/i18n/lt.po +++ b/addons/mail/i18n/lt.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/lv.po b/addons/mail/i18n/lv.po index cdbb8cc77d1..b04c87111e6 100644 --- a/addons/mail/i18n/lv.po +++ b/addons/mail/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/mk.po b/addons/mail/i18n/mk.po index 7af2fc814fc..3aeeaa1392e 100644 --- a/addons/mail/i18n/mk.po +++ b/addons/mail/i18n/mk.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/mn.po b/addons/mail/i18n/mn.po index 58f3c2033a6..84ea4b5f700 100644 --- a/addons/mail/i18n/mn.po +++ b/addons/mail/i18n/mn.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/nl.po b/addons/mail/i18n/nl.po index b45eb3811d5..05c2574990f 100644 --- a/addons/mail/i18n/nl.po +++ b/addons/mail/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/pl.po b/addons/mail/i18n/pl.po index a736f8090a5..6d53aabca12 100644 --- a/addons/mail/i18n/pl.po +++ b/addons/mail/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/pt.po b/addons/mail/i18n/pt.po index 08cf2f9f49c..b36061318f0 100644 --- a/addons/mail/i18n/pt.po +++ b/addons/mail/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/pt_BR.po b/addons/mail/i18n/pt_BR.po index aadfd7a2f0e..5645d15e121 100644 --- a/addons/mail/i18n/pt_BR.po +++ b/addons/mail/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/ro.po b/addons/mail/i18n/ro.po index d936acd5ba7..6a9911a6efa 100644 --- a/addons/mail/i18n/ro.po +++ b/addons/mail/i18n/ro.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/ru.po b/addons/mail/i18n/ru.po index 9b78a365a64..c0ae186a5bd 100644 --- a/addons/mail/i18n/ru.po +++ b/addons/mail/i18n/ru.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/sl.po b/addons/mail/i18n/sl.po index 6159bbc27d8..8dca991a1e2 100644 --- a/addons/mail/i18n/sl.po +++ b/addons/mail/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/sr@latin.po b/addons/mail/i18n/sr@latin.po index 82449293b36..26dac34eda1 100644 --- a/addons/mail/i18n/sr@latin.po +++ b/addons/mail/i18n/sr@latin.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/sv.po b/addons/mail/i18n/sv.po index c7424144113..6007819e45d 100644 --- a/addons/mail/i18n/sv.po +++ b/addons/mail/i18n/sv.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/tr.po b/addons/mail/i18n/tr.po index 5b229fc179f..23dbab8d404 100644 --- a/addons/mail/i18n/tr.po +++ b/addons/mail/i18n/tr.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/zh_CN.po b/addons/mail/i18n/zh_CN.po index ee29695bff5..ba839ebc5bd 100644 --- a/addons/mail/i18n/zh_CN.po +++ b/addons/mail/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/mail/i18n/zh_TW.po b/addons/mail/i18n/zh_TW.po index 5704914890f..f7b38e9c36c 100644 --- a/addons/mail/i18n/zh_TW.po +++ b/addons/mail/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mail diff --git a/addons/marketing/i18n/ar.po b/addons/marketing/i18n/ar.po index 82498510297..8bd33426113 100644 --- a/addons/marketing/i18n/ar.po +++ b/addons/marketing/i18n/ar.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/bg.po b/addons/marketing/i18n/bg.po index 0dff64e8a85..dcdfc76e36d 100644 --- a/addons/marketing/i18n/bg.po +++ b/addons/marketing/i18n/bg.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/ca.po b/addons/marketing/i18n/ca.po index e760f033e2d..3954d991f57 100644 --- a/addons/marketing/i18n/ca.po +++ b/addons/marketing/i18n/ca.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/cs.po b/addons/marketing/i18n/cs.po index a7434618a74..29d7e90fb5f 100644 --- a/addons/marketing/i18n/cs.po +++ b/addons/marketing/i18n/cs.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/da.po b/addons/marketing/i18n/da.po index 58c5f196013..dd52aa11456 100644 --- a/addons/marketing/i18n/da.po +++ b/addons/marketing/i18n/da.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/de.po b/addons/marketing/i18n/de.po index c9a9112d500..586705bb6df 100644 --- a/addons/marketing/i18n/de.po +++ b/addons/marketing/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/el.po b/addons/marketing/i18n/el.po index ca1854addff..554acc850b8 100644 --- a/addons/marketing/i18n/el.po +++ b/addons/marketing/i18n/el.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/es.po b/addons/marketing/i18n/es.po index ae459986f27..c70ccbe6fd6 100644 --- a/addons/marketing/i18n/es.po +++ b/addons/marketing/i18n/es.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/es_CR.po b/addons/marketing/i18n/es_CR.po index 8e297bb0628..e9a80cee7eb 100644 --- a/addons/marketing/i18n/es_CR.po +++ b/addons/marketing/i18n/es_CR.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/marketing/i18n/fi.po b/addons/marketing/i18n/fi.po index 4f21628b160..e1bae95fe19 100644 --- a/addons/marketing/i18n/fi.po +++ b/addons/marketing/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/fr.po b/addons/marketing/i18n/fr.po index e2e0c4274fe..353be4ac198 100644 --- a/addons/marketing/i18n/fr.po +++ b/addons/marketing/i18n/fr.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/gl.po b/addons/marketing/i18n/gl.po index 03a9edc25a2..2dba67f7a22 100644 --- a/addons/marketing/i18n/gl.po +++ b/addons/marketing/i18n/gl.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/hr.po b/addons/marketing/i18n/hr.po index cc0711e85d8..18f0aca1715 100644 --- a/addons/marketing/i18n/hr.po +++ b/addons/marketing/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/hu.po b/addons/marketing/i18n/hu.po index 94a2e8e7b76..c1a89e42686 100644 --- a/addons/marketing/i18n/hu.po +++ b/addons/marketing/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/id.po b/addons/marketing/i18n/id.po index 578cc9029fb..f40376deb11 100644 --- a/addons/marketing/i18n/id.po +++ b/addons/marketing/i18n/id.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/it.po b/addons/marketing/i18n/it.po index 334600dfae7..0cdbe08c847 100644 --- a/addons/marketing/i18n/it.po +++ b/addons/marketing/i18n/it.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/ja.po b/addons/marketing/i18n/ja.po index 3cede0eafe1..c2b9210ee69 100644 --- a/addons/marketing/i18n/ja.po +++ b/addons/marketing/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/lt.po b/addons/marketing/i18n/lt.po index e37134918d1..eee8fe0ffe6 100644 --- a/addons/marketing/i18n/lt.po +++ b/addons/marketing/i18n/lt.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/lv.po b/addons/marketing/i18n/lv.po index b1ebec4183a..822e6d74078 100644 --- a/addons/marketing/i18n/lv.po +++ b/addons/marketing/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/mk.po b/addons/marketing/i18n/mk.po index fa769ea905b..f38e5b6890e 100644 --- a/addons/marketing/i18n/mk.po +++ b/addons/marketing/i18n/mk.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/mn.po b/addons/marketing/i18n/mn.po index 5a46423e8fa..a787bcb4bbe 100644 --- a/addons/marketing/i18n/mn.po +++ b/addons/marketing/i18n/mn.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/nb.po b/addons/marketing/i18n/nb.po index a85505f9d17..834040fb6e3 100644 --- a/addons/marketing/i18n/nb.po +++ b/addons/marketing/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/nl.po b/addons/marketing/i18n/nl.po index ebd6cfff07e..50a07e3fef7 100644 --- a/addons/marketing/i18n/nl.po +++ b/addons/marketing/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/pl.po b/addons/marketing/i18n/pl.po index 7faa63b877d..34772222d02 100644 --- a/addons/marketing/i18n/pl.po +++ b/addons/marketing/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/pt.po b/addons/marketing/i18n/pt.po index a6f6899b8d3..e86847a14a4 100644 --- a/addons/marketing/i18n/pt.po +++ b/addons/marketing/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/pt_BR.po b/addons/marketing/i18n/pt_BR.po index 94dda56218a..73d7b313dbf 100644 --- a/addons/marketing/i18n/pt_BR.po +++ b/addons/marketing/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/ro.po b/addons/marketing/i18n/ro.po index a31ff9e0858..828258d9ac9 100644 --- a/addons/marketing/i18n/ro.po +++ b/addons/marketing/i18n/ro.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/ru.po b/addons/marketing/i18n/ru.po index 34b0427da5c..cda5753a333 100644 --- a/addons/marketing/i18n/ru.po +++ b/addons/marketing/i18n/ru.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/sk.po b/addons/marketing/i18n/sk.po index b8e190a5087..dcd029301e4 100644 --- a/addons/marketing/i18n/sk.po +++ b/addons/marketing/i18n/sk.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/sl.po b/addons/marketing/i18n/sl.po index 67d467b3d3c..015a4fa0208 100644 --- a/addons/marketing/i18n/sl.po +++ b/addons/marketing/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/sr.po b/addons/marketing/i18n/sr.po index cdf0d423d55..767405cde85 100644 --- a/addons/marketing/i18n/sr.po +++ b/addons/marketing/i18n/sr.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/sr@latin.po b/addons/marketing/i18n/sr@latin.po index 44c6d95601a..6f5d3eb64b7 100644 --- a/addons/marketing/i18n/sr@latin.po +++ b/addons/marketing/i18n/sr@latin.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/sv.po b/addons/marketing/i18n/sv.po index e2ddf2eec08..b9c962f6a8e 100644 --- a/addons/marketing/i18n/sv.po +++ b/addons/marketing/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/th.po b/addons/marketing/i18n/th.po index 9a078fcf543..74fa8778800 100644 --- a/addons/marketing/i18n/th.po +++ b/addons/marketing/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/tr.po b/addons/marketing/i18n/tr.po index a3d4ffc10d7..af0f9a1e9aa 100644 --- a/addons/marketing/i18n/tr.po +++ b/addons/marketing/i18n/tr.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/zh_CN.po b/addons/marketing/i18n/zh_CN.po index 7f8c6578f81..ca07ef74c63 100644 --- a/addons/marketing/i18n/zh_CN.po +++ b/addons/marketing/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing/i18n/zh_TW.po b/addons/marketing/i18n/zh_TW.po index 316b284c8f9..31448f64705 100644 --- a/addons/marketing/i18n/zh_TW.po +++ b/addons/marketing/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing diff --git a/addons/marketing_campaign/i18n/ar.po b/addons/marketing_campaign/i18n/ar.po index 0945ffa912d..39a3cb55534 100644 --- a/addons/marketing_campaign/i18n/ar.po +++ b/addons/marketing_campaign/i18n/ar.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/bg.po b/addons/marketing_campaign/i18n/bg.po index 669b8e6f330..26fa94ff500 100644 --- a/addons/marketing_campaign/i18n/bg.po +++ b/addons/marketing_campaign/i18n/bg.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/ca.po b/addons/marketing_campaign/i18n/ca.po index 14da150c30d..ccdb778d6a6 100644 --- a/addons/marketing_campaign/i18n/ca.po +++ b/addons/marketing_campaign/i18n/ca.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/cs.po b/addons/marketing_campaign/i18n/cs.po index 896b32036bd..eb593ad6300 100644 --- a/addons/marketing_campaign/i18n/cs.po +++ b/addons/marketing_campaign/i18n/cs.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/da.po b/addons/marketing_campaign/i18n/da.po index 1dbbb10c279..80771b1a604 100644 --- a/addons/marketing_campaign/i18n/da.po +++ b/addons/marketing_campaign/i18n/da.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/de.po b/addons/marketing_campaign/i18n/de.po index 5efd3fc2697..302addb854c 100644 --- a/addons/marketing_campaign/i18n/de.po +++ b/addons/marketing_campaign/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/el.po b/addons/marketing_campaign/i18n/el.po index 68087794eaf..541177d106b 100644 --- a/addons/marketing_campaign/i18n/el.po +++ b/addons/marketing_campaign/i18n/el.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/es.po b/addons/marketing_campaign/i18n/es.po index 5eb41ac28d0..8be1cca7d4f 100644 --- a/addons/marketing_campaign/i18n/es.po +++ b/addons/marketing_campaign/i18n/es.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/es_CR.po b/addons/marketing_campaign/i18n/es_CR.po index 99820ce1d3f..ffedb04bf93 100644 --- a/addons/marketing_campaign/i18n/es_CR.po +++ b/addons/marketing_campaign/i18n/es_CR.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/marketing_campaign/i18n/fi.po b/addons/marketing_campaign/i18n/fi.po index 37d90c104f3..e24e278f511 100644 --- a/addons/marketing_campaign/i18n/fi.po +++ b/addons/marketing_campaign/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/fr.po b/addons/marketing_campaign/i18n/fr.po index 8f0836d432f..9e9ec0ef3b1 100644 --- a/addons/marketing_campaign/i18n/fr.po +++ b/addons/marketing_campaign/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/hi.po b/addons/marketing_campaign/i18n/hi.po index 4f11058fe55..a4ddfe87584 100644 --- a/addons/marketing_campaign/i18n/hi.po +++ b/addons/marketing_campaign/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/hr.po b/addons/marketing_campaign/i18n/hr.po index 2ee92a8bfda..cc5f10d8751 100644 --- a/addons/marketing_campaign/i18n/hr.po +++ b/addons/marketing_campaign/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/hu.po b/addons/marketing_campaign/i18n/hu.po index 81da965306c..c4bd8af2418 100644 --- a/addons/marketing_campaign/i18n/hu.po +++ b/addons/marketing_campaign/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/it.po b/addons/marketing_campaign/i18n/it.po index c4fa718b985..6fb20522862 100644 --- a/addons/marketing_campaign/i18n/it.po +++ b/addons/marketing_campaign/i18n/it.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/ja.po b/addons/marketing_campaign/i18n/ja.po index 7477450f90d..1715c407d5b 100644 --- a/addons/marketing_campaign/i18n/ja.po +++ b/addons/marketing_campaign/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/lv.po b/addons/marketing_campaign/i18n/lv.po index def0ec4f02d..7b50b36395a 100644 --- a/addons/marketing_campaign/i18n/lv.po +++ b/addons/marketing_campaign/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/mk.po b/addons/marketing_campaign/i18n/mk.po index 100be1b9144..794287dc7fd 100644 --- a/addons/marketing_campaign/i18n/mk.po +++ b/addons/marketing_campaign/i18n/mk.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/mn.po b/addons/marketing_campaign/i18n/mn.po index 7796e45052a..6c3d6db8fcb 100644 --- a/addons/marketing_campaign/i18n/mn.po +++ b/addons/marketing_campaign/i18n/mn.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/nl.po b/addons/marketing_campaign/i18n/nl.po index bb439dae3dd..40298205db4 100644 --- a/addons/marketing_campaign/i18n/nl.po +++ b/addons/marketing_campaign/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/pl.po b/addons/marketing_campaign/i18n/pl.po index d13af4a5609..f0bba91b506 100644 --- a/addons/marketing_campaign/i18n/pl.po +++ b/addons/marketing_campaign/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/pt.po b/addons/marketing_campaign/i18n/pt.po index 038957ca047..e8e89e9036e 100644 --- a/addons/marketing_campaign/i18n/pt.po +++ b/addons/marketing_campaign/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/pt_BR.po b/addons/marketing_campaign/i18n/pt_BR.po index d396798cc2b..cb17ae9095c 100644 --- a/addons/marketing_campaign/i18n/pt_BR.po +++ b/addons/marketing_campaign/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/ro.po b/addons/marketing_campaign/i18n/ro.po index c4d708c4c4f..5882e04ef2b 100644 --- a/addons/marketing_campaign/i18n/ro.po +++ b/addons/marketing_campaign/i18n/ro.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/ru.po b/addons/marketing_campaign/i18n/ru.po index cfd9c842e78..98a19180ac4 100644 --- a/addons/marketing_campaign/i18n/ru.po +++ b/addons/marketing_campaign/i18n/ru.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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/sl.po b/addons/marketing_campaign/i18n/sl.po index 28f536b0dd3..610f1a7a7aa 100644 --- a/addons/marketing_campaign/i18n/sl.po +++ b/addons/marketing_campaign/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-03-15 05:46+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/sr@latin.po b/addons/marketing_campaign/i18n/sr@latin.po index 288ad7ca660..2658ed32cb3 100644 --- a/addons/marketing_campaign/i18n/sr@latin.po +++ b/addons/marketing_campaign/i18n/sr@latin.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/sv.po b/addons/marketing_campaign/i18n/sv.po index 5077ac19538..b6648eb474c 100644 --- a/addons/marketing_campaign/i18n/sv.po +++ b/addons/marketing_campaign/i18n/sv.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/tr.po b/addons/marketing_campaign/i18n/tr.po index 2f1c05c818b..a5ff2a8d3d1 100644 --- a/addons/marketing_campaign/i18n/tr.po +++ b/addons/marketing_campaign/i18n/tr.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/zh_CN.po b/addons/marketing_campaign/i18n/zh_CN.po index fc34b3fc44e..d505d53aa1d 100644 --- a/addons/marketing_campaign/i18n/zh_CN.po +++ b/addons/marketing_campaign/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign_crm_demo/i18n/ar.po b/addons/marketing_campaign_crm_demo/i18n/ar.po index 75183ada1a4..e087b069b0a 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ar.po +++ b/addons/marketing_campaign_crm_demo/i18n/ar.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/bg.po b/addons/marketing_campaign_crm_demo/i18n/bg.po index 9639cccc011..130b58ec38a 100644 --- a/addons/marketing_campaign_crm_demo/i18n/bg.po +++ b/addons/marketing_campaign_crm_demo/i18n/bg.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/ca.po b/addons/marketing_campaign_crm_demo/i18n/ca.po index a97f6df2a42..dcd4a52bc3b 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ca.po +++ b/addons/marketing_campaign_crm_demo/i18n/ca.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/da.po b/addons/marketing_campaign_crm_demo/i18n/da.po index e405f37f6d3..8a9e985e5b5 100644 --- a/addons/marketing_campaign_crm_demo/i18n/da.po +++ b/addons/marketing_campaign_crm_demo/i18n/da.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/de.po b/addons/marketing_campaign_crm_demo/i18n/de.po index 80ad54615a7..ed1fbf941c3 100644 --- a/addons/marketing_campaign_crm_demo/i18n/de.po +++ b/addons/marketing_campaign_crm_demo/i18n/de.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/es.po b/addons/marketing_campaign_crm_demo/i18n/es.po index b0403bb8f74..06fc923f968 100644 --- a/addons/marketing_campaign_crm_demo/i18n/es.po +++ b/addons/marketing_campaign_crm_demo/i18n/es.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/es_CR.po b/addons/marketing_campaign_crm_demo/i18n/es_CR.po index adb4344e587..3504aeb5f38 100644 --- a/addons/marketing_campaign_crm_demo/i18n/es_CR.po +++ b/addons/marketing_campaign_crm_demo/i18n/es_CR.po @@ -15,7 +15,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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/marketing_campaign_crm_demo/i18n/fr.po b/addons/marketing_campaign_crm_demo/i18n/fr.po index f92916a1524..f31aaa23efb 100644 --- a/addons/marketing_campaign_crm_demo/i18n/fr.po +++ b/addons/marketing_campaign_crm_demo/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/gl.po b/addons/marketing_campaign_crm_demo/i18n/gl.po index 44f9f1a5009..addc471ec77 100644 --- a/addons/marketing_campaign_crm_demo/i18n/gl.po +++ b/addons/marketing_campaign_crm_demo/i18n/gl.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/hr.po b/addons/marketing_campaign_crm_demo/i18n/hr.po index a8cbb1ba281..2a087351d94 100644 --- a/addons/marketing_campaign_crm_demo/i18n/hr.po +++ b/addons/marketing_campaign_crm_demo/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/hu.po b/addons/marketing_campaign_crm_demo/i18n/hu.po index 7b084e2e6c2..9edd01cff77 100644 --- a/addons/marketing_campaign_crm_demo/i18n/hu.po +++ b/addons/marketing_campaign_crm_demo/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/it.po b/addons/marketing_campaign_crm_demo/i18n/it.po index 5441e9df352..ca19317603a 100644 --- a/addons/marketing_campaign_crm_demo/i18n/it.po +++ b/addons/marketing_campaign_crm_demo/i18n/it.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/ja.po b/addons/marketing_campaign_crm_demo/i18n/ja.po index 3c59fcdd974..0215ed087e9 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ja.po +++ b/addons/marketing_campaign_crm_demo/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/mk.po b/addons/marketing_campaign_crm_demo/i18n/mk.po index 4f69748d1ea..e8d8f2a7dc3 100644 --- a/addons/marketing_campaign_crm_demo/i18n/mk.po +++ b/addons/marketing_campaign_crm_demo/i18n/mk.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\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 f518093d808..0d37fef14e7 100644 --- a/addons/marketing_campaign_crm_demo/i18n/nb.po +++ b/addons/marketing_campaign_crm_demo/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/nl.po b/addons/marketing_campaign_crm_demo/i18n/nl.po index 285d496d72e..372dd771109 100644 --- a/addons/marketing_campaign_crm_demo/i18n/nl.po +++ b/addons/marketing_campaign_crm_demo/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/pt.po b/addons/marketing_campaign_crm_demo/i18n/pt.po index 7b2bba84a2f..5a81c35e264 100644 --- a/addons/marketing_campaign_crm_demo/i18n/pt.po +++ b/addons/marketing_campaign_crm_demo/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/pt_BR.po b/addons/marketing_campaign_crm_demo/i18n/pt_BR.po index fed9e5b4a71..ff697d74a2b 100644 --- a/addons/marketing_campaign_crm_demo/i18n/pt_BR.po +++ b/addons/marketing_campaign_crm_demo/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/ro.po b/addons/marketing_campaign_crm_demo/i18n/ro.po index a4ffa2dadd6..998d7d7aa48 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ro.po +++ b/addons/marketing_campaign_crm_demo/i18n/ro.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/ru.po b/addons/marketing_campaign_crm_demo/i18n/ru.po index 2b8cdfca3a5..741cd9ca8e6 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ru.po +++ b/addons/marketing_campaign_crm_demo/i18n/ru.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/sl.po b/addons/marketing_campaign_crm_demo/i18n/sl.po index c1757b83660..d4dea1f1658 100644 --- a/addons/marketing_campaign_crm_demo/i18n/sl.po +++ b/addons/marketing_campaign_crm_demo/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/sr.po b/addons/marketing_campaign_crm_demo/i18n/sr.po index 0a9d4dbfe12..c02c28efe62 100644 --- a/addons/marketing_campaign_crm_demo/i18n/sr.po +++ b/addons/marketing_campaign_crm_demo/i18n/sr.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/sr@latin.po b/addons/marketing_campaign_crm_demo/i18n/sr@latin.po index d81b93a5039..724cc4c0d9d 100644 --- a/addons/marketing_campaign_crm_demo/i18n/sr@latin.po +++ b/addons/marketing_campaign_crm_demo/i18n/sr@latin.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/tr.po b/addons/marketing_campaign_crm_demo/i18n/tr.po index e31c4a584ac..71080dd10a1 100644 --- a/addons/marketing_campaign_crm_demo/i18n/tr.po +++ b/addons/marketing_campaign_crm_demo/i18n/tr.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/zh_CN.po b/addons/marketing_campaign_crm_demo/i18n/zh_CN.po index c099c40ce2e..db05f824aed 100644 --- a/addons/marketing_campaign_crm_demo/i18n/zh_CN.po +++ b/addons/marketing_campaign_crm_demo/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/membership/i18n/ar.po b/addons/membership/i18n/ar.po index e8b2db0610d..902acfb24c0 100644 --- a/addons/membership/i18n/ar.po +++ b/addons/membership/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/bg.po b/addons/membership/i18n/bg.po index 2021aa86285..19dd70d6355 100644 --- a/addons/membership/i18n/bg.po +++ b/addons/membership/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/bs.po b/addons/membership/i18n/bs.po index ec0790ceb67..0a382ae10b8 100644 --- a/addons/membership/i18n/bs.po +++ b/addons/membership/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/ca.po b/addons/membership/i18n/ca.po index d8169bc46c5..f964dc92453 100644 --- a/addons/membership/i18n/ca.po +++ b/addons/membership/i18n/ca.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/cs.po b/addons/membership/i18n/cs.po index 94ddab406f7..a60025da26c 100644 --- a/addons/membership/i18n/cs.po +++ b/addons/membership/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/membership/i18n/da.po b/addons/membership/i18n/da.po index c8951fa6c01..2428bf64e51 100644 --- a/addons/membership/i18n/da.po +++ b/addons/membership/i18n/da.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/de.po b/addons/membership/i18n/de.po index fabe36c1bfa..dbe9dabd8ad 100644 --- a/addons/membership/i18n/de.po +++ b/addons/membership/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/es.po b/addons/membership/i18n/es.po index 20de6f41a04..d54b7caed42 100644 --- a/addons/membership/i18n/es.po +++ b/addons/membership/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/es_AR.po b/addons/membership/i18n/es_AR.po index 2e5cabff036..4bcab832c8b 100644 --- a/addons/membership/i18n/es_AR.po +++ b/addons/membership/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/es_CR.po b/addons/membership/i18n/es_CR.po index 5a5c26bdd81..c93a38acb8f 100644 --- a/addons/membership/i18n/es_CR.po +++ b/addons/membership/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/membership/i18n/et.po b/addons/membership/i18n/et.po index 42c6f9767c6..41f90adca74 100644 --- a/addons/membership/i18n/et.po +++ b/addons/membership/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/fi.po b/addons/membership/i18n/fi.po index 96421d44e04..766e772a17d 100644 --- a/addons/membership/i18n/fi.po +++ b/addons/membership/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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/fr.po b/addons/membership/i18n/fr.po index 4f93f4538bf..52178e7bb08 100644 --- a/addons/membership/i18n/fr.po +++ b/addons/membership/i18n/fr.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/gl.po b/addons/membership/i18n/gl.po index de3bbbb7a66..a40dc5feec0 100644 --- a/addons/membership/i18n/gl.po +++ b/addons/membership/i18n/gl.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/hr.po b/addons/membership/i18n/hr.po index 43f462d2732..040d678df3a 100644 --- a/addons/membership/i18n/hr.po +++ b/addons/membership/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/hu.po b/addons/membership/i18n/hu.po index 3a781f85d2a..29414704aba 100644 --- a/addons/membership/i18n/hu.po +++ b/addons/membership/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/id.po b/addons/membership/i18n/id.po index 86a27907cb8..acacb63dd14 100644 --- a/addons/membership/i18n/id.po +++ b/addons/membership/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/it.po b/addons/membership/i18n/it.po index bee18b071c1..89ee0e9124b 100644 --- a/addons/membership/i18n/it.po +++ b/addons/membership/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/ja.po b/addons/membership/i18n/ja.po index b19152b5408..28fda9300ab 100644 --- a/addons/membership/i18n/ja.po +++ b/addons/membership/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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/ko.po b/addons/membership/i18n/ko.po index ce5af8f0d52..f6139cc918b 100644 --- a/addons/membership/i18n/ko.po +++ b/addons/membership/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/lt.po b/addons/membership/i18n/lt.po index d34d3890f7b..6070dcfc04e 100644 --- a/addons/membership/i18n/lt.po +++ b/addons/membership/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/mk.po b/addons/membership/i18n/mk.po index c1fa0550c72..893328ee14e 100644 --- a/addons/membership/i18n/mk.po +++ b/addons/membership/i18n/mk.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/mn.po b/addons/membership/i18n/mn.po index f5fb2a57eca..12a623667df 100644 --- a/addons/membership/i18n/mn.po +++ b/addons/membership/i18n/mn.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/nl.po b/addons/membership/i18n/nl.po index b6d08a4ba24..02f02c03023 100644 --- a/addons/membership/i18n/nl.po +++ b/addons/membership/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/nl_BE.po b/addons/membership/i18n/nl_BE.po index 42ca7d2d35e..cf4ab429cc6 100644 --- a/addons/membership/i18n/nl_BE.po +++ b/addons/membership/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/pl.po b/addons/membership/i18n/pl.po index d6eed0407d0..163ac785c64 100644 --- a/addons/membership/i18n/pl.po +++ b/addons/membership/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/pt.po b/addons/membership/i18n/pt.po index bca6a14ec88..7476c14494c 100644 --- a/addons/membership/i18n/pt.po +++ b/addons/membership/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/pt_BR.po b/addons/membership/i18n/pt_BR.po index 9b41f543b36..f2a2ce6f0a0 100644 --- a/addons/membership/i18n/pt_BR.po +++ b/addons/membership/i18n/pt_BR.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/ro.po b/addons/membership/i18n/ro.po index d645a4cf919..d3687d1e765 100644 --- a/addons/membership/i18n/ro.po +++ b/addons/membership/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/ru.po b/addons/membership/i18n/ru.po index d74ab0ab794..a44a4f5c249 100644 --- a/addons/membership/i18n/ru.po +++ b/addons/membership/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/sk.po b/addons/membership/i18n/sk.po index 4fd31f9178f..fa365c12bcb 100644 --- a/addons/membership/i18n/sk.po +++ b/addons/membership/i18n/sk.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/sl.po b/addons/membership/i18n/sl.po index 4c1279faf00..e5ab9c48fa3 100644 --- a/addons/membership/i18n/sl.po +++ b/addons/membership/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/sq.po b/addons/membership/i18n/sq.po index 4f5089d5b74..02f965449ec 100644 --- a/addons/membership/i18n/sq.po +++ b/addons/membership/i18n/sq.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/sr@latin.po b/addons/membership/i18n/sr@latin.po index edd8cb7a376..f44ed441b1e 100644 --- a/addons/membership/i18n/sr@latin.po +++ b/addons/membership/i18n/sr@latin.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/sv.po b/addons/membership/i18n/sv.po index b5784d3f042..b663c38cc19 100644 --- a/addons/membership/i18n/sv.po +++ b/addons/membership/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/tlh.po b/addons/membership/i18n/tlh.po index 1346af17992..95705bcc4be 100644 --- a/addons/membership/i18n/tlh.po +++ b/addons/membership/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/tr.po b/addons/membership/i18n/tr.po index dc3ede2a55f..c2154f948a7 100644 --- a/addons/membership/i18n/tr.po +++ b/addons/membership/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/uk.po b/addons/membership/i18n/uk.po index 291b3de08ee..7c743d9f934 100644 --- a/addons/membership/i18n/uk.po +++ b/addons/membership/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/vi.po b/addons/membership/i18n/vi.po index c6e6f2c8d58..809c8f9b8f8 100644 --- a/addons/membership/i18n/vi.po +++ b/addons/membership/i18n/vi.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/zh_CN.po b/addons/membership/i18n/zh_CN.po index 16545efac2c..85ff41ed376 100644 --- a/addons/membership/i18n/zh_CN.po +++ b/addons/membership/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/membership/i18n/zh_TW.po b/addons/membership/i18n/zh_TW.po index dc4bc7e34a2..6f2c634a700 100644 --- a/addons/membership/i18n/zh_TW.po +++ b/addons/membership/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: membership diff --git a/addons/mrp/i18n/ar.po b/addons/mrp/i18n/ar.po index f01c63de9ab..526f9c55a19 100644 --- a/addons/mrp/i18n/ar.po +++ b/addons/mrp/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/bg.po b/addons/mrp/i18n/bg.po index 056c849456b..ac5c9250b96 100644 --- a/addons/mrp/i18n/bg.po +++ b/addons/mrp/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/bs.po b/addons/mrp/i18n/bs.po index 25e23585776..34494637fff 100644 --- a/addons/mrp/i18n/bs.po +++ b/addons/mrp/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/ca.po b/addons/mrp/i18n/ca.po index 6742548f3b9..27e8771a760 100644 --- a/addons/mrp/i18n/ca.po +++ b/addons/mrp/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/cs.po b/addons/mrp/i18n/cs.po index 1cd19ba4f93..1dbe3f9e41c 100644 --- a/addons/mrp/i18n/cs.po +++ b/addons/mrp/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/mrp/i18n/da.po b/addons/mrp/i18n/da.po index 7e92517a474..f6d38569ae9 100644 --- a/addons/mrp/i18n/da.po +++ b/addons/mrp/i18n/da.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-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/de.po b/addons/mrp/i18n/de.po index 590cbf67279..0bda1dae09d 100644 --- a/addons/mrp/i18n/de.po +++ b/addons/mrp/i18n/de.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-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/el.po b/addons/mrp/i18n/el.po index 7ade9c74698..9a160422830 100644 --- a/addons/mrp/i18n/el.po +++ b/addons/mrp/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/mrp/i18n/es.po b/addons/mrp/i18n/es.po index 7f7b2e8a6f6..ef24085d30d 100644 --- a/addons/mrp/i18n/es.po +++ b/addons/mrp/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/es_AR.po b/addons/mrp/i18n/es_AR.po index dae82aaeb99..575b5ac684e 100644 --- a/addons/mrp/i18n/es_AR.po +++ b/addons/mrp/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/es_CL.po b/addons/mrp/i18n/es_CL.po index 51b662a2d46..9f57be67a7d 100644 --- a/addons/mrp/i18n/es_CL.po +++ b/addons/mrp/i18n/es_CL.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/es_CR.po b/addons/mrp/i18n/es_CR.po index 3d62c6b9be0..f673088673c 100644 --- a/addons/mrp/i18n/es_CR.po +++ b/addons/mrp/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/mrp/i18n/es_EC.po b/addons/mrp/i18n/es_EC.po index 308c3a25c34..5d0cc19bb70 100644 --- a/addons/mrp/i18n/es_EC.po +++ b/addons/mrp/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/et.po b/addons/mrp/i18n/et.po index ec573e66422..e9ff0f49499 100644 --- a/addons/mrp/i18n/et.po +++ b/addons/mrp/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/fi.po b/addons/mrp/i18n/fi.po index f1d48c4482e..33b8b6fcad7 100644 --- a/addons/mrp/i18n/fi.po +++ b/addons/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-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/fr.po b/addons/mrp/i18n/fr.po index 7480a7b3ffc..b72f6806aa2 100644 --- a/addons/mrp/i18n/fr.po +++ b/addons/mrp/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/gl.po b/addons/mrp/i18n/gl.po index 7ca1d03ec1c..0446325e37d 100644 --- a/addons/mrp/i18n/gl.po +++ b/addons/mrp/i18n/gl.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-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/hi.po b/addons/mrp/i18n/hi.po index 340bf0e9d7a..855ecde2926 100644 --- a/addons/mrp/i18n/hi.po +++ b/addons/mrp/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/hr.po b/addons/mrp/i18n/hr.po index bed8164b87e..8e007896498 100644 --- a/addons/mrp/i18n/hr.po +++ b/addons/mrp/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/hu.po b/addons/mrp/i18n/hu.po index e3b65916ddc..0d3c8d3b1a6 100644 --- a/addons/mrp/i18n/hu.po +++ b/addons/mrp/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/id.po b/addons/mrp/i18n/id.po index 4dba54051c6..90a7d9bb03f 100644 --- a/addons/mrp/i18n/id.po +++ b/addons/mrp/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/it.po b/addons/mrp/i18n/it.po index 6864aab6b66..da8fdd4501f 100644 --- a/addons/mrp/i18n/it.po +++ b/addons/mrp/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/ja.po b/addons/mrp/i18n/ja.po index 2a6a554b817..4a2b6b3e70c 100644 --- a/addons/mrp/i18n/ja.po +++ b/addons/mrp/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-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/ko.po b/addons/mrp/i18n/ko.po index e7dc7be821c..04647c128e4 100644 --- a/addons/mrp/i18n/ko.po +++ b/addons/mrp/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/lt.po b/addons/mrp/i18n/lt.po index d71a61333c1..d531a9fde53 100644 --- a/addons/mrp/i18n/lt.po +++ b/addons/mrp/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: lt\n" diff --git a/addons/mrp/i18n/lv.po b/addons/mrp/i18n/lv.po index 1d98c8acba8..d441623e907 100644 --- a/addons/mrp/i18n/lv.po +++ b/addons/mrp/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/mk.po b/addons/mrp/i18n/mk.po index df9e5989c93..67c787b22c8 100644 --- a/addons/mrp/i18n/mk.po +++ b/addons/mrp/i18n/mk.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-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/mn.po b/addons/mrp/i18n/mn.po index 711d318fa4b..8d3c0aee785 100644 --- a/addons/mrp/i18n/mn.po +++ b/addons/mrp/i18n/mn.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-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/nb.po b/addons/mrp/i18n/nb.po index 4cab87a3ad2..e149a55181b 100644 --- a/addons/mrp/i18n/nb.po +++ b/addons/mrp/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/nl.po b/addons/mrp/i18n/nl.po index cfc3689e05e..6bc4f4e756d 100644 --- a/addons/mrp/i18n/nl.po +++ b/addons/mrp/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp @@ -1975,7 +1975,7 @@ msgstr "Geannuleerd" #. module: mrp #: view:mrp.production:0 msgid "(Update)" -msgstr "(Update)" +msgstr "(bijwerken)" #. module: mrp #: help:mrp.config.settings,module_mrp_operations:0 diff --git a/addons/mrp/i18n/nl_BE.po b/addons/mrp/i18n/nl_BE.po index 085341d5374..ebb96dbfb37 100644 --- a/addons/mrp/i18n/nl_BE.po +++ b/addons/mrp/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/pl.po b/addons/mrp/i18n/pl.po index 316c720ee98..5adcdfc1021 100644 --- a/addons/mrp/i18n/pl.po +++ b/addons/mrp/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/pt.po b/addons/mrp/i18n/pt.po index b1e9d03dca5..db79c54cc83 100644 --- a/addons/mrp/i18n/pt.po +++ b/addons/mrp/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/pt_BR.po b/addons/mrp/i18n/pt_BR.po index 9a37c4d072d..db3f23fad15 100644 --- a/addons/mrp/i18n/pt_BR.po +++ b/addons/mrp/i18n/pt_BR.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/ro.po b/addons/mrp/i18n/ro.po index c6944b052eb..7269355c6e2 100644 --- a/addons/mrp/i18n/ro.po +++ b/addons/mrp/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/ru.po b/addons/mrp/i18n/ru.po index 398865d458d..5f7bf67a0e1 100644 --- a/addons/mrp/i18n/ru.po +++ b/addons/mrp/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/sk.po b/addons/mrp/i18n/sk.po index a4cf3e8de19..6d2bb51ad9d 100644 --- a/addons/mrp/i18n/sk.po +++ b/addons/mrp/i18n/sk.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/sl.po b/addons/mrp/i18n/sl.po index 7cc2fe270fc..52393fa8459 100644 --- a/addons/mrp/i18n/sl.po +++ b/addons/mrp/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/sq.po b/addons/mrp/i18n/sq.po index af57ce42cef..18011bc57f5 100644 --- a/addons/mrp/i18n/sq.po +++ b/addons/mrp/i18n/sq.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/sr@latin.po b/addons/mrp/i18n/sr@latin.po index a1066799e1f..0c39f51edf5 100644 --- a/addons/mrp/i18n/sr@latin.po +++ b/addons/mrp/i18n/sr@latin.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/sv.po b/addons/mrp/i18n/sv.po index b6b0e337f4e..d77113d4719 100644 --- a/addons/mrp/i18n/sv.po +++ b/addons/mrp/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/tlh.po b/addons/mrp/i18n/tlh.po index e3f62e08f0c..8fe31d5a579 100644 --- a/addons/mrp/i18n/tlh.po +++ b/addons/mrp/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/tr.po b/addons/mrp/i18n/tr.po index fcffbecd244..7de7271c284 100644 --- a/addons/mrp/i18n/tr.po +++ b/addons/mrp/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:01+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/uk.po b/addons/mrp/i18n/uk.po index 3b56c5026a9..7a033a69a88 100644 --- a/addons/mrp/i18n/uk.po +++ b/addons/mrp/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/vi.po b/addons/mrp/i18n/vi.po index 12d00c647a3..cd29ce617fd 100644 --- a/addons/mrp/i18n/vi.po +++ b/addons/mrp/i18n/vi.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/zh_CN.po b/addons/mrp/i18n/zh_CN.po index 2549e7b1dfb..2722e28fee4 100644 --- a/addons/mrp/i18n/zh_CN.po +++ b/addons/mrp/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/zh_HK.po b/addons/mrp/i18n/zh_HK.po index d4211576c7e..c6f19024bc3 100644 --- a/addons/mrp/i18n/zh_HK.po +++ b/addons/mrp/i18n/zh_HK.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-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp/i18n/zh_TW.po b/addons/mrp/i18n/zh_TW.po index f549d005a86..1f8bdd514fc 100644 --- a/addons/mrp/i18n/zh_TW.po +++ b/addons/mrp/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp diff --git a/addons/mrp_byproduct/i18n/ab.po b/addons/mrp_byproduct/i18n/ab.po index 655541a6937..02ad12ea20b 100644 --- a/addons/mrp_byproduct/i18n/ab.po +++ b/addons/mrp_byproduct/i18n/ab.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/ar.po b/addons/mrp_byproduct/i18n/ar.po index 2c8c7eb31d1..a2665c3173f 100644 --- a/addons/mrp_byproduct/i18n/ar.po +++ b/addons/mrp_byproduct/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/bg.po b/addons/mrp_byproduct/i18n/bg.po index 305fbcaabac..83837e638d0 100644 --- a/addons/mrp_byproduct/i18n/bg.po +++ b/addons/mrp_byproduct/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/bs.po b/addons/mrp_byproduct/i18n/bs.po index ec6bae84877..3343abbcc0b 100644 --- a/addons/mrp_byproduct/i18n/bs.po +++ b/addons/mrp_byproduct/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/ca.po b/addons/mrp_byproduct/i18n/ca.po index 4616c919ade..fff76b8a9f2 100644 --- a/addons/mrp_byproduct/i18n/ca.po +++ b/addons/mrp_byproduct/i18n/ca.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/cs.po b/addons/mrp_byproduct/i18n/cs.po index 796f5a9aff6..02899580a1a 100644 --- a/addons/mrp_byproduct/i18n/cs.po +++ b/addons/mrp_byproduct/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/da.po b/addons/mrp_byproduct/i18n/da.po index 7db9a881703..547a4ba0911 100644 --- a/addons/mrp_byproduct/i18n/da.po +++ b/addons/mrp_byproduct/i18n/da.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/de.po b/addons/mrp_byproduct/i18n/de.po index ccf0f5bf225..1e3b9fa05db 100644 --- a/addons/mrp_byproduct/i18n/de.po +++ b/addons/mrp_byproduct/i18n/de.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/es.po b/addons/mrp_byproduct/i18n/es.po index 929ed01b075..ae7ed57a878 100644 --- a/addons/mrp_byproduct/i18n/es.po +++ b/addons/mrp_byproduct/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/es_AR.po b/addons/mrp_byproduct/i18n/es_AR.po index 902d4d26246..3e998cd593a 100644 --- a/addons/mrp_byproduct/i18n/es_AR.po +++ b/addons/mrp_byproduct/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/es_CR.po b/addons/mrp_byproduct/i18n/es_CR.po index be012e62feb..63f31d00e7b 100644 --- a/addons/mrp_byproduct/i18n/es_CR.po +++ b/addons/mrp_byproduct/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/mrp_byproduct/i18n/es_EC.po b/addons/mrp_byproduct/i18n/es_EC.po index 032611249f1..9e410846d9c 100644 --- a/addons/mrp_byproduct/i18n/es_EC.po +++ b/addons/mrp_byproduct/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/et.po b/addons/mrp_byproduct/i18n/et.po index d68c845c371..4497f90e756 100644 --- a/addons/mrp_byproduct/i18n/et.po +++ b/addons/mrp_byproduct/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/fi.po b/addons/mrp_byproduct/i18n/fi.po index 8c56680148e..7091ec1e3ee 100644 --- a/addons/mrp_byproduct/i18n/fi.po +++ b/addons/mrp_byproduct/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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/fr.po b/addons/mrp_byproduct/i18n/fr.po index 1e315c745ce..671bb30c68f 100644 --- a/addons/mrp_byproduct/i18n/fr.po +++ b/addons/mrp_byproduct/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/gl.po b/addons/mrp_byproduct/i18n/gl.po index 9eecf3dc811..2a7bf7fc33f 100644 --- a/addons/mrp_byproduct/i18n/gl.po +++ b/addons/mrp_byproduct/i18n/gl.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/hr.po b/addons/mrp_byproduct/i18n/hr.po index 8caa897669f..31025340e60 100644 --- a/addons/mrp_byproduct/i18n/hr.po +++ b/addons/mrp_byproduct/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/hu.po b/addons/mrp_byproduct/i18n/hu.po index 54b2870c433..eacc26bf113 100644 --- a/addons/mrp_byproduct/i18n/hu.po +++ b/addons/mrp_byproduct/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/id.po b/addons/mrp_byproduct/i18n/id.po index 2d89b6d719e..2c2c7195fe9 100644 --- a/addons/mrp_byproduct/i18n/id.po +++ b/addons/mrp_byproduct/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/it.po b/addons/mrp_byproduct/i18n/it.po index db73419190c..9f621ed006c 100644 --- a/addons/mrp_byproduct/i18n/it.po +++ b/addons/mrp_byproduct/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/ja.po b/addons/mrp_byproduct/i18n/ja.po index 661f8368a29..008b9f39c85 100644 --- a/addons/mrp_byproduct/i18n/ja.po +++ b/addons/mrp_byproduct/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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/ko.po b/addons/mrp_byproduct/i18n/ko.po index d264761f878..4705823b9b7 100644 --- a/addons/mrp_byproduct/i18n/ko.po +++ b/addons/mrp_byproduct/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/lt.po b/addons/mrp_byproduct/i18n/lt.po index 943346742c1..14562c12914 100644 --- a/addons/mrp_byproduct/i18n/lt.po +++ b/addons/mrp_byproduct/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/lv.po b/addons/mrp_byproduct/i18n/lv.po index e04f3ceea32..469f3ba59b5 100644 --- a/addons/mrp_byproduct/i18n/lv.po +++ b/addons/mrp_byproduct/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/mk.po b/addons/mrp_byproduct/i18n/mk.po index b0251e4e536..a50c694e2cb 100644 --- a/addons/mrp_byproduct/i18n/mk.po +++ b/addons/mrp_byproduct/i18n/mk.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/mn.po b/addons/mrp_byproduct/i18n/mn.po index acc99e186eb..e02e6fcabe5 100644 --- a/addons/mrp_byproduct/i18n/mn.po +++ b/addons/mrp_byproduct/i18n/mn.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/nb.po b/addons/mrp_byproduct/i18n/nb.po index 663d7a2305f..e4a2fc37ae6 100644 --- a/addons/mrp_byproduct/i18n/nb.po +++ b/addons/mrp_byproduct/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/nl.po b/addons/mrp_byproduct/i18n/nl.po index c0af8dbc52e..9e0fed8c8cc 100644 --- a/addons/mrp_byproduct/i18n/nl.po +++ b/addons/mrp_byproduct/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/nl_BE.po b/addons/mrp_byproduct/i18n/nl_BE.po index c9d7ade1248..614e691f492 100644 --- a/addons/mrp_byproduct/i18n/nl_BE.po +++ b/addons/mrp_byproduct/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/oc.po b/addons/mrp_byproduct/i18n/oc.po index 95054283385..5af586cb144 100644 --- a/addons/mrp_byproduct/i18n/oc.po +++ b/addons/mrp_byproduct/i18n/oc.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/pl.po b/addons/mrp_byproduct/i18n/pl.po index 156f2eedd34..4807436ed7d 100644 --- a/addons/mrp_byproduct/i18n/pl.po +++ b/addons/mrp_byproduct/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/pt.po b/addons/mrp_byproduct/i18n/pt.po index f383042bab7..7a182da7f0a 100644 --- a/addons/mrp_byproduct/i18n/pt.po +++ b/addons/mrp_byproduct/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/pt_BR.po b/addons/mrp_byproduct/i18n/pt_BR.po index f9564486d2f..b82b6ed1f81 100644 --- a/addons/mrp_byproduct/i18n/pt_BR.po +++ b/addons/mrp_byproduct/i18n/pt_BR.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/ro.po b/addons/mrp_byproduct/i18n/ro.po index 03e338839fb..9372d9880f4 100644 --- a/addons/mrp_byproduct/i18n/ro.po +++ b/addons/mrp_byproduct/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/ru.po b/addons/mrp_byproduct/i18n/ru.po index 443480241e3..ad8e95195a3 100644 --- a/addons/mrp_byproduct/i18n/ru.po +++ b/addons/mrp_byproduct/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/sk.po b/addons/mrp_byproduct/i18n/sk.po index 493c835f22b..efaaed2bc7e 100644 --- a/addons/mrp_byproduct/i18n/sk.po +++ b/addons/mrp_byproduct/i18n/sk.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/sl.po b/addons/mrp_byproduct/i18n/sl.po index 53f89006f2e..4e7f0af84da 100644 --- a/addons/mrp_byproduct/i18n/sl.po +++ b/addons/mrp_byproduct/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/sq.po b/addons/mrp_byproduct/i18n/sq.po index d9f012353a3..3455ce3760b 100644 --- a/addons/mrp_byproduct/i18n/sq.po +++ b/addons/mrp_byproduct/i18n/sq.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/sr.po b/addons/mrp_byproduct/i18n/sr.po index 04fb41c03cd..71817b6ef1a 100644 --- a/addons/mrp_byproduct/i18n/sr.po +++ b/addons/mrp_byproduct/i18n/sr.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/sr@latin.po b/addons/mrp_byproduct/i18n/sr@latin.po index a331c7cfcca..f6ca1542e1a 100644 --- a/addons/mrp_byproduct/i18n/sr@latin.po +++ b/addons/mrp_byproduct/i18n/sr@latin.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/sv.po b/addons/mrp_byproduct/i18n/sv.po index b237f900314..beb9b450c0e 100644 --- a/addons/mrp_byproduct/i18n/sv.po +++ b/addons/mrp_byproduct/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/tlh.po b/addons/mrp_byproduct/i18n/tlh.po index 5159bf0db20..3d1b26ebb25 100644 --- a/addons/mrp_byproduct/i18n/tlh.po +++ b/addons/mrp_byproduct/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/tr.po b/addons/mrp_byproduct/i18n/tr.po index a8faad03fc2..4f104663c54 100644 --- a/addons/mrp_byproduct/i18n/tr.po +++ b/addons/mrp_byproduct/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/uk.po b/addons/mrp_byproduct/i18n/uk.po index f189010196d..a8715f163b5 100644 --- a/addons/mrp_byproduct/i18n/uk.po +++ b/addons/mrp_byproduct/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/vi.po b/addons/mrp_byproduct/i18n/vi.po index df6d112b2d3..7f69b69caf4 100644 --- a/addons/mrp_byproduct/i18n/vi.po +++ b/addons/mrp_byproduct/i18n/vi.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/zh_CN.po b/addons/mrp_byproduct/i18n/zh_CN.po index d798080f471..bfd6d2f3142 100644 --- a/addons/mrp_byproduct/i18n/zh_CN.po +++ b/addons/mrp_byproduct/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/zh_TW.po b/addons/mrp_byproduct/i18n/zh_TW.po index 24cd14515a7..28e142040c9 100644 --- a/addons/mrp_byproduct/i18n/zh_TW.po +++ b/addons/mrp_byproduct/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_byproduct diff --git a/addons/mrp_jit/i18n/ar.po b/addons/mrp_jit/i18n/ar.po index eba14198914..875f98c840d 100644 --- a/addons/mrp_jit/i18n/ar.po +++ b/addons/mrp_jit/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/bg.po b/addons/mrp_jit/i18n/bg.po index c196ae88c58..34685838d9f 100644 --- a/addons/mrp_jit/i18n/bg.po +++ b/addons/mrp_jit/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/bs.po b/addons/mrp_jit/i18n/bs.po index aaaac02922d..bcd9ff99cfa 100644 --- a/addons/mrp_jit/i18n/bs.po +++ b/addons/mrp_jit/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/ca.po b/addons/mrp_jit/i18n/ca.po index c5bf4e7ff0f..567ab59d4f1 100644 --- a/addons/mrp_jit/i18n/ca.po +++ b/addons/mrp_jit/i18n/ca.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/cs.po b/addons/mrp_jit/i18n/cs.po index a9a2183dbca..82d3b7481ef 100644 --- a/addons/mrp_jit/i18n/cs.po +++ b/addons/mrp_jit/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/da.po b/addons/mrp_jit/i18n/da.po index 461de415e01..956f0d5e214 100644 --- a/addons/mrp_jit/i18n/da.po +++ b/addons/mrp_jit/i18n/da.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/de.po b/addons/mrp_jit/i18n/de.po index e1b138c4244..53a219def6a 100644 --- a/addons/mrp_jit/i18n/de.po +++ b/addons/mrp_jit/i18n/de.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/el.po b/addons/mrp_jit/i18n/el.po index e519f3c019a..9609270ca0a 100644 --- a/addons/mrp_jit/i18n/el.po +++ b/addons/mrp_jit/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/mrp_jit/i18n/es.po b/addons/mrp_jit/i18n/es.po index 2a8d9e2f380..819845755cf 100644 --- a/addons/mrp_jit/i18n/es.po +++ b/addons/mrp_jit/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/es_AR.po b/addons/mrp_jit/i18n/es_AR.po index 2d2d877110a..cc3b9d32775 100644 --- a/addons/mrp_jit/i18n/es_AR.po +++ b/addons/mrp_jit/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/es_CR.po b/addons/mrp_jit/i18n/es_CR.po index 33bf1b296e0..09117a0e1d7 100644 --- a/addons/mrp_jit/i18n/es_CR.po +++ b/addons/mrp_jit/i18n/es_CR.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/mrp_jit/i18n/es_EC.po b/addons/mrp_jit/i18n/es_EC.po index c28986afe6a..e21956b3e07 100644 --- a/addons/mrp_jit/i18n/es_EC.po +++ b/addons/mrp_jit/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/et.po b/addons/mrp_jit/i18n/et.po index d7ed885ffbb..000b158e622 100644 --- a/addons/mrp_jit/i18n/et.po +++ b/addons/mrp_jit/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/fi.po b/addons/mrp_jit/i18n/fi.po index cef9220a33d..67dcaa1b12b 100644 --- a/addons/mrp_jit/i18n/fi.po +++ b/addons/mrp_jit/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/fr.po b/addons/mrp_jit/i18n/fr.po index c02bb764a10..58a1188f165 100644 --- a/addons/mrp_jit/i18n/fr.po +++ b/addons/mrp_jit/i18n/fr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/gl.po b/addons/mrp_jit/i18n/gl.po index a34e43c06b3..39525f665d1 100644 --- a/addons/mrp_jit/i18n/gl.po +++ b/addons/mrp_jit/i18n/gl.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/hr.po b/addons/mrp_jit/i18n/hr.po index c78cebe6b81..4a9fb911b31 100644 --- a/addons/mrp_jit/i18n/hr.po +++ b/addons/mrp_jit/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/hu.po b/addons/mrp_jit/i18n/hu.po index fb423fe27ee..0659bc113b4 100644 --- a/addons/mrp_jit/i18n/hu.po +++ b/addons/mrp_jit/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/id.po b/addons/mrp_jit/i18n/id.po index b8905e4d43f..df543652e2d 100644 --- a/addons/mrp_jit/i18n/id.po +++ b/addons/mrp_jit/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/it.po b/addons/mrp_jit/i18n/it.po index 13f17797cb9..f30f6259dab 100644 --- a/addons/mrp_jit/i18n/it.po +++ b/addons/mrp_jit/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/ja.po b/addons/mrp_jit/i18n/ja.po index a62be33e574..83538f23e04 100644 --- a/addons/mrp_jit/i18n/ja.po +++ b/addons/mrp_jit/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/kab.po b/addons/mrp_jit/i18n/kab.po index 829069ffd7b..b1beeba6d5a 100644 --- a/addons/mrp_jit/i18n/kab.po +++ b/addons/mrp_jit/i18n/kab.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/ko.po b/addons/mrp_jit/i18n/ko.po index 31bd82eb3e5..9447e0941fa 100644 --- a/addons/mrp_jit/i18n/ko.po +++ b/addons/mrp_jit/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/lt.po b/addons/mrp_jit/i18n/lt.po index f4c4cd6be9b..4e1c7c9fae2 100644 --- a/addons/mrp_jit/i18n/lt.po +++ b/addons/mrp_jit/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/mk.po b/addons/mrp_jit/i18n/mk.po index 974f9baf4f7..27ba9c2572e 100644 --- a/addons/mrp_jit/i18n/mk.po +++ b/addons/mrp_jit/i18n/mk.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/ml.po b/addons/mrp_jit/i18n/ml.po index 604aea26b48..b326fc29ca0 100644 --- a/addons/mrp_jit/i18n/ml.po +++ b/addons/mrp_jit/i18n/ml.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/mn.po b/addons/mrp_jit/i18n/mn.po index 0f6e4097f2d..17c950bdd43 100644 --- a/addons/mrp_jit/i18n/mn.po +++ b/addons/mrp_jit/i18n/mn.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/nb.po b/addons/mrp_jit/i18n/nb.po index e5a59180e72..e15413c1074 100644 --- a/addons/mrp_jit/i18n/nb.po +++ b/addons/mrp_jit/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/nl.po b/addons/mrp_jit/i18n/nl.po index 3a7e25a8664..7d639cbb42f 100644 --- a/addons/mrp_jit/i18n/nl.po +++ b/addons/mrp_jit/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/nl_BE.po b/addons/mrp_jit/i18n/nl_BE.po index 5618fa746f7..16f7c7407d7 100644 --- a/addons/mrp_jit/i18n/nl_BE.po +++ b/addons/mrp_jit/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/oc.po b/addons/mrp_jit/i18n/oc.po index 5e3551884e3..75199583985 100644 --- a/addons/mrp_jit/i18n/oc.po +++ b/addons/mrp_jit/i18n/oc.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/pl.po b/addons/mrp_jit/i18n/pl.po index db11d6026fa..925fe16360a 100644 --- a/addons/mrp_jit/i18n/pl.po +++ b/addons/mrp_jit/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/pt.po b/addons/mrp_jit/i18n/pt.po index 6a444c397d0..3ca0a9ee826 100644 --- a/addons/mrp_jit/i18n/pt.po +++ b/addons/mrp_jit/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/pt_BR.po b/addons/mrp_jit/i18n/pt_BR.po index 790c43edee0..1cec8326a8b 100644 --- a/addons/mrp_jit/i18n/pt_BR.po +++ b/addons/mrp_jit/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/ro.po b/addons/mrp_jit/i18n/ro.po index ba645973a13..78f4ec2c1c4 100644 --- a/addons/mrp_jit/i18n/ro.po +++ b/addons/mrp_jit/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/ru.po b/addons/mrp_jit/i18n/ru.po index 31399dfe710..13eb765d853 100644 --- a/addons/mrp_jit/i18n/ru.po +++ b/addons/mrp_jit/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/sk.po b/addons/mrp_jit/i18n/sk.po index 5309f850f8a..a4b035255cd 100644 --- a/addons/mrp_jit/i18n/sk.po +++ b/addons/mrp_jit/i18n/sk.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/sl.po b/addons/mrp_jit/i18n/sl.po index 968557d6a21..098ac716773 100644 --- a/addons/mrp_jit/i18n/sl.po +++ b/addons/mrp_jit/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/sq.po b/addons/mrp_jit/i18n/sq.po index 8e5b178bf04..9f28d27e541 100644 --- a/addons/mrp_jit/i18n/sq.po +++ b/addons/mrp_jit/i18n/sq.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/sr.po b/addons/mrp_jit/i18n/sr.po index abfd91b30d2..3804b55a60e 100644 --- a/addons/mrp_jit/i18n/sr.po +++ b/addons/mrp_jit/i18n/sr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/sr@latin.po b/addons/mrp_jit/i18n/sr@latin.po index 3a1f2fe3ea2..d07f5cfb47e 100644 --- a/addons/mrp_jit/i18n/sr@latin.po +++ b/addons/mrp_jit/i18n/sr@latin.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/sv.po b/addons/mrp_jit/i18n/sv.po index 3b79ed074aa..acd95fe8330 100644 --- a/addons/mrp_jit/i18n/sv.po +++ b/addons/mrp_jit/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/ta.po b/addons/mrp_jit/i18n/ta.po index 1ddd93f9499..3b848673aa2 100644 --- a/addons/mrp_jit/i18n/ta.po +++ b/addons/mrp_jit/i18n/ta.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/tr.po b/addons/mrp_jit/i18n/tr.po index 00859e031f1..be80da1b7ce 100644 --- a/addons/mrp_jit/i18n/tr.po +++ b/addons/mrp_jit/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/uk.po b/addons/mrp_jit/i18n/uk.po index 92aa93e7053..9679de954ee 100644 --- a/addons/mrp_jit/i18n/uk.po +++ b/addons/mrp_jit/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/vi.po b/addons/mrp_jit/i18n/vi.po index da8e08845d1..a4fcee85dd8 100644 --- a/addons/mrp_jit/i18n/vi.po +++ b/addons/mrp_jit/i18n/vi.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/zh_CN.po b/addons/mrp_jit/i18n/zh_CN.po index c3ad9e17d3c..709086c3591 100644 --- a/addons/mrp_jit/i18n/zh_CN.po +++ b/addons/mrp_jit/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/zh_TW.po b/addons/mrp_jit/i18n/zh_TW.po index 449d505de3c..ff2746f5e52 100644 --- a/addons/mrp_jit/i18n/zh_TW.po +++ b/addons/mrp_jit/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_jit diff --git a/addons/mrp_operations/i18n/ar.po b/addons/mrp_operations/i18n/ar.po index 86317c0b1c6..5c0312c98e7 100644 --- a/addons/mrp_operations/i18n/ar.po +++ b/addons/mrp_operations/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/bg.po b/addons/mrp_operations/i18n/bg.po index 1753277def2..6fdd50ed262 100644 --- a/addons/mrp_operations/i18n/bg.po +++ b/addons/mrp_operations/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/bs.po b/addons/mrp_operations/i18n/bs.po index 4ee86c0069b..4e2cdef6a28 100644 --- a/addons/mrp_operations/i18n/bs.po +++ b/addons/mrp_operations/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/ca.po b/addons/mrp_operations/i18n/ca.po index 78fcb070fad..058cddfe828 100644 --- a/addons/mrp_operations/i18n/ca.po +++ b/addons/mrp_operations/i18n/ca.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/cs.po b/addons/mrp_operations/i18n/cs.po index c8916b4b82a..c6ac0907e34 100644 --- a/addons/mrp_operations/i18n/cs.po +++ b/addons/mrp_operations/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/mrp_operations/i18n/da.po b/addons/mrp_operations/i18n/da.po index 7c7ee4330bc..800b6c2fa47 100644 --- a/addons/mrp_operations/i18n/da.po +++ b/addons/mrp_operations/i18n/da.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/de.po b/addons/mrp_operations/i18n/de.po index 02a507b6db5..250adb669fb 100644 --- a/addons/mrp_operations/i18n/de.po +++ b/addons/mrp_operations/i18n/de.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/es.po b/addons/mrp_operations/i18n/es.po index c4b5df40304..931ff324b86 100644 --- a/addons/mrp_operations/i18n/es.po +++ b/addons/mrp_operations/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/es_AR.po b/addons/mrp_operations/i18n/es_AR.po index f0000166841..0727537f112 100644 --- a/addons/mrp_operations/i18n/es_AR.po +++ b/addons/mrp_operations/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/es_CR.po b/addons/mrp_operations/i18n/es_CR.po index fdfdb0b13d7..9685f105380 100644 --- a/addons/mrp_operations/i18n/es_CR.po +++ b/addons/mrp_operations/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/mrp_operations/i18n/es_EC.po b/addons/mrp_operations/i18n/es_EC.po index 5b4eb42c950..b7b374ee279 100644 --- a/addons/mrp_operations/i18n/es_EC.po +++ b/addons/mrp_operations/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/et.po b/addons/mrp_operations/i18n/et.po index 93c7bba9646..334790f09e6 100644 --- a/addons/mrp_operations/i18n/et.po +++ b/addons/mrp_operations/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/fi.po b/addons/mrp_operations/i18n/fi.po index de9dd0a238f..4e6bebe5d2d 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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/fr.po b/addons/mrp_operations/i18n/fr.po index b06127cb206..18cff7387d7 100644 --- a/addons/mrp_operations/i18n/fr.po +++ b/addons/mrp_operations/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/hi.po b/addons/mrp_operations/i18n/hi.po index f28cc052396..f7d79f37b38 100644 --- a/addons/mrp_operations/i18n/hi.po +++ b/addons/mrp_operations/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/hr.po b/addons/mrp_operations/i18n/hr.po index 4bc0243c056..efc16f0a6ba 100644 --- a/addons/mrp_operations/i18n/hr.po +++ b/addons/mrp_operations/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/hu.po b/addons/mrp_operations/i18n/hu.po index 0eab8f14b02..7b01922392f 100644 --- a/addons/mrp_operations/i18n/hu.po +++ b/addons/mrp_operations/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/id.po b/addons/mrp_operations/i18n/id.po index dc6e4bafc4b..f5a4b8c5344 100644 --- a/addons/mrp_operations/i18n/id.po +++ b/addons/mrp_operations/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/it.po b/addons/mrp_operations/i18n/it.po index ec4501a6c3d..bec7af31424 100644 --- a/addons/mrp_operations/i18n/it.po +++ b/addons/mrp_operations/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/ja.po b/addons/mrp_operations/i18n/ja.po index 647c55a1dc8..842abb0359f 100644 --- a/addons/mrp_operations/i18n/ja.po +++ b/addons/mrp_operations/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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/ko.po b/addons/mrp_operations/i18n/ko.po index 0d5e2b32b1d..97e28393349 100644 --- a/addons/mrp_operations/i18n/ko.po +++ b/addons/mrp_operations/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/lt.po b/addons/mrp_operations/i18n/lt.po index b7ac40693a5..f2d04638cca 100644 --- a/addons/mrp_operations/i18n/lt.po +++ b/addons/mrp_operations/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/lv.po b/addons/mrp_operations/i18n/lv.po index 13f5fd14d7f..3970edc07d9 100644 --- a/addons/mrp_operations/i18n/lv.po +++ b/addons/mrp_operations/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/mk.po b/addons/mrp_operations/i18n/mk.po index 32144519beb..7a350bedaa1 100644 --- a/addons/mrp_operations/i18n/mk.po +++ b/addons/mrp_operations/i18n/mk.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/mn.po b/addons/mrp_operations/i18n/mn.po index a3288739765..46e4f641c9d 100644 --- a/addons/mrp_operations/i18n/mn.po +++ b/addons/mrp_operations/i18n/mn.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/nl.po b/addons/mrp_operations/i18n/nl.po index 701e711cea8..161afd172e2 100644 --- a/addons/mrp_operations/i18n/nl.po +++ b/addons/mrp_operations/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/nl_BE.po b/addons/mrp_operations/i18n/nl_BE.po index eaf2e103b3b..2932eea5b8b 100644 --- a/addons/mrp_operations/i18n/nl_BE.po +++ b/addons/mrp_operations/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/pl.po b/addons/mrp_operations/i18n/pl.po index 512cd576738..489dd9da27b 100644 --- a/addons/mrp_operations/i18n/pl.po +++ b/addons/mrp_operations/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/pt.po b/addons/mrp_operations/i18n/pt.po index f27acdf3c0f..679b7279d33 100644 --- a/addons/mrp_operations/i18n/pt.po +++ b/addons/mrp_operations/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/pt_BR.po b/addons/mrp_operations/i18n/pt_BR.po index 706afe2de30..2abe20bfcd0 100644 --- a/addons/mrp_operations/i18n/pt_BR.po +++ b/addons/mrp_operations/i18n/pt_BR.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/ro.po b/addons/mrp_operations/i18n/ro.po index 57bb1f071c2..6630a969270 100644 --- a/addons/mrp_operations/i18n/ro.po +++ b/addons/mrp_operations/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/ru.po b/addons/mrp_operations/i18n/ru.po index 93793f2c9da..4efb66e06a1 100644 --- a/addons/mrp_operations/i18n/ru.po +++ b/addons/mrp_operations/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/sl.po b/addons/mrp_operations/i18n/sl.po index cd823d6006a..8e9b096cabc 100644 --- a/addons/mrp_operations/i18n/sl.po +++ b/addons/mrp_operations/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/sq.po b/addons/mrp_operations/i18n/sq.po index dbe5667f01e..075a29c8a26 100644 --- a/addons/mrp_operations/i18n/sq.po +++ b/addons/mrp_operations/i18n/sq.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-03-15 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/sr.po b/addons/mrp_operations/i18n/sr.po index b03f588208d..dc314f3a6f0 100644 --- a/addons/mrp_operations/i18n/sr.po +++ b/addons/mrp_operations/i18n/sr.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/sr@latin.po b/addons/mrp_operations/i18n/sr@latin.po index 229ab8d5803..3668f8d4e28 100644 --- a/addons/mrp_operations/i18n/sr@latin.po +++ b/addons/mrp_operations/i18n/sr@latin.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/sv.po b/addons/mrp_operations/i18n/sv.po index 1e1f4f8ee62..a4809c79791 100644 --- a/addons/mrp_operations/i18n/sv.po +++ b/addons/mrp_operations/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/tlh.po b/addons/mrp_operations/i18n/tlh.po index 89ce93bc236..72468919a8d 100644 --- a/addons/mrp_operations/i18n/tlh.po +++ b/addons/mrp_operations/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/tr.po b/addons/mrp_operations/i18n/tr.po index 6cd00941415..87f216fddca 100644 --- a/addons/mrp_operations/i18n/tr.po +++ b/addons/mrp_operations/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/uk.po b/addons/mrp_operations/i18n/uk.po index df73b3cf570..9a97fc7a4d5 100644 --- a/addons/mrp_operations/i18n/uk.po +++ b/addons/mrp_operations/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/vi.po b/addons/mrp_operations/i18n/vi.po index 2885aa51ffe..45136405e8f 100644 --- a/addons/mrp_operations/i18n/vi.po +++ b/addons/mrp_operations/i18n/vi.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/zh_CN.po b/addons/mrp_operations/i18n/zh_CN.po index 5092269b47e..9a9347cb40f 100644 --- a/addons/mrp_operations/i18n/zh_CN.po +++ b/addons/mrp_operations/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/zh_TW.po b/addons/mrp_operations/i18n/zh_TW.po index d11210d4627..e6eaac25e7f 100644 --- a/addons/mrp_operations/i18n/zh_TW.po +++ b/addons/mrp_operations/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_operations diff --git a/addons/mrp_repair/i18n/ar.po b/addons/mrp_repair/i18n/ar.po index a8ba48d5bd3..2ee12f5ac11 100644 --- a/addons/mrp_repair/i18n/ar.po +++ b/addons/mrp_repair/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/bg.po b/addons/mrp_repair/i18n/bg.po index aa66f548492..69d2ed68881 100644 --- a/addons/mrp_repair/i18n/bg.po +++ b/addons/mrp_repair/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/bs.po b/addons/mrp_repair/i18n/bs.po index c76c4982505..e3aa23794ea 100644 --- a/addons/mrp_repair/i18n/bs.po +++ b/addons/mrp_repair/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/ca.po b/addons/mrp_repair/i18n/ca.po index 3a56a1efcc6..1f2c3eabe38 100644 --- a/addons/mrp_repair/i18n/ca.po +++ b/addons/mrp_repair/i18n/ca.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/cs.po b/addons/mrp_repair/i18n/cs.po index 835ad7dcdaf..dbb685cd688 100644 --- a/addons/mrp_repair/i18n/cs.po +++ b/addons/mrp_repair/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/da.po b/addons/mrp_repair/i18n/da.po index 16251ea1fc8..a573fb065ef 100644 --- a/addons/mrp_repair/i18n/da.po +++ b/addons/mrp_repair/i18n/da.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/de.po b/addons/mrp_repair/i18n/de.po index affe9eadc85..df43537134c 100644 --- a/addons/mrp_repair/i18n/de.po +++ b/addons/mrp_repair/i18n/de.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/es.po b/addons/mrp_repair/i18n/es.po index 922651bbba1..2c48a7067e1 100644 --- a/addons/mrp_repair/i18n/es.po +++ b/addons/mrp_repair/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/es_AR.po b/addons/mrp_repair/i18n/es_AR.po index 3ad94a84f52..e793350c955 100644 --- a/addons/mrp_repair/i18n/es_AR.po +++ b/addons/mrp_repair/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/es_CR.po b/addons/mrp_repair/i18n/es_CR.po index 90b5de649d5..8fea284e12e 100644 --- a/addons/mrp_repair/i18n/es_CR.po +++ b/addons/mrp_repair/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/mrp_repair/i18n/es_EC.po b/addons/mrp_repair/i18n/es_EC.po index 10ddf1f6b46..fed01c6b304 100644 --- a/addons/mrp_repair/i18n/es_EC.po +++ b/addons/mrp_repair/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/et.po b/addons/mrp_repair/i18n/et.po index 2253337a2af..7d223975ad7 100644 --- a/addons/mrp_repair/i18n/et.po +++ b/addons/mrp_repair/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/fi.po b/addons/mrp_repair/i18n/fi.po index d1d38dd059b..98051068a3d 100644 --- a/addons/mrp_repair/i18n/fi.po +++ b/addons/mrp_repair/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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/fr.po b/addons/mrp_repair/i18n/fr.po index cc739d75f8c..e7bd901de1f 100644 --- a/addons/mrp_repair/i18n/fr.po +++ b/addons/mrp_repair/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/hi.po b/addons/mrp_repair/i18n/hi.po index 383793c7d26..c5d78546ce1 100644 --- a/addons/mrp_repair/i18n/hi.po +++ b/addons/mrp_repair/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/hr.po b/addons/mrp_repair/i18n/hr.po index b7369b75bfb..5a49be952d3 100644 --- a/addons/mrp_repair/i18n/hr.po +++ b/addons/mrp_repair/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/hu.po b/addons/mrp_repair/i18n/hu.po index 789d53ab6e8..51cabb633ca 100644 --- a/addons/mrp_repair/i18n/hu.po +++ b/addons/mrp_repair/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/id.po b/addons/mrp_repair/i18n/id.po index 0f537fd74dd..4ccb84bdbb0 100644 --- a/addons/mrp_repair/i18n/id.po +++ b/addons/mrp_repair/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/it.po b/addons/mrp_repair/i18n/it.po index dfa0110a504..a466e9a6d36 100644 --- a/addons/mrp_repair/i18n/it.po +++ b/addons/mrp_repair/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/ja.po b/addons/mrp_repair/i18n/ja.po index c159079c87a..136e7614283 100644 --- a/addons/mrp_repair/i18n/ja.po +++ b/addons/mrp_repair/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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/ko.po b/addons/mrp_repair/i18n/ko.po index 4593c4ba0b6..50a675d7122 100644 --- a/addons/mrp_repair/i18n/ko.po +++ b/addons/mrp_repair/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/lt.po b/addons/mrp_repair/i18n/lt.po index 6d6ac08fb59..1b06a193fc5 100644 --- a/addons/mrp_repair/i18n/lt.po +++ b/addons/mrp_repair/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/mk.po b/addons/mrp_repair/i18n/mk.po index abec4d1f838..7ae41690af2 100644 --- a/addons/mrp_repair/i18n/mk.po +++ b/addons/mrp_repair/i18n/mk.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/mn.po b/addons/mrp_repair/i18n/mn.po index e8a7b36e8da..f0f69c28a4a 100644 --- a/addons/mrp_repair/i18n/mn.po +++ b/addons/mrp_repair/i18n/mn.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/nl.po b/addons/mrp_repair/i18n/nl.po index 78efa803cd7..2f88d36b746 100644 --- a/addons/mrp_repair/i18n/nl.po +++ b/addons/mrp_repair/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair @@ -277,7 +277,7 @@ msgstr "Waarschuwing!" #. module: mrp_repair #: view:mrp.repair:0 msgid "(update)" -msgstr "(update)" +msgstr "(bijwerken)" #. module: mrp_repair #: view:mrp.repair:0 diff --git a/addons/mrp_repair/i18n/nl_BE.po b/addons/mrp_repair/i18n/nl_BE.po index 67c9663a61d..f1213b10bbe 100644 --- a/addons/mrp_repair/i18n/nl_BE.po +++ b/addons/mrp_repair/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/pl.po b/addons/mrp_repair/i18n/pl.po index af98ef012ac..a42100b3aa2 100644 --- a/addons/mrp_repair/i18n/pl.po +++ b/addons/mrp_repair/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/pt.po b/addons/mrp_repair/i18n/pt.po index 38477dbf3aa..b893c415024 100644 --- a/addons/mrp_repair/i18n/pt.po +++ b/addons/mrp_repair/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/pt_BR.po b/addons/mrp_repair/i18n/pt_BR.po index 630f5c8323d..ca178cd6e56 100644 --- a/addons/mrp_repair/i18n/pt_BR.po +++ b/addons/mrp_repair/i18n/pt_BR.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/ro.po b/addons/mrp_repair/i18n/ro.po index 0e0c9b8ad53..7efa9a41207 100644 --- a/addons/mrp_repair/i18n/ro.po +++ b/addons/mrp_repair/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/ru.po b/addons/mrp_repair/i18n/ru.po index af1564c2d34..46ff70357aa 100644 --- a/addons/mrp_repair/i18n/ru.po +++ b/addons/mrp_repair/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/sl.po b/addons/mrp_repair/i18n/sl.po index 2d5dd8d6f77..0560d655e17 100644 --- a/addons/mrp_repair/i18n/sl.po +++ b/addons/mrp_repair/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/sq.po b/addons/mrp_repair/i18n/sq.po index 099027dae2e..6f85fd87ef4 100644 --- a/addons/mrp_repair/i18n/sq.po +++ b/addons/mrp_repair/i18n/sq.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/sr.po b/addons/mrp_repair/i18n/sr.po index a4ce235c2b0..8b9a0e71e15 100644 --- a/addons/mrp_repair/i18n/sr.po +++ b/addons/mrp_repair/i18n/sr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/sr@latin.po b/addons/mrp_repair/i18n/sr@latin.po index ccf6cf9d68f..1ab792fc5ea 100644 --- a/addons/mrp_repair/i18n/sr@latin.po +++ b/addons/mrp_repair/i18n/sr@latin.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/sv.po b/addons/mrp_repair/i18n/sv.po index 0a73ebc6699..5a71812581d 100644 --- a/addons/mrp_repair/i18n/sv.po +++ b/addons/mrp_repair/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/tlh.po b/addons/mrp_repair/i18n/tlh.po index 81d9525f0a2..955df7b673a 100644 --- a/addons/mrp_repair/i18n/tlh.po +++ b/addons/mrp_repair/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/tr.po b/addons/mrp_repair/i18n/tr.po index fb5afd07110..fbebcd514d5 100644 --- a/addons/mrp_repair/i18n/tr.po +++ b/addons/mrp_repair/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/uk.po b/addons/mrp_repair/i18n/uk.po index 9b68743d0f0..19a4046c5c8 100644 --- a/addons/mrp_repair/i18n/uk.po +++ b/addons/mrp_repair/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/vi.po b/addons/mrp_repair/i18n/vi.po index ade750449fd..c112ce69ff4 100644 --- a/addons/mrp_repair/i18n/vi.po +++ b/addons/mrp_repair/i18n/vi.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/zh_CN.po b/addons/mrp_repair/i18n/zh_CN.po index 16878ac94af..f3029ddc248 100644 --- a/addons/mrp_repair/i18n/zh_CN.po +++ b/addons/mrp_repair/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/zh_TW.po b/addons/mrp_repair/i18n/zh_TW.po index 274b2c1f03e..f647df00c01 100644 --- a/addons/mrp_repair/i18n/zh_TW.po +++ b/addons/mrp_repair/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: mrp_repair diff --git a/addons/multi_company/i18n/ar.po b/addons/multi_company/i18n/ar.po index 3a1795f609c..0a6753f57f1 100644 --- a/addons/multi_company/i18n/ar.po +++ b/addons/multi_company/i18n/ar.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/bg.po b/addons/multi_company/i18n/bg.po index d363e96827d..bececa4c603 100644 --- a/addons/multi_company/i18n/bg.po +++ b/addons/multi_company/i18n/bg.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/bs.po b/addons/multi_company/i18n/bs.po index 3f71420413b..39a9f5579e2 100644 --- a/addons/multi_company/i18n/bs.po +++ b/addons/multi_company/i18n/bs.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/ca.po b/addons/multi_company/i18n/ca.po index a34439b9175..691c1426386 100644 --- a/addons/multi_company/i18n/ca.po +++ b/addons/multi_company/i18n/ca.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/cs.po b/addons/multi_company/i18n/cs.po index e9215eb4b5d..0e4f3425a94 100644 --- a/addons/multi_company/i18n/cs.po +++ b/addons/multi_company/i18n/cs.po @@ -14,18 +14,18 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany msgid "Multi-Companies" -msgstr "" +msgstr "Více společností" #. module: multi_company #: model:product.category,name:multi_company.Odoo1 msgid "Odoo Offers" -msgstr "" +msgstr "Odoo nabídky" #. module: multi_company #: model:res.company,overdue_msg:multi_company.res_company_odoo @@ -45,18 +45,28 @@ msgid "" "Thank you in advance for your cooperation.\n" "Best Regards," msgstr "" +"Dobrý den,\n" +"\n" +"dle našich účetních záznamů nebyly některé vaše závazky dosud uhrazeny. " +"Detaily naleznete dále.\n" +"Pokud máte závazky již uhrazeny, považujte prosím tento dopis za " +"bezpředmětný. V opačném případě Vás žádáme o jejich úhradu.\n" +"S jakýmikoliv případnými dotazy nás neváhejte kontaktovat.\n" +"\n" +"Děkujeme za spolupráci.\n" +"S přátelským pozdravem," #. module: multi_company #: view:multi_company.default:0 msgid "Multi Company" -msgstr "" +msgstr "Více společností" #. module: multi_company #: model:ir.actions.act_window,name:multi_company.action_inventory_form msgid "Default Company per Object" -msgstr "" +msgstr "Výchozí společnost podle objektu" #. module: multi_company #: model:product.template,name:multi_company.product_product_odoo1_product_template msgid "Odoo Offer" -msgstr "" +msgstr "Odoo nabídka" diff --git a/addons/multi_company/i18n/da.po b/addons/multi_company/i18n/da.po index aef9a1b0107..6ababfa8307 100644 --- a/addons/multi_company/i18n/da.po +++ b/addons/multi_company/i18n/da.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/de.po b/addons/multi_company/i18n/de.po index c59de6a906f..a538aec224b 100644 --- a/addons/multi_company/i18n/de.po +++ b/addons/multi_company/i18n/de.po @@ -15,7 +15,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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/es.po b/addons/multi_company/i18n/es.po index 35255090ae1..5cb6da681dc 100644 --- a/addons/multi_company/i18n/es.po +++ b/addons/multi_company/i18n/es.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/es_CR.po b/addons/multi_company/i18n/es_CR.po index 815280ef975..de7ea95bc66 100644 --- a/addons/multi_company/i18n/es_CR.po +++ b/addons/multi_company/i18n/es_CR.po @@ -15,7 +15,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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/multi_company/i18n/es_EC.po b/addons/multi_company/i18n/es_EC.po index 7fe6972494e..e081de2f699 100644 --- a/addons/multi_company/i18n/es_EC.po +++ b/addons/multi_company/i18n/es_EC.po @@ -15,7 +15,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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/et.po b/addons/multi_company/i18n/et.po index e9782a20f5b..b8fd0efad9b 100644 --- a/addons/multi_company/i18n/et.po +++ b/addons/multi_company/i18n/et.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/fi.po b/addons/multi_company/i18n/fi.po index ba2002e4416..a99b756a99f 100644 --- a/addons/multi_company/i18n/fi.po +++ b/addons/multi_company/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/fr.po b/addons/multi_company/i18n/fr.po index 19ea4e8fb91..64ede07c349 100644 --- a/addons/multi_company/i18n/fr.po +++ b/addons/multi_company/i18n/fr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/gl.po b/addons/multi_company/i18n/gl.po index 47795a3120a..1da363fdeba 100644 --- a/addons/multi_company/i18n/gl.po +++ b/addons/multi_company/i18n/gl.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/hr.po b/addons/multi_company/i18n/hr.po index d7084192cb0..baa03e0f994 100644 --- a/addons/multi_company/i18n/hr.po +++ b/addons/multi_company/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/hu.po b/addons/multi_company/i18n/hu.po index 585d3c8608b..b1525a07338 100644 --- a/addons/multi_company/i18n/hu.po +++ b/addons/multi_company/i18n/hu.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/id.po b/addons/multi_company/i18n/id.po index 9a132e73900..028413ddf3b 100644 --- a/addons/multi_company/i18n/id.po +++ b/addons/multi_company/i18n/id.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/it.po b/addons/multi_company/i18n/it.po index 29b00745d82..af0530d7a0c 100644 --- a/addons/multi_company/i18n/it.po +++ b/addons/multi_company/i18n/it.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/ja.po b/addons/multi_company/i18n/ja.po index 8bc32a462e0..c779b057f96 100644 --- a/addons/multi_company/i18n/ja.po +++ b/addons/multi_company/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/lo.po b/addons/multi_company/i18n/lo.po index 3c1688de24e..f82d4f73748 100644 --- a/addons/multi_company/i18n/lo.po +++ b/addons/multi_company/i18n/lo.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/lt.po b/addons/multi_company/i18n/lt.po index 2102e88e7aa..4f95a6c86d5 100644 --- a/addons/multi_company/i18n/lt.po +++ b/addons/multi_company/i18n/lt.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/lv.po b/addons/multi_company/i18n/lv.po index a68b0dc5dd0..b9330140f3f 100644 --- a/addons/multi_company/i18n/lv.po +++ b/addons/multi_company/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/mk.po b/addons/multi_company/i18n/mk.po index a16efe4bdc7..7980649afb2 100644 --- a/addons/multi_company/i18n/mk.po +++ b/addons/multi_company/i18n/mk.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/mn.po b/addons/multi_company/i18n/mn.po index d659f56a9a7..f85da9b9873 100644 --- a/addons/multi_company/i18n/mn.po +++ b/addons/multi_company/i18n/mn.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/nb.po b/addons/multi_company/i18n/nb.po index e3f51f1ac66..7009d2428f0 100644 --- a/addons/multi_company/i18n/nb.po +++ b/addons/multi_company/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/nl.po b/addons/multi_company/i18n/nl.po index f4451daa3b4..87ac9e921ff 100644 --- a/addons/multi_company/i18n/nl.po +++ b/addons/multi_company/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/oc.po b/addons/multi_company/i18n/oc.po index 96c1870817f..39df993dd17 100644 --- a/addons/multi_company/i18n/oc.po +++ b/addons/multi_company/i18n/oc.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/pl.po b/addons/multi_company/i18n/pl.po index ac62ece0913..8fbde06eb63 100644 --- a/addons/multi_company/i18n/pl.po +++ b/addons/multi_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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/pt.po b/addons/multi_company/i18n/pt.po index 2c3da355ae5..2815dfad3a3 100644 --- a/addons/multi_company/i18n/pt.po +++ b/addons/multi_company/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/pt_BR.po b/addons/multi_company/i18n/pt_BR.po index e8540a97c17..77af650f275 100644 --- a/addons/multi_company/i18n/pt_BR.po +++ b/addons/multi_company/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/ro.po b/addons/multi_company/i18n/ro.po index fc6f1828059..ced7da773a3 100644 --- a/addons/multi_company/i18n/ro.po +++ b/addons/multi_company/i18n/ro.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/ru.po b/addons/multi_company/i18n/ru.po index cfe691279f7..3dea680c371 100644 --- a/addons/multi_company/i18n/ru.po +++ b/addons/multi_company/i18n/ru.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/sl.po b/addons/multi_company/i18n/sl.po index d3ce07adf41..7d4d38e141c 100644 --- a/addons/multi_company/i18n/sl.po +++ b/addons/multi_company/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/sr.po b/addons/multi_company/i18n/sr.po index 2af5e751b69..dde10e2571c 100644 --- a/addons/multi_company/i18n/sr.po +++ b/addons/multi_company/i18n/sr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/sr@latin.po b/addons/multi_company/i18n/sr@latin.po index 84d859b5aa0..6090c7a8191 100644 --- a/addons/multi_company/i18n/sr@latin.po +++ b/addons/multi_company/i18n/sr@latin.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/sv.po b/addons/multi_company/i18n/sv.po index 872c05a9ed3..fd075a0ebb1 100644 --- a/addons/multi_company/i18n/sv.po +++ b/addons/multi_company/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/tr.po b/addons/multi_company/i18n/tr.po index 291afb4332a..2ba528c5e73 100644 --- a/addons/multi_company/i18n/tr.po +++ b/addons/multi_company/i18n/tr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/uk.po b/addons/multi_company/i18n/uk.po index c2530fe3802..89c0b997de4 100644 --- a/addons/multi_company/i18n/uk.po +++ b/addons/multi_company/i18n/uk.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/vi.po b/addons/multi_company/i18n/vi.po index 59bcb802493..39b125ce1d6 100644 --- a/addons/multi_company/i18n/vi.po +++ b/addons/multi_company/i18n/vi.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/zh_CN.po b/addons/multi_company/i18n/zh_CN.po index d3a6fa506c7..5f1df881ea3 100644 --- a/addons/multi_company/i18n/zh_CN.po +++ b/addons/multi_company/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/multi_company/i18n/zh_TW.po b/addons/multi_company/i18n/zh_TW.po index 612be9f5cdc..18bddb76d79 100644 --- a/addons/multi_company/i18n/zh_TW.po +++ b/addons/multi_company/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: multi_company diff --git a/addons/note/i18n/de.po b/addons/note/i18n/de.po index 4af17f58764..af1aa80f13a 100644 --- a/addons/note/i18n/de.po +++ b/addons/note/i18n/de.po @@ -15,7 +15,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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/es.po b/addons/note/i18n/es.po index ec53f206919..683ac7cd8fb 100644 --- a/addons/note/i18n/es.po +++ b/addons/note/i18n/es.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/fr.po b/addons/note/i18n/fr.po index b0007f11ff0..493cdb516f4 100644 --- a/addons/note/i18n/fr.po +++ b/addons/note/i18n/fr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/hr.po b/addons/note/i18n/hr.po index 771127f4d59..c82bb02bed6 100644 --- a/addons/note/i18n/hr.po +++ b/addons/note/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/hu.po b/addons/note/i18n/hu.po index 2960a59dfa6..f7f31185e27 100644 --- a/addons/note/i18n/hu.po +++ b/addons/note/i18n/hu.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/id.po b/addons/note/i18n/id.po index 2e6158131a0..1e40cc257fb 100644 --- a/addons/note/i18n/id.po +++ b/addons/note/i18n/id.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/it.po b/addons/note/i18n/it.po index 124e125a6fe..14e738e581a 100644 --- a/addons/note/i18n/it.po +++ b/addons/note/i18n/it.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/mk.po b/addons/note/i18n/mk.po index 48fe493915f..a4bf984b83a 100644 --- a/addons/note/i18n/mk.po +++ b/addons/note/i18n/mk.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/mn.po b/addons/note/i18n/mn.po index cd364b52aa0..34defa59f87 100644 --- a/addons/note/i18n/mn.po +++ b/addons/note/i18n/mn.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/nl.po b/addons/note/i18n/nl.po index ebe504e7f03..8cb77b7ecd5 100644 --- a/addons/note/i18n/nl.po +++ b/addons/note/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/pl.po b/addons/note/i18n/pl.po index c29711dd430..20d6a150776 100644 --- a/addons/note/i18n/pl.po +++ b/addons/note/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/pt.po b/addons/note/i18n/pt.po index 5872bbd3749..6cabac97054 100644 --- a/addons/note/i18n/pt.po +++ b/addons/note/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/pt_BR.po b/addons/note/i18n/pt_BR.po index 63f95e40545..ac04ed7e323 100644 --- a/addons/note/i18n/pt_BR.po +++ b/addons/note/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/ro.po b/addons/note/i18n/ro.po index 2cd5c000be6..5522d4a71f5 100644 --- a/addons/note/i18n/ro.po +++ b/addons/note/i18n/ro.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/sl.po b/addons/note/i18n/sl.po index 5700aaaae90..440609bba36 100644 --- a/addons/note/i18n/sl.po +++ b/addons/note/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/sv.po b/addons/note/i18n/sv.po index 8ab894847fa..63e661fc64d 100644 --- a/addons/note/i18n/sv.po +++ b/addons/note/i18n/sv.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/tr.po b/addons/note/i18n/tr.po index 3718853f7e3..4376b132e78 100644 --- a/addons/note/i18n/tr.po +++ b/addons/note/i18n/tr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note/i18n/zh_CN.po b/addons/note/i18n/zh_CN.po index 1039c338854..4adce73bcd2 100644 --- a/addons/note/i18n/zh_CN.po +++ b/addons/note/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note diff --git a/addons/note_pad/i18n/de.po b/addons/note_pad/i18n/de.po index c0d1065ac52..dde306d42c0 100644 --- a/addons/note_pad/i18n/de.po +++ b/addons/note_pad/i18n/de.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/es.po b/addons/note_pad/i18n/es.po index a0150c64ebd..53ac268a689 100644 --- a/addons/note_pad/i18n/es.po +++ b/addons/note_pad/i18n/es.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/fr.po b/addons/note_pad/i18n/fr.po index 9af4ff75c6c..095c1a2363c 100644 --- a/addons/note_pad/i18n/fr.po +++ b/addons/note_pad/i18n/fr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/hr.po b/addons/note_pad/i18n/hr.po index 2c54f369e6f..ee6b31580a0 100644 --- a/addons/note_pad/i18n/hr.po +++ b/addons/note_pad/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/hu.po b/addons/note_pad/i18n/hu.po index 00f806653d8..77c8d16c33d 100644 --- a/addons/note_pad/i18n/hu.po +++ b/addons/note_pad/i18n/hu.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/it.po b/addons/note_pad/i18n/it.po index 035803d5395..31a47a68f7b 100644 --- a/addons/note_pad/i18n/it.po +++ b/addons/note_pad/i18n/it.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/mk.po b/addons/note_pad/i18n/mk.po index 3fc38cac1d3..908c3bf2a63 100644 --- a/addons/note_pad/i18n/mk.po +++ b/addons/note_pad/i18n/mk.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/mn.po b/addons/note_pad/i18n/mn.po index 7b45eeaad7d..28d6a436087 100644 --- a/addons/note_pad/i18n/mn.po +++ b/addons/note_pad/i18n/mn.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/nl.po b/addons/note_pad/i18n/nl.po index 5c3b44019fc..98767ec259b 100644 --- a/addons/note_pad/i18n/nl.po +++ b/addons/note_pad/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/pl.po b/addons/note_pad/i18n/pl.po index 8fabe4f42d1..66f2467c831 100644 --- a/addons/note_pad/i18n/pl.po +++ b/addons/note_pad/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/pt.po b/addons/note_pad/i18n/pt.po index e3d02e141e4..372b64525a3 100644 --- a/addons/note_pad/i18n/pt.po +++ b/addons/note_pad/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/pt_BR.po b/addons/note_pad/i18n/pt_BR.po index 40d21d9be6b..b771b6a39fc 100644 --- a/addons/note_pad/i18n/pt_BR.po +++ b/addons/note_pad/i18n/pt_BR.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/ro.po b/addons/note_pad/i18n/ro.po index e53ba0358fc..14ccb59bf45 100644 --- a/addons/note_pad/i18n/ro.po +++ b/addons/note_pad/i18n/ro.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/ru.po b/addons/note_pad/i18n/ru.po index fad284ddc3d..a6895e76e40 100644 --- a/addons/note_pad/i18n/ru.po +++ b/addons/note_pad/i18n/ru.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/sl.po b/addons/note_pad/i18n/sl.po index 8d744091ee9..54e80410717 100644 --- a/addons/note_pad/i18n/sl.po +++ b/addons/note_pad/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/sv.po b/addons/note_pad/i18n/sv.po index 2c541d15e41..f7b82c4fb5f 100644 --- a/addons/note_pad/i18n/sv.po +++ b/addons/note_pad/i18n/sv.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/tr.po b/addons/note_pad/i18n/tr.po index 8ff29d85a48..1712e4a6beb 100644 --- a/addons/note_pad/i18n/tr.po +++ b/addons/note_pad/i18n/tr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/note_pad/i18n/zh_CN.po b/addons/note_pad/i18n/zh_CN.po index 3a1c46fa44a..f3e466b11e4 100644 --- a/addons/note_pad/i18n/zh_CN.po +++ b/addons/note_pad/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: note_pad diff --git a/addons/pad/i18n/ar.po b/addons/pad/i18n/ar.po index 1f43eb90b59..245fff00b7e 100644 --- a/addons/pad/i18n/ar.po +++ b/addons/pad/i18n/ar.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/bg.po b/addons/pad/i18n/bg.po index 049dde26aa9..487e80f4c9a 100644 --- a/addons/pad/i18n/bg.po +++ b/addons/pad/i18n/bg.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/ca.po b/addons/pad/i18n/ca.po index 1bb3208ceab..67071bcb342 100644 --- a/addons/pad/i18n/ca.po +++ b/addons/pad/i18n/ca.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/cs.po b/addons/pad/i18n/cs.po index f60266df15e..c684191cb1b 100644 --- a/addons/pad/i18n/cs.po +++ b/addons/pad/i18n/cs.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/da.po b/addons/pad/i18n/da.po index 989f408c09b..b3438df3390 100644 --- a/addons/pad/i18n/da.po +++ b/addons/pad/i18n/da.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/de.po b/addons/pad/i18n/de.po index 87b6f061122..ae19eb6a28e 100644 --- a/addons/pad/i18n/de.po +++ b/addons/pad/i18n/de.po @@ -15,7 +15,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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/es.po b/addons/pad/i18n/es.po index 3b7d87b27fd..0d049df6874 100644 --- a/addons/pad/i18n/es.po +++ b/addons/pad/i18n/es.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/es_CR.po b/addons/pad/i18n/es_CR.po index 909346d9c85..b19b5742a87 100644 --- a/addons/pad/i18n/es_CR.po +++ b/addons/pad/i18n/es_CR.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/pad/i18n/fi.po b/addons/pad/i18n/fi.po index 565b6628431..67f1ce4cb1d 100644 --- a/addons/pad/i18n/fi.po +++ b/addons/pad/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/fr.po b/addons/pad/i18n/fr.po index 4c0da230cae..e7f55955739 100644 --- a/addons/pad/i18n/fr.po +++ b/addons/pad/i18n/fr.po @@ -15,7 +15,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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/gl.po b/addons/pad/i18n/gl.po index 50de24febac..9a3296be6d9 100644 --- a/addons/pad/i18n/gl.po +++ b/addons/pad/i18n/gl.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/hr.po b/addons/pad/i18n/hr.po index 7c6ded65338..1b6b4259d95 100644 --- a/addons/pad/i18n/hr.po +++ b/addons/pad/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/hu.po b/addons/pad/i18n/hu.po index ec43e152be1..bd3d972087b 100644 --- a/addons/pad/i18n/hu.po +++ b/addons/pad/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/it.po b/addons/pad/i18n/it.po index 12d9ae5b5d7..3e475dce6f9 100644 --- a/addons/pad/i18n/it.po +++ b/addons/pad/i18n/it.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/ja.po b/addons/pad/i18n/ja.po index fcd2db03b95..33e6d99ad04 100644 --- a/addons/pad/i18n/ja.po +++ b/addons/pad/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/mk.po b/addons/pad/i18n/mk.po index ffbad941847..09f1c6a108e 100644 --- a/addons/pad/i18n/mk.po +++ b/addons/pad/i18n/mk.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/mn.po b/addons/pad/i18n/mn.po index 39174e37ff1..ad90e3c90b2 100644 --- a/addons/pad/i18n/mn.po +++ b/addons/pad/i18n/mn.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/nb.po b/addons/pad/i18n/nb.po index d8e19d66523..1806011e54a 100644 --- a/addons/pad/i18n/nb.po +++ b/addons/pad/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/nl.po b/addons/pad/i18n/nl.po index 2e34567bc51..9dfe4698989 100644 --- a/addons/pad/i18n/nl.po +++ b/addons/pad/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/pl.po b/addons/pad/i18n/pl.po index a9bcfd84922..176d1df57e3 100644 --- a/addons/pad/i18n/pl.po +++ b/addons/pad/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/pt.po b/addons/pad/i18n/pt.po index 76e9be378ca..5e431164b1e 100644 --- a/addons/pad/i18n/pt.po +++ b/addons/pad/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/pt_BR.po b/addons/pad/i18n/pt_BR.po index 1509c0b6a95..0612a28c15a 100644 --- a/addons/pad/i18n/pt_BR.po +++ b/addons/pad/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/ro.po b/addons/pad/i18n/ro.po index 9fc39baff58..5fde3dfaf76 100644 --- a/addons/pad/i18n/ro.po +++ b/addons/pad/i18n/ro.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/ru.po b/addons/pad/i18n/ru.po index 2b6277b295a..3f162ffc69e 100644 --- a/addons/pad/i18n/ru.po +++ b/addons/pad/i18n/ru.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/sl.po b/addons/pad/i18n/sl.po index 40b909e6583..80aed203d65 100644 --- a/addons/pad/i18n/sl.po +++ b/addons/pad/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/sr@latin.po b/addons/pad/i18n/sr@latin.po index 3c22b23cb1d..35f75490cf9 100644 --- a/addons/pad/i18n/sr@latin.po +++ b/addons/pad/i18n/sr@latin.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/sv.po b/addons/pad/i18n/sv.po index fa1f4556477..99a885a04a7 100644 --- a/addons/pad/i18n/sv.po +++ b/addons/pad/i18n/sv.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/tr.po b/addons/pad/i18n/tr.po index ad57b167906..f053da2236d 100644 --- a/addons/pad/i18n/tr.po +++ b/addons/pad/i18n/tr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad/i18n/zh_CN.po b/addons/pad/i18n/zh_CN.po index 0d73d8dbc97..3651bd4ad93 100644 --- a/addons/pad/i18n/zh_CN.po +++ b/addons/pad/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad diff --git a/addons/pad_project/i18n/ar.po b/addons/pad_project/i18n/ar.po index 3d65cf110c3..a6a26ffd553 100644 --- a/addons/pad_project/i18n/ar.po +++ b/addons/pad_project/i18n/ar.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/cs.po b/addons/pad_project/i18n/cs.po index b56a347cc37..3f908ef37aa 100644 --- a/addons/pad_project/i18n/cs.po +++ b/addons/pad_project/i18n/cs.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/de.po b/addons/pad_project/i18n/de.po index f7f752f5bcd..238745a6b5d 100644 --- a/addons/pad_project/i18n/de.po +++ b/addons/pad_project/i18n/de.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/es.po b/addons/pad_project/i18n/es.po index 82553949e7f..4ad8c9bb590 100644 --- a/addons/pad_project/i18n/es.po +++ b/addons/pad_project/i18n/es.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/es_CR.po b/addons/pad_project/i18n/es_CR.po index 553c501b3ac..28ec2c7dbf1 100644 --- a/addons/pad_project/i18n/es_CR.po +++ b/addons/pad_project/i18n/es_CR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/fi.po b/addons/pad_project/i18n/fi.po index f6c3773fc6b..146a2697a6b 100644 --- a/addons/pad_project/i18n/fi.po +++ b/addons/pad_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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/fr.po b/addons/pad_project/i18n/fr.po index dd8bef12baf..016c4544101 100644 --- a/addons/pad_project/i18n/fr.po +++ b/addons/pad_project/i18n/fr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/hr.po b/addons/pad_project/i18n/hr.po index 3fe9e2d3dda..7d284c9a19e 100644 --- a/addons/pad_project/i18n/hr.po +++ b/addons/pad_project/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/hu.po b/addons/pad_project/i18n/hu.po index 419c5fc424e..3af44152597 100644 --- a/addons/pad_project/i18n/hu.po +++ b/addons/pad_project/i18n/hu.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/it.po b/addons/pad_project/i18n/it.po index 13398e069e6..7a3dc1a124a 100644 --- a/addons/pad_project/i18n/it.po +++ b/addons/pad_project/i18n/it.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/ja.po b/addons/pad_project/i18n/ja.po index d681c78af20..70109805a95 100644 --- a/addons/pad_project/i18n/ja.po +++ b/addons/pad_project/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/mk.po b/addons/pad_project/i18n/mk.po index e0cefdb7717..53cd902c6ee 100644 --- a/addons/pad_project/i18n/mk.po +++ b/addons/pad_project/i18n/mk.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/mn.po b/addons/pad_project/i18n/mn.po index 2bc911adea7..0b42f05bb57 100644 --- a/addons/pad_project/i18n/mn.po +++ b/addons/pad_project/i18n/mn.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/nb.po b/addons/pad_project/i18n/nb.po index 572c2949d4e..22a7260d529 100644 --- a/addons/pad_project/i18n/nb.po +++ b/addons/pad_project/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/nl.po b/addons/pad_project/i18n/nl.po index 9a3d82907f3..e95fcfd3e07 100644 --- a/addons/pad_project/i18n/nl.po +++ b/addons/pad_project/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/pl.po b/addons/pad_project/i18n/pl.po index e8481c3e9f7..c25b79f4fb2 100644 --- a/addons/pad_project/i18n/pl.po +++ b/addons/pad_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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/pt.po b/addons/pad_project/i18n/pt.po index 2a8081d3d7e..21f7410a253 100644 --- a/addons/pad_project/i18n/pt.po +++ b/addons/pad_project/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/pt_BR.po b/addons/pad_project/i18n/pt_BR.po index 768a7d3e0dc..8b13d9d5452 100644 --- a/addons/pad_project/i18n/pt_BR.po +++ b/addons/pad_project/i18n/pt_BR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/ro.po b/addons/pad_project/i18n/ro.po index 61322e68ed6..e2d9ccb3110 100644 --- a/addons/pad_project/i18n/ro.po +++ b/addons/pad_project/i18n/ro.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/ru.po b/addons/pad_project/i18n/ru.po index 0c8c8caa337..d90fb80b5b4 100644 --- a/addons/pad_project/i18n/ru.po +++ b/addons/pad_project/i18n/ru.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/sl.po b/addons/pad_project/i18n/sl.po index cf86aaff012..130fa02d7cc 100644 --- a/addons/pad_project/i18n/sl.po +++ b/addons/pad_project/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/sv.po b/addons/pad_project/i18n/sv.po index 4401e8db34e..3282934399a 100644 --- a/addons/pad_project/i18n/sv.po +++ b/addons/pad_project/i18n/sv.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/tr.po b/addons/pad_project/i18n/tr.po index aa5758112ec..bed576a0615 100644 --- a/addons/pad_project/i18n/tr.po +++ b/addons/pad_project/i18n/tr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/zh_CN.po b/addons/pad_project/i18n/zh_CN.po index b86df81cab0..28bc991ead0 100644 --- a/addons/pad_project/i18n/zh_CN.po +++ b/addons/pad_project/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/pad_project/i18n/zh_TW.po b/addons/pad_project/i18n/zh_TW.po index 0b934d5ebe8..c523b031c84 100644 --- a/addons/pad_project/i18n/zh_TW.po +++ b/addons/pad_project/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: pad_project diff --git a/addons/plugin/i18n/ar.po b/addons/plugin/i18n/ar.po index b513ad10b4f..7d067c1cec5 100644 --- a/addons/plugin/i18n/ar.po +++ b/addons/plugin/i18n/ar.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/cs.po b/addons/plugin/i18n/cs.po index 3d8c44ba345..9281af77f55 100644 --- a/addons/plugin/i18n/cs.po +++ b/addons/plugin/i18n/cs.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/de.po b/addons/plugin/i18n/de.po index 61bb6857546..f28299317d4 100644 --- a/addons/plugin/i18n/de.po +++ b/addons/plugin/i18n/de.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/es.po b/addons/plugin/i18n/es.po index 38d7ec53ca6..201865f3183 100644 --- a/addons/plugin/i18n/es.po +++ b/addons/plugin/i18n/es.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/es_CR.po b/addons/plugin/i18n/es_CR.po index 6f76204e167..18135961e06 100644 --- a/addons/plugin/i18n/es_CR.po +++ b/addons/plugin/i18n/es_CR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/fi.po b/addons/plugin/i18n/fi.po index 2f402cd9252..28aad2a527b 100644 --- a/addons/plugin/i18n/fi.po +++ b/addons/plugin/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/fr.po b/addons/plugin/i18n/fr.po index 060ba5ab47c..da543f4ac66 100644 --- a/addons/plugin/i18n/fr.po +++ b/addons/plugin/i18n/fr.po @@ -15,7 +15,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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/hr.po b/addons/plugin/i18n/hr.po index e5cd025a12f..c1604725008 100644 --- a/addons/plugin/i18n/hr.po +++ b/addons/plugin/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/hu.po b/addons/plugin/i18n/hu.po index 673d05b289d..22e51632023 100644 --- a/addons/plugin/i18n/hu.po +++ b/addons/plugin/i18n/hu.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/it.po b/addons/plugin/i18n/it.po index ae854c06682..ec37aa064d8 100644 --- a/addons/plugin/i18n/it.po +++ b/addons/plugin/i18n/it.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/ja.po b/addons/plugin/i18n/ja.po index 474cd9c6f46..886bce3fb1d 100644 --- a/addons/plugin/i18n/ja.po +++ b/addons/plugin/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/mk.po b/addons/plugin/i18n/mk.po index cd0e890a3ba..6540892efd7 100644 --- a/addons/plugin/i18n/mk.po +++ b/addons/plugin/i18n/mk.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/mn.po b/addons/plugin/i18n/mn.po index aa8453bac99..963b05e3715 100644 --- a/addons/plugin/i18n/mn.po +++ b/addons/plugin/i18n/mn.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/nb.po b/addons/plugin/i18n/nb.po index 56bb4bc5a0f..baec33ea16d 100644 --- a/addons/plugin/i18n/nb.po +++ b/addons/plugin/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/nl.po b/addons/plugin/i18n/nl.po index 01cb3c94b4f..1979ad49ae7 100644 --- a/addons/plugin/i18n/nl.po +++ b/addons/plugin/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/pt.po b/addons/plugin/i18n/pt.po index 18120030dc7..0f77670bc2f 100644 --- a/addons/plugin/i18n/pt.po +++ b/addons/plugin/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/pt_BR.po b/addons/plugin/i18n/pt_BR.po index f589b3a0e04..9e7dc729697 100644 --- a/addons/plugin/i18n/pt_BR.po +++ b/addons/plugin/i18n/pt_BR.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/ro.po b/addons/plugin/i18n/ro.po index 07b71461e1d..45f22192845 100644 --- a/addons/plugin/i18n/ro.po +++ b/addons/plugin/i18n/ro.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/ru.po b/addons/plugin/i18n/ru.po index ba5b65fc20e..8d0640f28d3 100644 --- a/addons/plugin/i18n/ru.po +++ b/addons/plugin/i18n/ru.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/sl.po b/addons/plugin/i18n/sl.po index 1098dc9ade7..e6069b9b240 100644 --- a/addons/plugin/i18n/sl.po +++ b/addons/plugin/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/sv.po b/addons/plugin/i18n/sv.po index 7f32cfa0d78..083040607f6 100644 --- a/addons/plugin/i18n/sv.po +++ b/addons/plugin/i18n/sv.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/tr.po b/addons/plugin/i18n/tr.po index 03a51235ea9..af19eea3086 100644 --- a/addons/plugin/i18n/tr.po +++ b/addons/plugin/i18n/tr.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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/zh_CN.po b/addons/plugin/i18n/zh_CN.po index 01ec4cb3c04..7a3d2999bca 100644 --- a/addons/plugin/i18n/zh_CN.po +++ b/addons/plugin/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin/i18n/zh_TW.po b/addons/plugin/i18n/zh_TW.po index c41e83e9b79..a5d111a8b8e 100644 --- a/addons/plugin/i18n/zh_TW.po +++ b/addons/plugin/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-03-15 05:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin diff --git a/addons/plugin_outlook/i18n/ar.po b/addons/plugin_outlook/i18n/ar.po index 5154a03a519..e17504e9084 100644 --- a/addons/plugin_outlook/i18n/ar.po +++ b/addons/plugin_outlook/i18n/ar.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/bg.po b/addons/plugin_outlook/i18n/bg.po index 9df8abfe955..c6e81dc392c 100644 --- a/addons/plugin_outlook/i18n/bg.po +++ b/addons/plugin_outlook/i18n/bg.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/ca.po b/addons/plugin_outlook/i18n/ca.po index 51708d21dfe..d37dcedbe76 100644 --- a/addons/plugin_outlook/i18n/ca.po +++ b/addons/plugin_outlook/i18n/ca.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/da.po b/addons/plugin_outlook/i18n/da.po index 79076700fbc..a7f8f444c76 100644 --- a/addons/plugin_outlook/i18n/da.po +++ b/addons/plugin_outlook/i18n/da.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/de.po b/addons/plugin_outlook/i18n/de.po index aa1de9d1e6d..e809cc337ce 100644 --- a/addons/plugin_outlook/i18n/de.po +++ b/addons/plugin_outlook/i18n/de.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/el.po b/addons/plugin_outlook/i18n/el.po index 5675261bf6c..c37f26ccf7e 100644 --- a/addons/plugin_outlook/i18n/el.po +++ b/addons/plugin_outlook/i18n/el.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/es.po b/addons/plugin_outlook/i18n/es.po index ad1b8dff3da..d4dc6e7f6c7 100644 --- a/addons/plugin_outlook/i18n/es.po +++ b/addons/plugin_outlook/i18n/es.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/es_CR.po b/addons/plugin_outlook/i18n/es_CR.po index 4f5071cbd4e..b0a2b3721f1 100644 --- a/addons/plugin_outlook/i18n/es_CR.po +++ b/addons/plugin_outlook/i18n/es_CR.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/plugin_outlook/i18n/et.po b/addons/plugin_outlook/i18n/et.po index c79073b87f2..1c8d473ca1e 100644 --- a/addons/plugin_outlook/i18n/et.po +++ b/addons/plugin_outlook/i18n/et.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/fi.po b/addons/plugin_outlook/i18n/fi.po index c385986adc5..366295353d3 100644 --- a/addons/plugin_outlook/i18n/fi.po +++ b/addons/plugin_outlook/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/fr.po b/addons/plugin_outlook/i18n/fr.po index a2999af7fad..05f248213c4 100644 --- a/addons/plugin_outlook/i18n/fr.po +++ b/addons/plugin_outlook/i18n/fr.po @@ -15,7 +15,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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/gl.po b/addons/plugin_outlook/i18n/gl.po index d7dd0f4a0ad..4261cb8f977 100644 --- a/addons/plugin_outlook/i18n/gl.po +++ b/addons/plugin_outlook/i18n/gl.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/hr.po b/addons/plugin_outlook/i18n/hr.po index be8cc7b63a6..22adda94fa2 100644 --- a/addons/plugin_outlook/i18n/hr.po +++ b/addons/plugin_outlook/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/hu.po b/addons/plugin_outlook/i18n/hu.po index 6abea950d2a..53b8faab06b 100644 --- a/addons/plugin_outlook/i18n/hu.po +++ b/addons/plugin_outlook/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/id.po b/addons/plugin_outlook/i18n/id.po index e03de23b893..53a6124934b 100644 --- a/addons/plugin_outlook/i18n/id.po +++ b/addons/plugin_outlook/i18n/id.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/it.po b/addons/plugin_outlook/i18n/it.po index 08cb91f59e2..baa57a94d06 100644 --- a/addons/plugin_outlook/i18n/it.po +++ b/addons/plugin_outlook/i18n/it.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/ja.po b/addons/plugin_outlook/i18n/ja.po index 004e6b027b4..f507a35774e 100644 --- a/addons/plugin_outlook/i18n/ja.po +++ b/addons/plugin_outlook/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/mk.po b/addons/plugin_outlook/i18n/mk.po index a68521cdf33..19dcbcf9d1c 100644 --- a/addons/plugin_outlook/i18n/mk.po +++ b/addons/plugin_outlook/i18n/mk.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/mn.po b/addons/plugin_outlook/i18n/mn.po index ccc990f6478..95aa216e47e 100644 --- a/addons/plugin_outlook/i18n/mn.po +++ b/addons/plugin_outlook/i18n/mn.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/nb.po b/addons/plugin_outlook/i18n/nb.po index dfafe473b7b..07813b5987a 100644 --- a/addons/plugin_outlook/i18n/nb.po +++ b/addons/plugin_outlook/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/nl.po b/addons/plugin_outlook/i18n/nl.po index 3b38686b452..4f283a2aed6 100644 --- a/addons/plugin_outlook/i18n/nl.po +++ b/addons/plugin_outlook/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/pl.po b/addons/plugin_outlook/i18n/pl.po index af17a54a89c..e1c8b276df3 100644 --- a/addons/plugin_outlook/i18n/pl.po +++ b/addons/plugin_outlook/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/pt.po b/addons/plugin_outlook/i18n/pt.po index ab607b7bb99..1784bea0721 100644 --- a/addons/plugin_outlook/i18n/pt.po +++ b/addons/plugin_outlook/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/pt_BR.po b/addons/plugin_outlook/i18n/pt_BR.po index 73442a5498d..e09fd3a0aaa 100644 --- a/addons/plugin_outlook/i18n/pt_BR.po +++ b/addons/plugin_outlook/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/ro.po b/addons/plugin_outlook/i18n/ro.po index a458ca51341..fa8cdfdfa29 100644 --- a/addons/plugin_outlook/i18n/ro.po +++ b/addons/plugin_outlook/i18n/ro.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/ru.po b/addons/plugin_outlook/i18n/ru.po index 3b1d251b054..9eec939272c 100644 --- a/addons/plugin_outlook/i18n/ru.po +++ b/addons/plugin_outlook/i18n/ru.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/sl.po b/addons/plugin_outlook/i18n/sl.po index d19cfa47319..e6649377a26 100644 --- a/addons/plugin_outlook/i18n/sl.po +++ b/addons/plugin_outlook/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/sr@latin.po b/addons/plugin_outlook/i18n/sr@latin.po index 08247413ae5..b4d63712ec1 100644 --- a/addons/plugin_outlook/i18n/sr@latin.po +++ b/addons/plugin_outlook/i18n/sr@latin.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/sv.po b/addons/plugin_outlook/i18n/sv.po index d4558184149..58daccedd5f 100644 --- a/addons/plugin_outlook/i18n/sv.po +++ b/addons/plugin_outlook/i18n/sv.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/tr.po b/addons/plugin_outlook/i18n/tr.po index e06d5329ed6..455a613e29c 100644 --- a/addons/plugin_outlook/i18n/tr.po +++ b/addons/plugin_outlook/i18n/tr.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/zh_CN.po b/addons/plugin_outlook/i18n/zh_CN.po index 16a8b51b28a..17e378df4be 100644 --- a/addons/plugin_outlook/i18n/zh_CN.po +++ b/addons/plugin_outlook/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_outlook diff --git a/addons/plugin_thunderbird/i18n/ar.po b/addons/plugin_thunderbird/i18n/ar.po index 3479e14df85..2f17afd3871 100644 --- a/addons/plugin_thunderbird/i18n/ar.po +++ b/addons/plugin_thunderbird/i18n/ar.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/bg.po b/addons/plugin_thunderbird/i18n/bg.po index 2d4a13a20cd..cf0d7fa22c7 100644 --- a/addons/plugin_thunderbird/i18n/bg.po +++ b/addons/plugin_thunderbird/i18n/bg.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/ca.po b/addons/plugin_thunderbird/i18n/ca.po index 8e2135ac5f4..d95eeff1db3 100644 --- a/addons/plugin_thunderbird/i18n/ca.po +++ b/addons/plugin_thunderbird/i18n/ca.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/cs.po b/addons/plugin_thunderbird/i18n/cs.po index 1895b09d8fd..61cf5402508 100644 --- a/addons/plugin_thunderbird/i18n/cs.po +++ b/addons/plugin_thunderbird/i18n/cs.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/da.po b/addons/plugin_thunderbird/i18n/da.po index 272bc4e13b3..24ba6d16a4c 100644 --- a/addons/plugin_thunderbird/i18n/da.po +++ b/addons/plugin_thunderbird/i18n/da.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/de.po b/addons/plugin_thunderbird/i18n/de.po index 69a0ebba43a..f38168715a4 100644 --- a/addons/plugin_thunderbird/i18n/de.po +++ b/addons/plugin_thunderbird/i18n/de.po @@ -15,7 +15,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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/en_GB.po b/addons/plugin_thunderbird/i18n/en_GB.po index 0d7e79f378f..c4954ae23f1 100644 --- a/addons/plugin_thunderbird/i18n/en_GB.po +++ b/addons/plugin_thunderbird/i18n/en_GB.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/en_US.po b/addons/plugin_thunderbird/i18n/en_US.po index e7a66de70a9..b40aeba1bea 100644 --- a/addons/plugin_thunderbird/i18n/en_US.po +++ b/addons/plugin_thunderbird/i18n/en_US.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/es.po b/addons/plugin_thunderbird/i18n/es.po index 60b31c990c3..6d7a4b2c927 100644 --- a/addons/plugin_thunderbird/i18n/es.po +++ b/addons/plugin_thunderbird/i18n/es.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/es_CR.po b/addons/plugin_thunderbird/i18n/es_CR.po index 9b241809678..76273e3daec 100644 --- a/addons/plugin_thunderbird/i18n/es_CR.po +++ b/addons/plugin_thunderbird/i18n/es_CR.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/plugin_thunderbird/i18n/et.po b/addons/plugin_thunderbird/i18n/et.po index 59b565ee7df..49c4e9b7c1d 100644 --- a/addons/plugin_thunderbird/i18n/et.po +++ b/addons/plugin_thunderbird/i18n/et.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/eu.po b/addons/plugin_thunderbird/i18n/eu.po index c90f0e752a7..7dc7801103e 100644 --- a/addons/plugin_thunderbird/i18n/eu.po +++ b/addons/plugin_thunderbird/i18n/eu.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/fi.po b/addons/plugin_thunderbird/i18n/fi.po index 908a5b51b08..09b0b796c12 100644 --- a/addons/plugin_thunderbird/i18n/fi.po +++ b/addons/plugin_thunderbird/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/fr.po b/addons/plugin_thunderbird/i18n/fr.po index 292582b2b0d..17c2677b1a3 100644 --- a/addons/plugin_thunderbird/i18n/fr.po +++ b/addons/plugin_thunderbird/i18n/fr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/gl.po b/addons/plugin_thunderbird/i18n/gl.po index ec54889e7b2..73b144ff9c0 100644 --- a/addons/plugin_thunderbird/i18n/gl.po +++ b/addons/plugin_thunderbird/i18n/gl.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/hr.po b/addons/plugin_thunderbird/i18n/hr.po index 99be064badd..9c57141c49c 100644 --- a/addons/plugin_thunderbird/i18n/hr.po +++ b/addons/plugin_thunderbird/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/plugin_thunderbird/i18n/hu.po b/addons/plugin_thunderbird/i18n/hu.po index a95d1ea650b..a2121e195e7 100644 --- a/addons/plugin_thunderbird/i18n/hu.po +++ b/addons/plugin_thunderbird/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/is.po b/addons/plugin_thunderbird/i18n/is.po index d96c8d64161..d86b58f7a05 100644 --- a/addons/plugin_thunderbird/i18n/is.po +++ b/addons/plugin_thunderbird/i18n/is.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/it.po b/addons/plugin_thunderbird/i18n/it.po index 95bbd956f57..aaeb282b3b2 100644 --- a/addons/plugin_thunderbird/i18n/it.po +++ b/addons/plugin_thunderbird/i18n/it.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/ja.po b/addons/plugin_thunderbird/i18n/ja.po index f71afdbd17c..847ab9c9f5e 100644 --- a/addons/plugin_thunderbird/i18n/ja.po +++ b/addons/plugin_thunderbird/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/mk.po b/addons/plugin_thunderbird/i18n/mk.po index 2ca27031c8e..48eea52d7f3 100644 --- a/addons/plugin_thunderbird/i18n/mk.po +++ b/addons/plugin_thunderbird/i18n/mk.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/mn.po b/addons/plugin_thunderbird/i18n/mn.po index 52e7860b58d..ee33d600a9b 100644 --- a/addons/plugin_thunderbird/i18n/mn.po +++ b/addons/plugin_thunderbird/i18n/mn.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/nb.po b/addons/plugin_thunderbird/i18n/nb.po index 9172ed541fa..69ce4903469 100644 --- a/addons/plugin_thunderbird/i18n/nb.po +++ b/addons/plugin_thunderbird/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/nl.po b/addons/plugin_thunderbird/i18n/nl.po index f2148d28fa0..6f398fac2e2 100644 --- a/addons/plugin_thunderbird/i18n/nl.po +++ b/addons/plugin_thunderbird/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/pl.po b/addons/plugin_thunderbird/i18n/pl.po index 2c27daa5e31..d4dff1dc66e 100644 --- a/addons/plugin_thunderbird/i18n/pl.po +++ b/addons/plugin_thunderbird/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/pt.po b/addons/plugin_thunderbird/i18n/pt.po index 85f0092d3aa..ac30bfdb001 100644 --- a/addons/plugin_thunderbird/i18n/pt.po +++ b/addons/plugin_thunderbird/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/pt_BR.po b/addons/plugin_thunderbird/i18n/pt_BR.po index 4fb8c1b3508..884c892e133 100644 --- a/addons/plugin_thunderbird/i18n/pt_BR.po +++ b/addons/plugin_thunderbird/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/ro.po b/addons/plugin_thunderbird/i18n/ro.po index d3a01361db4..422e074a0c9 100644 --- a/addons/plugin_thunderbird/i18n/ro.po +++ b/addons/plugin_thunderbird/i18n/ro.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/ru.po b/addons/plugin_thunderbird/i18n/ru.po index 54e55b116b8..bbf99220b47 100644 --- a/addons/plugin_thunderbird/i18n/ru.po +++ b/addons/plugin_thunderbird/i18n/ru.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/sk.po b/addons/plugin_thunderbird/i18n/sk.po index bcbfbea15ce..1b8ff301c96 100644 --- a/addons/plugin_thunderbird/i18n/sk.po +++ b/addons/plugin_thunderbird/i18n/sk.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/sl.po b/addons/plugin_thunderbird/i18n/sl.po index 2d6140365b1..373415785dc 100644 --- a/addons/plugin_thunderbird/i18n/sl.po +++ b/addons/plugin_thunderbird/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/sr.po b/addons/plugin_thunderbird/i18n/sr.po index 90d75d1e84d..9df1234869e 100644 --- a/addons/plugin_thunderbird/i18n/sr.po +++ b/addons/plugin_thunderbird/i18n/sr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/sr@latin.po b/addons/plugin_thunderbird/i18n/sr@latin.po index 0e7e2b583b7..08b69010b7c 100644 --- a/addons/plugin_thunderbird/i18n/sr@latin.po +++ b/addons/plugin_thunderbird/i18n/sr@latin.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/sv.po b/addons/plugin_thunderbird/i18n/sv.po index c7cd7497888..f452ea34dd6 100644 --- a/addons/plugin_thunderbird/i18n/sv.po +++ b/addons/plugin_thunderbird/i18n/sv.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/tr.po b/addons/plugin_thunderbird/i18n/tr.po index f7b73c77a9e..71b0f13d2dc 100644 --- a/addons/plugin_thunderbird/i18n/tr.po +++ b/addons/plugin_thunderbird/i18n/tr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/zh_CN.po b/addons/plugin_thunderbird/i18n/zh_CN.po index 0ffda6d3fe8..37361dd291e 100644 --- a/addons/plugin_thunderbird/i18n/zh_CN.po +++ b/addons/plugin_thunderbird/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: plugin_thunderbird diff --git a/addons/point_of_sale/i18n/ar.po b/addons/point_of_sale/i18n/ar.po index 254896c3b2e..b970977cd4c 100644 --- a/addons/point_of_sale/i18n/ar.po +++ b/addons/point_of_sale/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/bg.po b/addons/point_of_sale/i18n/bg.po index 823cadd3780..5dbc0db438a 100644 --- a/addons/point_of_sale/i18n/bg.po +++ b/addons/point_of_sale/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/bs.po b/addons/point_of_sale/i18n/bs.po index ff9d6ab5f5a..5093864611d 100644 --- a/addons/point_of_sale/i18n/bs.po +++ b/addons/point_of_sale/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/ca.po b/addons/point_of_sale/i18n/ca.po index eaec4b8253e..0a1aa4713ee 100644 --- a/addons/point_of_sale/i18n/ca.po +++ b/addons/point_of_sale/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/cs.po b/addons/point_of_sale/i18n/cs.po index 58036c6ec8f..2b07b3d19b4 100644 --- a/addons/point_of_sale/i18n/cs.po +++ b/addons/point_of_sale/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/da.po b/addons/point_of_sale/i18n/da.po index e04032a6b21..5bc9a6b57aa 100644 --- a/addons/point_of_sale/i18n/da.po +++ b/addons/point_of_sale/i18n/da.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/de.po b/addons/point_of_sale/i18n/de.po index 1191753907a..ef395664c7b 100644 --- a/addons/point_of_sale/i18n/de.po +++ b/addons/point_of_sale/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/el.po b/addons/point_of_sale/i18n/el.po index 1df0ed8f6c6..2c0e9bb5b10 100644 --- a/addons/point_of_sale/i18n/el.po +++ b/addons/point_of_sale/i18n/el.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-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/es.po b/addons/point_of_sale/i18n/es.po index c9a06d0056a..2302573f127 100644 --- a/addons/point_of_sale/i18n/es.po +++ b/addons/point_of_sale/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/es_AR.po b/addons/point_of_sale/i18n/es_AR.po index fa05050e6e0..5228c704c51 100644 --- a/addons/point_of_sale/i18n/es_AR.po +++ b/addons/point_of_sale/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/es_CR.po b/addons/point_of_sale/i18n/es_CR.po index 04e1625ee70..db801edb002 100644 --- a/addons/point_of_sale/i18n/es_CR.po +++ b/addons/point_of_sale/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/point_of_sale/i18n/es_EC.po b/addons/point_of_sale/i18n/es_EC.po index 5c4476cef4c..48ae9e9b0ae 100644 --- a/addons/point_of_sale/i18n/es_EC.po +++ b/addons/point_of_sale/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/et.po b/addons/point_of_sale/i18n/et.po index 9bf4c76e9a6..e379516cb0c 100644 --- a/addons/point_of_sale/i18n/et.po +++ b/addons/point_of_sale/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #, python-format diff --git a/addons/point_of_sale/i18n/fi.po b/addons/point_of_sale/i18n/fi.po index 926bc090c41..ab8a1901645 100644 --- a/addons/point_of_sale/i18n/fi.po +++ b/addons/point_of_sale/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-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/fr.po b/addons/point_of_sale/i18n/fr.po index cceb180a146..7af2c4e2deb 100644 --- a/addons/point_of_sale/i18n/fr.po +++ b/addons/point_of_sale/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/hi.po b/addons/point_of_sale/i18n/hi.po index 65ca9dedfac..95f0d5e29eb 100644 --- a/addons/point_of_sale/i18n/hi.po +++ b/addons/point_of_sale/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/hr.po b/addons/point_of_sale/i18n/hr.po index f84c4d0bc70..0313ca3c325 100644 --- a/addons/point_of_sale/i18n/hr.po +++ b/addons/point_of_sale/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/hu.po b/addons/point_of_sale/i18n/hu.po index f33c1d738c8..67289bee6d7 100644 --- a/addons/point_of_sale/i18n/hu.po +++ b/addons/point_of_sale/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/id.po b/addons/point_of_sale/i18n/id.po index d61109e08d6..45467ec7fad 100644 --- a/addons/point_of_sale/i18n/id.po +++ b/addons/point_of_sale/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/it.po b/addons/point_of_sale/i18n/it.po index c08eccc753a..4a39a8ab678 100644 --- a/addons/point_of_sale/i18n/it.po +++ b/addons/point_of_sale/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/ja.po b/addons/point_of_sale/i18n/ja.po index ee10fe3b00c..8d66e341404 100644 --- a/addons/point_of_sale/i18n/ja.po +++ b/addons/point_of_sale/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-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/ko.po b/addons/point_of_sale/i18n/ko.po index fd0a8db4040..21eeeef0617 100644 --- a/addons/point_of_sale/i18n/ko.po +++ b/addons/point_of_sale/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/lt.po b/addons/point_of_sale/i18n/lt.po index da2e4319ca7..6d0979d41ad 100644 --- a/addons/point_of_sale/i18n/lt.po +++ b/addons/point_of_sale/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/lv.po b/addons/point_of_sale/i18n/lv.po index 8d418bebd34..2a4c7c70626 100644 --- a/addons/point_of_sale/i18n/lv.po +++ b/addons/point_of_sale/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/mk.po b/addons/point_of_sale/i18n/mk.po index 701f2bb1914..f3a01f441ee 100644 --- a/addons/point_of_sale/i18n/mk.po +++ b/addons/point_of_sale/i18n/mk.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-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/mn.po b/addons/point_of_sale/i18n/mn.po index 56a9242ab30..fd0e0cdb502 100644 --- a/addons/point_of_sale/i18n/mn.po +++ b/addons/point_of_sale/i18n/mn.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-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/nb.po b/addons/point_of_sale/i18n/nb.po index 3e9deb57a64..7ea68911f25 100644 --- a/addons/point_of_sale/i18n/nb.po +++ b/addons/point_of_sale/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/nl.po b/addons/point_of_sale/i18n/nl.po index 9a7d78623d4..8c04a60377f 100644 --- a/addons/point_of_sale/i18n/nl.po +++ b/addons/point_of_sale/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale @@ -1199,7 +1199,7 @@ msgstr "Krt." #. module: point_of_sale #: view:pos.order:0 msgid "(update)" -msgstr "(update)" +msgstr "(bijwerken)" #. module: point_of_sale #: model:product.template,name:point_of_sale.ijsboerke_vanille_2,5l_product_template diff --git a/addons/point_of_sale/i18n/nl_BE.po b/addons/point_of_sale/i18n/nl_BE.po index e93427906ef..0bd93f81772 100644 --- a/addons/point_of_sale/i18n/nl_BE.po +++ b/addons/point_of_sale/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/pl.po b/addons/point_of_sale/i18n/pl.po index d7e286b3f34..4accf58800e 100644 --- a/addons/point_of_sale/i18n/pl.po +++ b/addons/point_of_sale/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/pt.po b/addons/point_of_sale/i18n/pt.po index b94a282fb2a..5f4b3532638 100644 --- a/addons/point_of_sale/i18n/pt.po +++ b/addons/point_of_sale/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/pt_BR.po b/addons/point_of_sale/i18n/pt_BR.po index b8be3cdc3a8..eac24526afc 100644 --- a/addons/point_of_sale/i18n/pt_BR.po +++ b/addons/point_of_sale/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/ro.po b/addons/point_of_sale/i18n/ro.po index 24465a8925f..c37d9eea7d3 100644 --- a/addons/point_of_sale/i18n/ro.po +++ b/addons/point_of_sale/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/ru.po b/addons/point_of_sale/i18n/ru.po index 88e285c1cd7..b1bb4feb436 100644 --- a/addons/point_of_sale/i18n/ru.po +++ b/addons/point_of_sale/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/sl.po b/addons/point_of_sale/i18n/sl.po index 541337d6085..e4b8a31dd1a 100644 --- a/addons/point_of_sale/i18n/sl.po +++ b/addons/point_of_sale/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/sq.po b/addons/point_of_sale/i18n/sq.po index 9bc5de48691..5a1d3a4c679 100644 --- a/addons/point_of_sale/i18n/sq.po +++ b/addons/point_of_sale/i18n/sq.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-03-15 05:06+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:05+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/sr.po b/addons/point_of_sale/i18n/sr.po index 6df813f768c..5663b23b6b1 100644 --- a/addons/point_of_sale/i18n/sr.po +++ b/addons/point_of_sale/i18n/sr.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-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/sr@latin.po b/addons/point_of_sale/i18n/sr@latin.po index 40a52e98680..37270417dda 100644 --- a/addons/point_of_sale/i18n/sr@latin.po +++ b/addons/point_of_sale/i18n/sr@latin.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-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/sv.po b/addons/point_of_sale/i18n/sv.po index b52453b968e..b41dab8917a 100644 --- a/addons/point_of_sale/i18n/sv.po +++ b/addons/point_of_sale/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:06+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/tlh.po b/addons/point_of_sale/i18n/tlh.po index 11bf50923f1..015093cf0ee 100644 --- a/addons/point_of_sale/i18n/tlh.po +++ b/addons/point_of_sale/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/tr.po b/addons/point_of_sale/i18n/tr.po index 04cc5d8ae50..dc8caeb90dd 100644 --- a/addons/point_of_sale/i18n/tr.po +++ b/addons/point_of_sale/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/uk.po b/addons/point_of_sale/i18n/uk.po index 29ef158452f..560fee95d88 100644 --- a/addons/point_of_sale/i18n/uk.po +++ b/addons/point_of_sale/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/vi.po b/addons/point_of_sale/i18n/vi.po index e94ee115f26..843ef547973 100644 --- a/addons/point_of_sale/i18n/vi.po +++ b/addons/point_of_sale/i18n/vi.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-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/zh_CN.po b/addons/point_of_sale/i18n/zh_CN.po index 1cdea8c522b..e4d914ae56e 100644 --- a/addons/point_of_sale/i18n/zh_CN.po +++ b/addons/point_of_sale/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/zh_HK.po b/addons/point_of_sale/i18n/zh_HK.po index 41816c5007c..ccfbe05fe91 100644 --- a/addons/point_of_sale/i18n/zh_HK.po +++ b/addons/point_of_sale/i18n/zh_HK.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-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/zh_TW.po b/addons/point_of_sale/i18n/zh_TW.po index 2f4089a689a..5c155b79cc9 100644 --- a/addons/point_of_sale/i18n/zh_TW.po +++ b/addons/point_of_sale/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:07+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: point_of_sale diff --git a/addons/portal/i18n/ar.po b/addons/portal/i18n/ar.po index c8829e34a40..85c3a8bf1cf 100644 --- a/addons/portal/i18n/ar.po +++ b/addons/portal/i18n/ar.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/bg.po b/addons/portal/i18n/bg.po index 22c842b672e..702a0fe0441 100644 --- a/addons/portal/i18n/bg.po +++ b/addons/portal/i18n/bg.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/bs.po b/addons/portal/i18n/bs.po index fe58dd18f49..62001e2f46b 100644 --- a/addons/portal/i18n/bs.po +++ b/addons/portal/i18n/bs.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/ca.po b/addons/portal/i18n/ca.po index 1f4920e9a67..2ad5914a1cc 100644 --- a/addons/portal/i18n/ca.po +++ b/addons/portal/i18n/ca.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/cs.po b/addons/portal/i18n/cs.po index f7a32b8703f..c4d3729c3ef 100644 --- a/addons/portal/i18n/cs.po +++ b/addons/portal/i18n/cs.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/portal/i18n/da.po b/addons/portal/i18n/da.po index 08b5249adde..35b55ad7414 100644 --- a/addons/portal/i18n/da.po +++ b/addons/portal/i18n/da.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/de.po b/addons/portal/i18n/de.po index 540db7dc401..3eeea54c87a 100644 --- a/addons/portal/i18n/de.po +++ b/addons/portal/i18n/de.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/es.po b/addons/portal/i18n/es.po index addb91edbb2..335e2d925f5 100644 --- a/addons/portal/i18n/es.po +++ b/addons/portal/i18n/es.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/es_CR.po b/addons/portal/i18n/es_CR.po index cd99c80f07e..8337675e2bf 100644 --- a/addons/portal/i18n/es_CR.po +++ b/addons/portal/i18n/es_CR.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/portal/i18n/et.po b/addons/portal/i18n/et.po index 07c41091d83..51523223cf0 100644 --- a/addons/portal/i18n/et.po +++ b/addons/portal/i18n/et.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/fi.po b/addons/portal/i18n/fi.po index 205dca4395b..862047d36a0 100644 --- a/addons/portal/i18n/fi.po +++ b/addons/portal/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/fr.po b/addons/portal/i18n/fr.po index 18283cde72e..10708f9a714 100644 --- a/addons/portal/i18n/fr.po +++ b/addons/portal/i18n/fr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/hr.po b/addons/portal/i18n/hr.po index 1414bbc44d8..ea7410b255d 100644 --- a/addons/portal/i18n/hr.po +++ b/addons/portal/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/hu.po b/addons/portal/i18n/hu.po index cae03c45c8e..5ba1d0cfb5c 100644 --- a/addons/portal/i18n/hu.po +++ b/addons/portal/i18n/hu.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/id.po b/addons/portal/i18n/id.po index ba37a43eb8a..ddd5aa84f76 100644 --- a/addons/portal/i18n/id.po +++ b/addons/portal/i18n/id.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/it.po b/addons/portal/i18n/it.po index a5220717993..0f60c51cb52 100644 --- a/addons/portal/i18n/it.po +++ b/addons/portal/i18n/it.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/ja.po b/addons/portal/i18n/ja.po index b45ca78e329..8282e1c3fff 100644 --- a/addons/portal/i18n/ja.po +++ b/addons/portal/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/lo.po b/addons/portal/i18n/lo.po index 23744ebdd39..c23553ed143 100644 --- a/addons/portal/i18n/lo.po +++ b/addons/portal/i18n/lo.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/lt.po b/addons/portal/i18n/lt.po index 1e68682348e..6674f5b61ed 100644 --- a/addons/portal/i18n/lt.po +++ b/addons/portal/i18n/lt.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/mk.po b/addons/portal/i18n/mk.po index 12979cda323..ff445455afc 100644 --- a/addons/portal/i18n/mk.po +++ b/addons/portal/i18n/mk.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/mn.po b/addons/portal/i18n/mn.po index 769773d9ad5..2c0afc78b62 100644 --- a/addons/portal/i18n/mn.po +++ b/addons/portal/i18n/mn.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/nl.po b/addons/portal/i18n/nl.po index fda8a096184..d3eb5b759f1 100644 --- a/addons/portal/i18n/nl.po +++ b/addons/portal/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/pl.po b/addons/portal/i18n/pl.po index acb86e2e234..47942d5a938 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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/pt.po b/addons/portal/i18n/pt.po index 82383618162..922ec6d95b4 100644 --- a/addons/portal/i18n/pt.po +++ b/addons/portal/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/pt_BR.po b/addons/portal/i18n/pt_BR.po index 70ee24910dc..fc691c1175c 100644 --- a/addons/portal/i18n/pt_BR.po +++ b/addons/portal/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/ro.po b/addons/portal/i18n/ro.po index 929ee05e3a0..b88f6ce8406 100644 --- a/addons/portal/i18n/ro.po +++ b/addons/portal/i18n/ro.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/ru.po b/addons/portal/i18n/ru.po index 12e6a2dcc95..247c5705fc3 100644 --- a/addons/portal/i18n/ru.po +++ b/addons/portal/i18n/ru.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/sl.po b/addons/portal/i18n/sl.po index a0c22be2fb0..365460d59ef 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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/sr.po b/addons/portal/i18n/sr.po index d9517ba5e53..9c7a066898a 100644 --- a/addons/portal/i18n/sr.po +++ b/addons/portal/i18n/sr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/sv.po b/addons/portal/i18n/sv.po index d138b714abe..edfb8630aeb 100644 --- a/addons/portal/i18n/sv.po +++ b/addons/portal/i18n/sv.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/tr.po b/addons/portal/i18n/tr.po index 05b908f0498..93119666eb1 100644 --- a/addons/portal/i18n/tr.po +++ b/addons/portal/i18n/tr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/uk.po b/addons/portal/i18n/uk.po index 7eb9c326c20..e0f3a60d938 100644 --- a/addons/portal/i18n/uk.po +++ b/addons/portal/i18n/uk.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/zh_CN.po b/addons/portal/i18n/zh_CN.po index 285da1270fa..6e205e48537 100644 --- a/addons/portal/i18n/zh_CN.po +++ b/addons/portal/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal/i18n/zh_TW.po b/addons/portal/i18n/zh_TW.po index c6285c5a6a0..ddf33439586 100644 --- a/addons/portal/i18n/zh_TW.po +++ b/addons/portal/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal diff --git a/addons/portal_anonymous/i18n/cs.po b/addons/portal_anonymous/i18n/cs.po index 6a7a4c46431..e93c1e4d390 100644 --- a/addons/portal_anonymous/i18n/cs.po +++ b/addons/portal_anonymous/i18n/cs.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_anonymous diff --git a/addons/portal_anonymous/i18n/es.po b/addons/portal_anonymous/i18n/es.po index 9d70a83df1b..3a3e60f6b6b 100644 --- a/addons/portal_anonymous/i18n/es.po +++ b/addons/portal_anonymous/i18n/es.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_anonymous diff --git a/addons/portal_anonymous/i18n/fr.po b/addons/portal_anonymous/i18n/fr.po index 2ca606b7ed6..e06a6c6613a 100644 --- a/addons/portal_anonymous/i18n/fr.po +++ b/addons/portal_anonymous/i18n/fr.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_anonymous diff --git a/addons/portal_anonymous/i18n/hu.po b/addons/portal_anonymous/i18n/hu.po index 7e7b817bfbd..12294df18a2 100644 --- a/addons/portal_anonymous/i18n/hu.po +++ b/addons/portal_anonymous/i18n/hu.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_anonymous diff --git a/addons/portal_anonymous/i18n/mk.po b/addons/portal_anonymous/i18n/mk.po index 41914eabe64..5b0d6529853 100644 --- a/addons/portal_anonymous/i18n/mk.po +++ b/addons/portal_anonymous/i18n/mk.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_anonymous diff --git a/addons/portal_anonymous/i18n/mn.po b/addons/portal_anonymous/i18n/mn.po index bf6b38483a2..b00ac930a99 100644 --- a/addons/portal_anonymous/i18n/mn.po +++ b/addons/portal_anonymous/i18n/mn.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_anonymous diff --git a/addons/portal_anonymous/i18n/nl.po b/addons/portal_anonymous/i18n/nl.po index ebf1ecbf875..035833b737f 100644 --- a/addons/portal_anonymous/i18n/nl.po +++ b/addons/portal_anonymous/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_anonymous diff --git a/addons/portal_anonymous/i18n/pt.po b/addons/portal_anonymous/i18n/pt.po index 89a205b29ea..fe26e3c54af 100644 --- a/addons/portal_anonymous/i18n/pt.po +++ b/addons/portal_anonymous/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_anonymous diff --git a/addons/portal_anonymous/i18n/pt_BR.po b/addons/portal_anonymous/i18n/pt_BR.po index a0f70c7cdfe..d4f18907f95 100644 --- a/addons/portal_anonymous/i18n/pt_BR.po +++ b/addons/portal_anonymous/i18n/pt_BR.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_anonymous diff --git a/addons/portal_anonymous/i18n/ro.po b/addons/portal_anonymous/i18n/ro.po index 456602d277a..6dc0b91bd52 100644 --- a/addons/portal_anonymous/i18n/ro.po +++ b/addons/portal_anonymous/i18n/ro.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_anonymous diff --git a/addons/portal_anonymous/i18n/sl.po b/addons/portal_anonymous/i18n/sl.po index 50ff5832bad..bf3386cfeee 100644 --- a/addons/portal_anonymous/i18n/sl.po +++ b/addons/portal_anonymous/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_anonymous diff --git a/addons/portal_anonymous/i18n/sv.po b/addons/portal_anonymous/i18n/sv.po index a836ae83801..93e16897ba6 100644 --- a/addons/portal_anonymous/i18n/sv.po +++ b/addons/portal_anonymous/i18n/sv.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_anonymous diff --git a/addons/portal_anonymous/i18n/tr.po b/addons/portal_anonymous/i18n/tr.po index 8f61b51b706..d5770b9886a 100644 --- a/addons/portal_anonymous/i18n/tr.po +++ b/addons/portal_anonymous/i18n/tr.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_anonymous diff --git a/addons/portal_claim/i18n/cs.po b/addons/portal_claim/i18n/cs.po index af69a35d0b4..1198ec1b77b 100644 --- a/addons/portal_claim/i18n/cs.po +++ b/addons/portal_claim/i18n/cs.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/de.po b/addons/portal_claim/i18n/de.po index 480007ed9b4..f1442e398ee 100644 --- a/addons/portal_claim/i18n/de.po +++ b/addons/portal_claim/i18n/de.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/es.po b/addons/portal_claim/i18n/es.po index 07255c4e44d..fc91d1db642 100644 --- a/addons/portal_claim/i18n/es.po +++ b/addons/portal_claim/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/fr.po b/addons/portal_claim/i18n/fr.po index 45724b9c885..e90679df24b 100644 --- a/addons/portal_claim/i18n/fr.po +++ b/addons/portal_claim/i18n/fr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/hr.po b/addons/portal_claim/i18n/hr.po index f575109810e..f26b5e60d7d 100644 --- a/addons/portal_claim/i18n/hr.po +++ b/addons/portal_claim/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/hu.po b/addons/portal_claim/i18n/hu.po index 186c554d6d6..c1893351ba8 100644 --- a/addons/portal_claim/i18n/hu.po +++ b/addons/portal_claim/i18n/hu.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/it.po b/addons/portal_claim/i18n/it.po index 208b092793d..128f6f12579 100644 --- a/addons/portal_claim/i18n/it.po +++ b/addons/portal_claim/i18n/it.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/mk.po b/addons/portal_claim/i18n/mk.po index c4146562e46..dad4ffa890f 100644 --- a/addons/portal_claim/i18n/mk.po +++ b/addons/portal_claim/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/nl.po b/addons/portal_claim/i18n/nl.po index 0626a2b04f6..02dec30bfe1 100644 --- a/addons/portal_claim/i18n/nl.po +++ b/addons/portal_claim/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/pl.po b/addons/portal_claim/i18n/pl.po index 12ec95e087a..5bedbcc2bef 100644 --- a/addons/portal_claim/i18n/pl.po +++ b/addons/portal_claim/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/pt.po b/addons/portal_claim/i18n/pt.po index 919abbf86db..f495f70274b 100644 --- a/addons/portal_claim/i18n/pt.po +++ b/addons/portal_claim/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/pt_BR.po b/addons/portal_claim/i18n/pt_BR.po index 4cade7e84a4..4a23e0cf9a9 100644 --- a/addons/portal_claim/i18n/pt_BR.po +++ b/addons/portal_claim/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/ro.po b/addons/portal_claim/i18n/ro.po index 673fe9ce517..ea9fc0b59bd 100644 --- a/addons/portal_claim/i18n/ro.po +++ b/addons/portal_claim/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/sl.po b/addons/portal_claim/i18n/sl.po index 6c8cad9894e..8d6a23e4ef4 100644 --- a/addons/portal_claim/i18n/sl.po +++ b/addons/portal_claim/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/tr.po b/addons/portal_claim/i18n/tr.po index c7f9f32d493..1fb9ff05377 100644 --- a/addons/portal_claim/i18n/tr.po +++ b/addons/portal_claim/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_claim/i18n/zh_CN.po b/addons/portal_claim/i18n/zh_CN.po index da5b6bf8991..864f7ad76ad 100644 --- a/addons/portal_claim/i18n/zh_CN.po +++ b/addons/portal_claim/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_claim diff --git a/addons/portal_crm/i18n/de.po b/addons/portal_crm/i18n/de.po index 6a728a0849b..6cc64e8fd6f 100644 --- a/addons/portal_crm/i18n/de.po +++ b/addons/portal_crm/i18n/de.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/es.po b/addons/portal_crm/i18n/es.po index a3196c5f36d..e6c0a16cb2f 100644 --- a/addons/portal_crm/i18n/es.po +++ b/addons/portal_crm/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/hr.po b/addons/portal_crm/i18n/hr.po index 2dfbb7df107..bd10acdc270 100644 --- a/addons/portal_crm/i18n/hr.po +++ b/addons/portal_crm/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/hu.po b/addons/portal_crm/i18n/hu.po index 927eb5c3096..5f83ea619f4 100644 --- a/addons/portal_crm/i18n/hu.po +++ b/addons/portal_crm/i18n/hu.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/mk.po b/addons/portal_crm/i18n/mk.po index 4b2b09bd132..0acff6580f8 100644 --- a/addons/portal_crm/i18n/mk.po +++ b/addons/portal_crm/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/nl.po b/addons/portal_crm/i18n/nl.po index 727809c80fd..f8b63079e6f 100644 --- a/addons/portal_crm/i18n/nl.po +++ b/addons/portal_crm/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/pl.po b/addons/portal_crm/i18n/pl.po index 47b5504d9a5..be7fe497c2d 100644 --- a/addons/portal_crm/i18n/pl.po +++ b/addons/portal_crm/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/pt.po b/addons/portal_crm/i18n/pt.po index 2b81762415d..fb4331f8de8 100644 --- a/addons/portal_crm/i18n/pt.po +++ b/addons/portal_crm/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/pt_BR.po b/addons/portal_crm/i18n/pt_BR.po index 79a89dbbf5a..dc04de5be97 100644 --- a/addons/portal_crm/i18n/pt_BR.po +++ b/addons/portal_crm/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/ro.po b/addons/portal_crm/i18n/ro.po index 53140a5f284..22b8087ae7e 100644 --- a/addons/portal_crm/i18n/ro.po +++ b/addons/portal_crm/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/sl.po b/addons/portal_crm/i18n/sl.po index 0718d744f5d..00d9762d737 100644 --- a/addons/portal_crm/i18n/sl.po +++ b/addons/portal_crm/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/sv.po b/addons/portal_crm/i18n/sv.po index b289c446ddc..255524d6152 100644 --- a/addons/portal_crm/i18n/sv.po +++ b/addons/portal_crm/i18n/sv.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/tr.po b/addons/portal_crm/i18n/tr.po index 27ec4bbabef..722ad8c4935 100644 --- a/addons/portal_crm/i18n/tr.po +++ b/addons/portal_crm/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/zh_CN.po b/addons/portal_crm/i18n/zh_CN.po index 58f1c5b2be5..0a827c314dd 100644 --- a/addons/portal_crm/i18n/zh_CN.po +++ b/addons/portal_crm/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_crm diff --git a/addons/portal_event/i18n/cs.po b/addons/portal_event/i18n/cs.po index 7190d921c85..c22e0d843fa 100644 --- a/addons/portal_event/i18n/cs.po +++ b/addons/portal_event/i18n/cs.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_event/i18n/de.po b/addons/portal_event/i18n/de.po index c4f6f56a311..5e7fe5f1b0d 100644 --- a/addons/portal_event/i18n/de.po +++ b/addons/portal_event/i18n/de.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_event/i18n/es.po b/addons/portal_event/i18n/es.po index d872163a2d8..ea44e22838f 100644 --- a/addons/portal_event/i18n/es.po +++ b/addons/portal_event/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_event/i18n/hr.po b/addons/portal_event/i18n/hr.po index 599b4140aaf..b9a785cd7d8 100644 --- a/addons/portal_event/i18n/hr.po +++ b/addons/portal_event/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_event/i18n/hu.po b/addons/portal_event/i18n/hu.po index d2714fc2b50..f0128592d86 100644 --- a/addons/portal_event/i18n/hu.po +++ b/addons/portal_event/i18n/hu.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_event/i18n/mk.po b/addons/portal_event/i18n/mk.po index 2a5f62168c6..4d15cf3e39b 100644 --- a/addons/portal_event/i18n/mk.po +++ b/addons/portal_event/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_event/i18n/nl.po b/addons/portal_event/i18n/nl.po index ab1c85a9a31..828b9bdf74d 100644 --- a/addons/portal_event/i18n/nl.po +++ b/addons/portal_event/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_event/i18n/pt.po b/addons/portal_event/i18n/pt.po index f208e0a432d..bfe867786e1 100644 --- a/addons/portal_event/i18n/pt.po +++ b/addons/portal_event/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_event/i18n/pt_BR.po b/addons/portal_event/i18n/pt_BR.po index 2dce816871f..4616be66b79 100644 --- a/addons/portal_event/i18n/pt_BR.po +++ b/addons/portal_event/i18n/pt_BR.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_event/i18n/ro.po b/addons/portal_event/i18n/ro.po index 1139ac62ac7..88744811eb5 100644 --- a/addons/portal_event/i18n/ro.po +++ b/addons/portal_event/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_event/i18n/sl.po b/addons/portal_event/i18n/sl.po index 1bd5c0c601e..c86e2773b14 100644 --- a/addons/portal_event/i18n/sl.po +++ b/addons/portal_event/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_event/i18n/sv.po b/addons/portal_event/i18n/sv.po index 00f3ba3f7fd..51257d4a42f 100644 --- a/addons/portal_event/i18n/sv.po +++ b/addons/portal_event/i18n/sv.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_event/i18n/tr.po b/addons/portal_event/i18n/tr.po index 9f4772eb891..7689e9cbf39 100644 --- a/addons/portal_event/i18n/tr.po +++ b/addons/portal_event/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_event/i18n/zh_CN.po b/addons/portal_event/i18n/zh_CN.po index bda8ebeef2b..81982c7c204 100644 --- a/addons/portal_event/i18n/zh_CN.po +++ b/addons/portal_event/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_event diff --git a/addons/portal_hr_employees/i18n/de.po b/addons/portal_hr_employees/i18n/de.po index 16e91f7ed74..b41613fd5b4 100644 --- a/addons/portal_hr_employees/i18n/de.po +++ b/addons/portal_hr_employees/i18n/de.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/es.po b/addons/portal_hr_employees/i18n/es.po index 9d8f94754aa..83a4cbb74c7 100644 --- a/addons/portal_hr_employees/i18n/es.po +++ b/addons/portal_hr_employees/i18n/es.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/hr.po b/addons/portal_hr_employees/i18n/hr.po index 54461c12466..6b340408c02 100644 --- a/addons/portal_hr_employees/i18n/hr.po +++ b/addons/portal_hr_employees/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/hu.po b/addons/portal_hr_employees/i18n/hu.po index ce1c1f2c1bb..88e78080539 100644 --- a/addons/portal_hr_employees/i18n/hu.po +++ b/addons/portal_hr_employees/i18n/hu.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/mk.po b/addons/portal_hr_employees/i18n/mk.po index 7a2e100dacc..0891812a27f 100644 --- a/addons/portal_hr_employees/i18n/mk.po +++ b/addons/portal_hr_employees/i18n/mk.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/nl.po b/addons/portal_hr_employees/i18n/nl.po index 26c9f16c7c7..da924c6055b 100644 --- a/addons/portal_hr_employees/i18n/nl.po +++ b/addons/portal_hr_employees/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/pl.po b/addons/portal_hr_employees/i18n/pl.po index 6ec6b777867..f339bfef263 100644 --- a/addons/portal_hr_employees/i18n/pl.po +++ b/addons/portal_hr_employees/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/pt.po b/addons/portal_hr_employees/i18n/pt.po index a33eaed2240..a1553aa407c 100644 --- a/addons/portal_hr_employees/i18n/pt.po +++ b/addons/portal_hr_employees/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/pt_BR.po b/addons/portal_hr_employees/i18n/pt_BR.po index 5f7f2015a32..3aa9d67cd26 100644 --- a/addons/portal_hr_employees/i18n/pt_BR.po +++ b/addons/portal_hr_employees/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/ro.po b/addons/portal_hr_employees/i18n/ro.po index a00887ec3dd..12f02e78a41 100644 --- a/addons/portal_hr_employees/i18n/ro.po +++ b/addons/portal_hr_employees/i18n/ro.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/sl.po b/addons/portal_hr_employees/i18n/sl.po index 8e5c2623863..7e50a1da7c8 100644 --- a/addons/portal_hr_employees/i18n/sl.po +++ b/addons/portal_hr_employees/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/tr.po b/addons/portal_hr_employees/i18n/tr.po index 2db5d75a349..d33014501bc 100644 --- a/addons/portal_hr_employees/i18n/tr.po +++ b/addons/portal_hr_employees/i18n/tr.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/zh_CN.po b/addons/portal_hr_employees/i18n/zh_CN.po index 862fc397fe3..0bfea9e5c8d 100644 --- a/addons/portal_hr_employees/i18n/zh_CN.po +++ b/addons/portal_hr_employees/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_hr_employees diff --git a/addons/portal_project/i18n/cs.po b/addons/portal_project/i18n/cs.po index 95bbc92647a..7ca98be06b0 100644 --- a/addons/portal_project/i18n/cs.po +++ b/addons/portal_project/i18n/cs.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/de.po b/addons/portal_project/i18n/de.po index 1250feb0e29..519b90b5f58 100644 --- a/addons/portal_project/i18n/de.po +++ b/addons/portal_project/i18n/de.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/es.po b/addons/portal_project/i18n/es.po index 4090480e5f2..a9ecf8adbeb 100644 --- a/addons/portal_project/i18n/es.po +++ b/addons/portal_project/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/fr.po b/addons/portal_project/i18n/fr.po index cec28d45d4a..133fda2df2d 100644 --- a/addons/portal_project/i18n/fr.po +++ b/addons/portal_project/i18n/fr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/hr.po b/addons/portal_project/i18n/hr.po index 6ce8f776f2b..4e109b6306d 100644 --- a/addons/portal_project/i18n/hr.po +++ b/addons/portal_project/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/hu.po b/addons/portal_project/i18n/hu.po index e54a20ae776..6149d0bf1d1 100644 --- a/addons/portal_project/i18n/hu.po +++ b/addons/portal_project/i18n/hu.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/it.po b/addons/portal_project/i18n/it.po index 180b363038d..ce39be552e5 100644 --- a/addons/portal_project/i18n/it.po +++ b/addons/portal_project/i18n/it.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/mk.po b/addons/portal_project/i18n/mk.po index 2aad1143b3b..50e45da3de1 100644 --- a/addons/portal_project/i18n/mk.po +++ b/addons/portal_project/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/nl.po b/addons/portal_project/i18n/nl.po index b1369efdb8d..df4feafe354 100644 --- a/addons/portal_project/i18n/nl.po +++ b/addons/portal_project/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/pl.po b/addons/portal_project/i18n/pl.po index 3d725a6cdb3..8589cbea621 100644 --- a/addons/portal_project/i18n/pl.po +++ b/addons/portal_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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/pt.po b/addons/portal_project/i18n/pt.po index 24e6ddd2816..d2af4280155 100644 --- a/addons/portal_project/i18n/pt.po +++ b/addons/portal_project/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/pt_BR.po b/addons/portal_project/i18n/pt_BR.po index 39a98c83f24..e618d379429 100644 --- a/addons/portal_project/i18n/pt_BR.po +++ b/addons/portal_project/i18n/pt_BR.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/ro.po b/addons/portal_project/i18n/ro.po index 59c9447391d..70e8485a7e8 100644 --- a/addons/portal_project/i18n/ro.po +++ b/addons/portal_project/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/sl.po b/addons/portal_project/i18n/sl.po index d1326680e05..8eb4ed6d415 100644 --- a/addons/portal_project/i18n/sl.po +++ b/addons/portal_project/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/sv.po b/addons/portal_project/i18n/sv.po index 5c6dbfd9c2b..fe80f1922e3 100644 --- a/addons/portal_project/i18n/sv.po +++ b/addons/portal_project/i18n/sv.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/tr.po b/addons/portal_project/i18n/tr.po index 6e42a20d09d..57f4d1c66dc 100644 --- a/addons/portal_project/i18n/tr.po +++ b/addons/portal_project/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project/i18n/zh_CN.po b/addons/portal_project/i18n/zh_CN.po index fc7cb784fa7..79c6ab7148c 100644 --- a/addons/portal_project/i18n/zh_CN.po +++ b/addons/portal_project/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project diff --git a/addons/portal_project_issue/i18n/cs.po b/addons/portal_project_issue/i18n/cs.po index a92f0e2ac1f..2d66143f0ab 100644 --- a/addons/portal_project_issue/i18n/cs.po +++ b/addons/portal_project_issue/i18n/cs.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/de.po b/addons/portal_project_issue/i18n/de.po index 0cb3496d331..c8ca00d0795 100644 --- a/addons/portal_project_issue/i18n/de.po +++ b/addons/portal_project_issue/i18n/de.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/es.po b/addons/portal_project_issue/i18n/es.po index 6b790a44e9a..e08234ce214 100644 --- a/addons/portal_project_issue/i18n/es.po +++ b/addons/portal_project_issue/i18n/es.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/hr.po b/addons/portal_project_issue/i18n/hr.po index b57eb610ebd..3596a8a483e 100644 --- a/addons/portal_project_issue/i18n/hr.po +++ b/addons/portal_project_issue/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/hu.po b/addons/portal_project_issue/i18n/hu.po index 3dfdd653e10..b21c348c674 100644 --- a/addons/portal_project_issue/i18n/hu.po +++ b/addons/portal_project_issue/i18n/hu.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/it.po b/addons/portal_project_issue/i18n/it.po index bad69f84e62..994e0d4cb1c 100644 --- a/addons/portal_project_issue/i18n/it.po +++ b/addons/portal_project_issue/i18n/it.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/mk.po b/addons/portal_project_issue/i18n/mk.po index aa975989b9c..cd4c623525e 100644 --- a/addons/portal_project_issue/i18n/mk.po +++ b/addons/portal_project_issue/i18n/mk.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/nl.po b/addons/portal_project_issue/i18n/nl.po index 7643eaa8b96..1cb9ac0a0f9 100644 --- a/addons/portal_project_issue/i18n/nl.po +++ b/addons/portal_project_issue/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/pl.po b/addons/portal_project_issue/i18n/pl.po index 91f347e3070..41abd89a248 100644 --- a/addons/portal_project_issue/i18n/pl.po +++ b/addons/portal_project_issue/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/pt.po b/addons/portal_project_issue/i18n/pt.po index 6a361d942b1..88f5b57e736 100644 --- a/addons/portal_project_issue/i18n/pt.po +++ b/addons/portal_project_issue/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/pt_BR.po b/addons/portal_project_issue/i18n/pt_BR.po index 452999b9f8f..8335cf729ae 100644 --- a/addons/portal_project_issue/i18n/pt_BR.po +++ b/addons/portal_project_issue/i18n/pt_BR.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/ro.po b/addons/portal_project_issue/i18n/ro.po index 736e720c5f2..5ec23201fc7 100644 --- a/addons/portal_project_issue/i18n/ro.po +++ b/addons/portal_project_issue/i18n/ro.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/sl.po b/addons/portal_project_issue/i18n/sl.po index 8d84ede686b..6369406b099 100644 --- a/addons/portal_project_issue/i18n/sl.po +++ b/addons/portal_project_issue/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/sv.po b/addons/portal_project_issue/i18n/sv.po index 34a9ca09464..24f4e4be836 100644 --- a/addons/portal_project_issue/i18n/sv.po +++ b/addons/portal_project_issue/i18n/sv.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/tr.po b/addons/portal_project_issue/i18n/tr.po index a6d5b23ea50..9aad41046a3 100644 --- a/addons/portal_project_issue/i18n/tr.po +++ b/addons/portal_project_issue/i18n/tr.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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_project_issue/i18n/zh_CN.po b/addons/portal_project_issue/i18n/zh_CN.po index b15b7670653..94ffc1d95b4 100644 --- a/addons/portal_project_issue/i18n/zh_CN.po +++ b/addons/portal_project_issue/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-03-15 05:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_project_issue diff --git a/addons/portal_sale/i18n/cs.po b/addons/portal_sale/i18n/cs.po index 09c679e9fe0..bc224e6251d 100644 --- a/addons/portal_sale/i18n/cs.po +++ b/addons/portal_sale/i18n/cs.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/de.po b/addons/portal_sale/i18n/de.po index a80d10c756b..0e3adac629a 100644 --- a/addons/portal_sale/i18n/de.po +++ b/addons/portal_sale/i18n/de.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/es.po b/addons/portal_sale/i18n/es.po index 8334b599467..b38acfd8b2b 100644 --- a/addons/portal_sale/i18n/es.po +++ b/addons/portal_sale/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/fi.po b/addons/portal_sale/i18n/fi.po index c1a64d1e976..57123f3811d 100644 --- a/addons/portal_sale/i18n/fi.po +++ b/addons/portal_sale/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/fr.po b/addons/portal_sale/i18n/fr.po index cec8e60550a..77371c2d660 100644 --- a/addons/portal_sale/i18n/fr.po +++ b/addons/portal_sale/i18n/fr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/hr.po b/addons/portal_sale/i18n/hr.po index 995f14e5b82..9e349ef7d5a 100644 --- a/addons/portal_sale/i18n/hr.po +++ b/addons/portal_sale/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/hu.po b/addons/portal_sale/i18n/hu.po index 20f333fcb37..f1a6c4aa210 100644 --- a/addons/portal_sale/i18n/hu.po +++ b/addons/portal_sale/i18n/hu.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/mk.po b/addons/portal_sale/i18n/mk.po index 7caba4c4a2c..3578def5823 100644 --- a/addons/portal_sale/i18n/mk.po +++ b/addons/portal_sale/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/mn.po b/addons/portal_sale/i18n/mn.po index c40167d6310..985216d10aa 100644 --- a/addons/portal_sale/i18n/mn.po +++ b/addons/portal_sale/i18n/mn.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/nl.po b/addons/portal_sale/i18n/nl.po index 34429a3adcd..4b498d95320 100644 --- a/addons/portal_sale/i18n/nl.po +++ b/addons/portal_sale/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/pl.po b/addons/portal_sale/i18n/pl.po index a68dd327831..835628ce69f 100644 --- a/addons/portal_sale/i18n/pl.po +++ b/addons/portal_sale/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/pt.po b/addons/portal_sale/i18n/pt.po index 9d92d22bacc..cc312140564 100644 --- a/addons/portal_sale/i18n/pt.po +++ b/addons/portal_sale/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/pt_BR.po b/addons/portal_sale/i18n/pt_BR.po index 7bad371302e..7fb3d30838c 100644 --- a/addons/portal_sale/i18n/pt_BR.po +++ b/addons/portal_sale/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/ro.po b/addons/portal_sale/i18n/ro.po index c7562c62192..8c1e35ef9e5 100644 --- a/addons/portal_sale/i18n/ro.po +++ b/addons/portal_sale/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/sl.po b/addons/portal_sale/i18n/sl.po index 65660316e71..08cddf40da1 100644 --- a/addons/portal_sale/i18n/sl.po +++ b/addons/portal_sale/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/sv.po b/addons/portal_sale/i18n/sv.po index 0441b839fc4..690ef97935d 100644 --- a/addons/portal_sale/i18n/sv.po +++ b/addons/portal_sale/i18n/sv.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/tr.po b/addons/portal_sale/i18n/tr.po index 2f86f28d6b3..819da3d7f2e 100644 --- a/addons/portal_sale/i18n/tr.po +++ b/addons/portal_sale/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/zh_CN.po b/addons/portal_sale/i18n/zh_CN.po index bfe7625ce81..f38558ae35c 100644 --- a/addons/portal_sale/i18n/zh_CN.po +++ b/addons/portal_sale/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: portal_sale diff --git a/addons/process/i18n/ar.po b/addons/process/i18n/ar.po index 8d15a500bfc..1f7692dc7e6 100644 --- a/addons/process/i18n/ar.po +++ b/addons/process/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/bg.po b/addons/process/i18n/bg.po index 9ffc446608d..65a027b7f40 100644 --- a/addons/process/i18n/bg.po +++ b/addons/process/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/bs.po b/addons/process/i18n/bs.po index bf130b9b1e5..8ce33ba8af6 100644 --- a/addons/process/i18n/bs.po +++ b/addons/process/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/ca.po b/addons/process/i18n/ca.po index 1319b010e68..bd2b6aa975f 100644 --- a/addons/process/i18n/ca.po +++ b/addons/process/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/cs.po b/addons/process/i18n/cs.po index eeb99335f7d..ee025600690 100644 --- a/addons/process/i18n/cs.po +++ b/addons/process/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/process/i18n/da.po b/addons/process/i18n/da.po index f2a99192b37..83111729ee8 100644 --- a/addons/process/i18n/da.po +++ b/addons/process/i18n/da.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/de.po b/addons/process/i18n/de.po index 01f71a23d0e..5b5bf3c954b 100644 --- a/addons/process/i18n/de.po +++ b/addons/process/i18n/de.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/el.po b/addons/process/i18n/el.po index a2518dd6356..543a7f65bc7 100644 --- a/addons/process/i18n/el.po +++ b/addons/process/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/process/i18n/es.po b/addons/process/i18n/es.po index 5576db559fc..6b8cc832741 100644 --- a/addons/process/i18n/es.po +++ b/addons/process/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/es_AR.po b/addons/process/i18n/es_AR.po index e550c91454d..37ab2b413c5 100644 --- a/addons/process/i18n/es_AR.po +++ b/addons/process/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/es_CL.po b/addons/process/i18n/es_CL.po index 1f759dd1d5a..76da9c23682 100644 --- a/addons/process/i18n/es_CL.po +++ b/addons/process/i18n/es_CL.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/es_CR.po b/addons/process/i18n/es_CR.po index 8445a36977c..8e7fc1d9eec 100644 --- a/addons/process/i18n/es_CR.po +++ b/addons/process/i18n/es_CR.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/process/i18n/et.po b/addons/process/i18n/et.po index 89e2b87f1d2..f05621db1bf 100644 --- a/addons/process/i18n/et.po +++ b/addons/process/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/fi.po b/addons/process/i18n/fi.po index d427751736c..05fa6292479 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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/fr.po b/addons/process/i18n/fr.po index bb654215b5d..1accb844a56 100644 --- a/addons/process/i18n/fr.po +++ b/addons/process/i18n/fr.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/gl.po b/addons/process/i18n/gl.po index 38261cd5994..67eb9392055 100644 --- a/addons/process/i18n/gl.po +++ b/addons/process/i18n/gl.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/hi.po b/addons/process/i18n/hi.po index cb5a38cf723..172bd32c148 100644 --- a/addons/process/i18n/hi.po +++ b/addons/process/i18n/hi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/hr.po b/addons/process/i18n/hr.po index cfa5ac30f45..2e7847b76a9 100644 --- a/addons/process/i18n/hr.po +++ b/addons/process/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/process/i18n/hu.po b/addons/process/i18n/hu.po index 74f26ec807b..f7834e90619 100644 --- a/addons/process/i18n/hu.po +++ b/addons/process/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/id.po b/addons/process/i18n/id.po index 83d82c43ff8..b3bd544a86c 100644 --- a/addons/process/i18n/id.po +++ b/addons/process/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/it.po b/addons/process/i18n/it.po index 5208936b77f..6bca4123264 100644 --- a/addons/process/i18n/it.po +++ b/addons/process/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/ja.po b/addons/process/i18n/ja.po index d782fbd0807..7b6e633fa71 100644 --- a/addons/process/i18n/ja.po +++ b/addons/process/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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/ko.po b/addons/process/i18n/ko.po index 41b394c1d3b..a77ff4fe649 100644 --- a/addons/process/i18n/ko.po +++ b/addons/process/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/lt.po b/addons/process/i18n/lt.po index 3935e8bb156..b244de9ec95 100644 --- a/addons/process/i18n/lt.po +++ b/addons/process/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/mk.po b/addons/process/i18n/mk.po index 2bef38ea889..536d81640e5 100644 --- a/addons/process/i18n/mk.po +++ b/addons/process/i18n/mk.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/mn.po b/addons/process/i18n/mn.po index 88419f88ad0..d94fbd65da2 100644 --- a/addons/process/i18n/mn.po +++ b/addons/process/i18n/mn.po @@ -20,7 +20,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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/nl.po b/addons/process/i18n/nl.po index d6ea0247158..4a1d7248e46 100644 --- a/addons/process/i18n/nl.po +++ b/addons/process/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/nl_BE.po b/addons/process/i18n/nl_BE.po index 429273d4c09..5a2fcb5242e 100644 --- a/addons/process/i18n/nl_BE.po +++ b/addons/process/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/pl.po b/addons/process/i18n/pl.po index cc5e719ac6e..54ece5bd4bd 100644 --- a/addons/process/i18n/pl.po +++ b/addons/process/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/pt.po b/addons/process/i18n/pt.po index 6c735d25284..b2250ec03ef 100644 --- a/addons/process/i18n/pt.po +++ b/addons/process/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/pt_BR.po b/addons/process/i18n/pt_BR.po index f85138e1ff5..6d54923c11a 100644 --- a/addons/process/i18n/pt_BR.po +++ b/addons/process/i18n/pt_BR.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/ro.po b/addons/process/i18n/ro.po index aef9daa498d..ec3b2b2194f 100644 --- a/addons/process/i18n/ro.po +++ b/addons/process/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/ru.po b/addons/process/i18n/ru.po index 986b945a95f..e31bdbbd34e 100644 --- a/addons/process/i18n/ru.po +++ b/addons/process/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/sk.po b/addons/process/i18n/sk.po index cd5cf02b4da..fb680315292 100644 --- a/addons/process/i18n/sk.po +++ b/addons/process/i18n/sk.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/sl.po b/addons/process/i18n/sl.po index 979159818fe..0307771e53b 100644 --- a/addons/process/i18n/sl.po +++ b/addons/process/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/sq.po b/addons/process/i18n/sq.po index 04b8c8f976a..495889b2439 100644 --- a/addons/process/i18n/sq.po +++ b/addons/process/i18n/sq.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/sr.po b/addons/process/i18n/sr.po index bf480a47da7..c122d698c87 100644 --- a/addons/process/i18n/sr.po +++ b/addons/process/i18n/sr.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/sr@latin.po b/addons/process/i18n/sr@latin.po index f1ad2b54e45..35c7424ed56 100644 --- a/addons/process/i18n/sr@latin.po +++ b/addons/process/i18n/sr@latin.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/sv.po b/addons/process/i18n/sv.po index d10bbe03eb7..bba8ff562aa 100644 --- a/addons/process/i18n/sv.po +++ b/addons/process/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/tlh.po b/addons/process/i18n/tlh.po index 3fe7708e9cd..dcd3f3909d7 100644 --- a/addons/process/i18n/tlh.po +++ b/addons/process/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/tr.po b/addons/process/i18n/tr.po index 416323e1028..2cc2de5b4ce 100644 --- a/addons/process/i18n/tr.po +++ b/addons/process/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/uk.po b/addons/process/i18n/uk.po index 1d2918d8810..f6a31895e3f 100644 --- a/addons/process/i18n/uk.po +++ b/addons/process/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/vi.po b/addons/process/i18n/vi.po index 1184e89ab47..43de5607dc2 100644 --- a/addons/process/i18n/vi.po +++ b/addons/process/i18n/vi.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/zh_CN.po b/addons/process/i18n/zh_CN.po index b4a0599e31e..059a9e67640 100644 --- a/addons/process/i18n/zh_CN.po +++ b/addons/process/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/process/i18n/zh_TW.po b/addons/process/i18n/zh_TW.po index 7b79e14d3a8..41a3938ac0d 100644 --- a/addons/process/i18n/zh_TW.po +++ b/addons/process/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: process diff --git a/addons/procurement/i18n/ar.po b/addons/procurement/i18n/ar.po index 0e705fa8865..a24423e959b 100644 --- a/addons/procurement/i18n/ar.po +++ b/addons/procurement/i18n/ar.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/bg.po b/addons/procurement/i18n/bg.po index c1d8d26e5ea..be4610ebde8 100644 --- a/addons/procurement/i18n/bg.po +++ b/addons/procurement/i18n/bg.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/ca.po b/addons/procurement/i18n/ca.po index acfdb59216a..e1c14b1cfd9 100644 --- a/addons/procurement/i18n/ca.po +++ b/addons/procurement/i18n/ca.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/cs.po b/addons/procurement/i18n/cs.po index dff03c827f7..f8f71f1fc30 100644 --- a/addons/procurement/i18n/cs.po +++ b/addons/procurement/i18n/cs.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/procurement/i18n/da.po b/addons/procurement/i18n/da.po index 904f712d289..40a12c73ccd 100644 --- a/addons/procurement/i18n/da.po +++ b/addons/procurement/i18n/da.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/de.po b/addons/procurement/i18n/de.po index 2b7481aacc2..a67f2c9a608 100644 --- a/addons/procurement/i18n/de.po +++ b/addons/procurement/i18n/de.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/es.po b/addons/procurement/i18n/es.po index 2685bd4c956..5d67aebe821 100644 --- a/addons/procurement/i18n/es.po +++ b/addons/procurement/i18n/es.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/es_CL.po b/addons/procurement/i18n/es_CL.po index a08d23e47b0..d512a103fc2 100644 --- a/addons/procurement/i18n/es_CL.po +++ b/addons/procurement/i18n/es_CL.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/es_CR.po b/addons/procurement/i18n/es_CR.po index eb94f078e2e..1295f308445 100644 --- a/addons/procurement/i18n/es_CR.po +++ b/addons/procurement/i18n/es_CR.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/procurement/i18n/es_EC.po b/addons/procurement/i18n/es_EC.po index c9bdf8b807c..245d69288a2 100644 --- a/addons/procurement/i18n/es_EC.po +++ b/addons/procurement/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/et.po b/addons/procurement/i18n/et.po index 8de61149108..8c97445c1f6 100644 --- a/addons/procurement/i18n/et.po +++ b/addons/procurement/i18n/et.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/fi.po b/addons/procurement/i18n/fi.po index f2222d1096c..1370b4670bd 100644 --- a/addons/procurement/i18n/fi.po +++ b/addons/procurement/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/fr.po b/addons/procurement/i18n/fr.po index 5bcde26c90b..2be094c0b57 100644 --- a/addons/procurement/i18n/fr.po +++ b/addons/procurement/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/gl.po b/addons/procurement/i18n/gl.po index 77428787d5b..5191b8d9568 100644 --- a/addons/procurement/i18n/gl.po +++ b/addons/procurement/i18n/gl.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/hr.po b/addons/procurement/i18n/hr.po index 4669a154c8f..b885d042c6a 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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/hu.po b/addons/procurement/i18n/hu.po index 001c1008414..18b0563a58f 100644 --- a/addons/procurement/i18n/hu.po +++ b/addons/procurement/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/id.po b/addons/procurement/i18n/id.po index f10177c0260..2c3c4565cb7 100644 --- a/addons/procurement/i18n/id.po +++ b/addons/procurement/i18n/id.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/it.po b/addons/procurement/i18n/it.po index fc523f22951..ecc26fb13af 100644 --- a/addons/procurement/i18n/it.po +++ b/addons/procurement/i18n/it.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/ja.po b/addons/procurement/i18n/ja.po index 31911d0bdcc..e49539c61ec 100644 --- a/addons/procurement/i18n/ja.po +++ b/addons/procurement/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/mk.po b/addons/procurement/i18n/mk.po index deca9e3d4fb..be550a164e7 100644 --- a/addons/procurement/i18n/mk.po +++ b/addons/procurement/i18n/mk.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/mn.po b/addons/procurement/i18n/mn.po index da2c70b7e8b..874d74baa08 100644 --- a/addons/procurement/i18n/mn.po +++ b/addons/procurement/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/nb.po b/addons/procurement/i18n/nb.po index c0562a73e70..dd61e82b52f 100644 --- a/addons/procurement/i18n/nb.po +++ b/addons/procurement/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/nl.po b/addons/procurement/i18n/nl.po index ee840b676e6..1719874a326 100644 --- a/addons/procurement/i18n/nl.po +++ b/addons/procurement/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement @@ -961,7 +961,7 @@ msgstr "In behandeling" #: selection:procurement.order,procure_method:0 #: selection:product.template,procure_method:0 msgid "Make to Order" -msgstr "Op order maken" +msgstr "Maak op order" #. module: procurement #: field:product.template,supply_method:0 diff --git a/addons/procurement/i18n/pl.po b/addons/procurement/i18n/pl.po index dafdae6533a..ea91858efde 100644 --- a/addons/procurement/i18n/pl.po +++ b/addons/procurement/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/pt.po b/addons/procurement/i18n/pt.po index 9f950c16393..676f953b178 100644 --- a/addons/procurement/i18n/pt.po +++ b/addons/procurement/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/pt_BR.po b/addons/procurement/i18n/pt_BR.po index 401a9e95948..626e66dc827 100644 --- a/addons/procurement/i18n/pt_BR.po +++ b/addons/procurement/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/ro.po b/addons/procurement/i18n/ro.po index 0656c9f6a87..e6126a138af 100644 --- a/addons/procurement/i18n/ro.po +++ b/addons/procurement/i18n/ro.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/ru.po b/addons/procurement/i18n/ru.po index 008521cca46..4111eaad423 100644 --- a/addons/procurement/i18n/ru.po +++ b/addons/procurement/i18n/ru.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/sl.po b/addons/procurement/i18n/sl.po index 7ff64eae0f7..559066723ec 100644 --- a/addons/procurement/i18n/sl.po +++ b/addons/procurement/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/sr.po b/addons/procurement/i18n/sr.po index ef54c83d624..19c9a153d23 100644 --- a/addons/procurement/i18n/sr.po +++ b/addons/procurement/i18n/sr.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/sr@latin.po b/addons/procurement/i18n/sr@latin.po index 7e90fd95c91..81e71fa6935 100644 --- a/addons/procurement/i18n/sr@latin.po +++ b/addons/procurement/i18n/sr@latin.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/sv.po b/addons/procurement/i18n/sv.po index 81fac70fdba..39034dedf70 100644 --- a/addons/procurement/i18n/sv.po +++ b/addons/procurement/i18n/sv.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/tr.po b/addons/procurement/i18n/tr.po index 9cdc3470fd8..f031f875cbd 100644 --- a/addons/procurement/i18n/tr.po +++ b/addons/procurement/i18n/tr.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/vi.po b/addons/procurement/i18n/vi.po index 59580534b33..9648fb9985c 100644 --- a/addons/procurement/i18n/vi.po +++ b/addons/procurement/i18n/vi.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/procurement/i18n/zh_CN.po b/addons/procurement/i18n/zh_CN.po index 1ad687be46b..ea20397806a 100644 --- a/addons/procurement/i18n/zh_CN.po +++ b/addons/procurement/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: procurement diff --git a/addons/product/i18n/ar.po b/addons/product/i18n/ar.po index 5c1bd4f332b..c5b75391c4e 100644 --- a/addons/product/i18n/ar.po +++ b/addons/product/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/bg.po b/addons/product/i18n/bg.po index c9383dc67bd..cfa17775148 100644 --- a/addons/product/i18n/bg.po +++ b/addons/product/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/bs.po b/addons/product/i18n/bs.po index 0882e073e27..f55882837b5 100644 --- a/addons/product/i18n/bs.po +++ b/addons/product/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/ca.po b/addons/product/i18n/ca.po index fca01efae2e..24e22dde43a 100644 --- a/addons/product/i18n/ca.po +++ b/addons/product/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/cs.po b/addons/product/i18n/cs.po index 770ff3c60ea..4e3e3e8fbe7 100644 --- a/addons/product/i18n/cs.po +++ b/addons/product/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/product/i18n/da.po b/addons/product/i18n/da.po index 5171d24a660..6b278cc344e 100644 --- a/addons/product/i18n/da.po +++ b/addons/product/i18n/da.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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/de.po b/addons/product/i18n/de.po index b8ea5d3b4b7..81d59abd1c2 100644 --- a/addons/product/i18n/de.po +++ b/addons/product/i18n/de.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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/el.po b/addons/product/i18n/el.po index 0a92bab5eb5..d0aa5cb6830 100644 --- a/addons/product/i18n/el.po +++ b/addons/product/i18n/el.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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/es.po b/addons/product/i18n/es.po index bfdcfe31295..aa32576d9c3 100644 --- a/addons/product/i18n/es.po +++ b/addons/product/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/es_AR.po b/addons/product/i18n/es_AR.po index f9fc2a9f1a0..71a05975374 100644 --- a/addons/product/i18n/es_AR.po +++ b/addons/product/i18n/es_AR.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-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/es_CL.po b/addons/product/i18n/es_CL.po index 2968fe4f32c..06b05aa2784 100644 --- a/addons/product/i18n/es_CL.po +++ b/addons/product/i18n/es_CL.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/es_CR.po b/addons/product/i18n/es_CR.po index 4398c75c9b2..d4b11e03e1a 100644 --- a/addons/product/i18n/es_CR.po +++ b/addons/product/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/product/i18n/es_EC.po b/addons/product/i18n/es_EC.po index 721376dc791..d16e610cf60 100644 --- a/addons/product/i18n/es_EC.po +++ b/addons/product/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/es_PY.po b/addons/product/i18n/es_PY.po index 3b5c030bef0..5b5acd7dced 100644 --- a/addons/product/i18n/es_PY.po +++ b/addons/product/i18n/es_PY.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/et.po b/addons/product/i18n/et.po index 6518fe434ee..4e438b054d6 100644 --- a/addons/product/i18n/et.po +++ b/addons/product/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #, python-format diff --git a/addons/product/i18n/eu.po b/addons/product/i18n/eu.po index 22b4751422c..cd1468a808b 100644 --- a/addons/product/i18n/eu.po +++ b/addons/product/i18n/eu.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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/fi.po b/addons/product/i18n/fi.po index 15ddf9ebbb2..3543b011170 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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/fr.po b/addons/product/i18n/fr.po index 695a08e6727..6b16e493d9c 100644 --- a/addons/product/i18n/fr.po +++ b/addons/product/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #~ msgid "Second UoM" diff --git a/addons/product/i18n/gl.po b/addons/product/i18n/gl.po index 8d4a7ff8122..d69526fe4cd 100644 --- a/addons/product/i18n/gl.po +++ b/addons/product/i18n/gl.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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/hr.po b/addons/product/i18n/hr.po index b7f5cce926a..3e835cda24f 100644 --- a/addons/product/i18n/hr.po +++ b/addons/product/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/hu.po b/addons/product/i18n/hu.po index 36138d95fe7..26798d1563f 100644 --- a/addons/product/i18n/hu.po +++ b/addons/product/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/id.po b/addons/product/i18n/id.po index f030a270089..f0ef4cfd6ba 100644 --- a/addons/product/i18n/id.po +++ b/addons/product/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/it.po b/addons/product/i18n/it.po index 467990720d0..37dc6aeddb6 100644 --- a/addons/product/i18n/it.po +++ b/addons/product/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/ja.po b/addons/product/i18n/ja.po index 11b3b997420..b9d6beac239 100644 --- a/addons/product/i18n/ja.po +++ b/addons/product/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-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/ko.po b/addons/product/i18n/ko.po index 6f277847f13..363d7982387 100644 --- a/addons/product/i18n/ko.po +++ b/addons/product/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/lo.po b/addons/product/i18n/lo.po index 6d911f6bfc9..308aaeb3e72 100644 --- a/addons/product/i18n/lo.po +++ b/addons/product/i18n/lo.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-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/lt.po b/addons/product/i18n/lt.po index a52de7f5db0..531f1a68412 100644 --- a/addons/product/i18n/lt.po +++ b/addons/product/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: lt\n" diff --git a/addons/product/i18n/lv.po b/addons/product/i18n/lv.po index 2660a49a5af..26efdf14ba1 100644 --- a/addons/product/i18n/lv.po +++ b/addons/product/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/mk.po b/addons/product/i18n/mk.po index a5c7a9685b2..a4479823465 100644 --- a/addons/product/i18n/mk.po +++ b/addons/product/i18n/mk.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-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/mn.po b/addons/product/i18n/mn.po index 5388dd75e82..6f1f9aeebae 100644 --- a/addons/product/i18n/mn.po +++ b/addons/product/i18n/mn.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-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/nb.po b/addons/product/i18n/nb.po index 34a99c6b944..e3b8945213a 100644 --- a/addons/product/i18n/nb.po +++ b/addons/product/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/nl.po b/addons/product/i18n/nl.po index a8ba925d1ab..aa740d6fd13 100644 --- a/addons/product/i18n/nl.po +++ b/addons/product/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/nl_BE.po b/addons/product/i18n/nl_BE.po index b4bcbf01037..e5ad468615d 100644 --- a/addons/product/i18n/nl_BE.po +++ b/addons/product/i18n/nl_BE.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-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: nl\n" diff --git a/addons/product/i18n/pl.po b/addons/product/i18n/pl.po index 5beca732be6..033b7d4f468 100644 --- a/addons/product/i18n/pl.po +++ b/addons/product/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/pt.po b/addons/product/i18n/pt.po index fe4f8c221b3..e7409de0f19 100644 --- a/addons/product/i18n/pt.po +++ b/addons/product/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/pt_BR.po b/addons/product/i18n/pt_BR.po index edfc0353bbd..fd5be6ed5e5 100644 --- a/addons/product/i18n/pt_BR.po +++ b/addons/product/i18n/pt_BR.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-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/ro.po b/addons/product/i18n/ro.po index 284ea43bbe6..954864e4a25 100644 --- a/addons/product/i18n/ro.po +++ b/addons/product/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/ru.po b/addons/product/i18n/ru.po index 84cf731740c..2ad9d0766de 100644 --- a/addons/product/i18n/ru.po +++ b/addons/product/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/sk.po b/addons/product/i18n/sk.po index 31d60f786b4..46572dbb6fe 100644 --- a/addons/product/i18n/sk.po +++ b/addons/product/i18n/sk.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-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/sl.po b/addons/product/i18n/sl.po index eb4295ccb24..5198a8e6688 100644 --- a/addons/product/i18n/sl.po +++ b/addons/product/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/sq.po b/addons/product/i18n/sq.po index 34e9140f194..a76a4b538da 100644 --- a/addons/product/i18n/sq.po +++ b/addons/product/i18n/sq.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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/sr.po b/addons/product/i18n/sr.po index 93750ddd323..f70d9c84eee 100644 --- a/addons/product/i18n/sr.po +++ b/addons/product/i18n/sr.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-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/sr@latin.po b/addons/product/i18n/sr@latin.po index 7e8e8f626dc..9c584d2e5d7 100644 --- a/addons/product/i18n/sr@latin.po +++ b/addons/product/i18n/sr@latin.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-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/sv.po b/addons/product/i18n/sv.po index 949fb4e1589..df35c5e43d7 100644 --- a/addons/product/i18n/sv.po +++ b/addons/product/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/th.po b/addons/product/i18n/th.po index e8925cefea7..288faf4d950 100644 --- a/addons/product/i18n/th.po +++ b/addons/product/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-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/tlh.po b/addons/product/i18n/tlh.po index 3cea7d44654..837475454a3 100644 --- a/addons/product/i18n/tlh.po +++ b/addons/product/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/tr.po b/addons/product/i18n/tr.po index b621ab69693..bc1e1caadea 100644 --- a/addons/product/i18n/tr.po +++ b/addons/product/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/uk.po b/addons/product/i18n/uk.po index ac35812c909..9b35b31f308 100644 --- a/addons/product/i18n/uk.po +++ b/addons/product/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/vi.po b/addons/product/i18n/vi.po index 09ed11d30a2..f8d536f64ec 100644 --- a/addons/product/i18n/vi.po +++ b/addons/product/i18n/vi.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-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:24+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/zh_CN.po b/addons/product/i18n/zh_CN.po index 77db812783e..bd28e914c5e 100644 --- a/addons/product/i18n/zh_CN.po +++ b/addons/product/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:26+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product/i18n/zh_TW.po b/addons/product/i18n/zh_TW.po index cf117fadf30..5c1e004a368 100644 --- a/addons/product/i18n/zh_TW.po +++ b/addons/product/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:25+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:25+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product diff --git a/addons/product_expiry/i18n/ar.po b/addons/product_expiry/i18n/ar.po index ba473bf7080..4c6a2647de4 100644 --- a/addons/product_expiry/i18n/ar.po +++ b/addons/product_expiry/i18n/ar.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/ca.po b/addons/product_expiry/i18n/ca.po index 909771c2d1f..8a0ebd2445d 100644 --- a/addons/product_expiry/i18n/ca.po +++ b/addons/product_expiry/i18n/ca.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/cs.po b/addons/product_expiry/i18n/cs.po index 8c6d3868479..8bb42372c3d 100644 --- a/addons/product_expiry/i18n/cs.po +++ b/addons/product_expiry/i18n/cs.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/da.po b/addons/product_expiry/i18n/da.po index 232c71e9532..d5f71bfa223 100644 --- a/addons/product_expiry/i18n/da.po +++ b/addons/product_expiry/i18n/da.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/de.po b/addons/product_expiry/i18n/de.po index 869042f4ccf..29b620ce040 100644 --- a/addons/product_expiry/i18n/de.po +++ b/addons/product_expiry/i18n/de.po @@ -15,7 +15,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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/el.po b/addons/product_expiry/i18n/el.po index 962c5ad69df..6fe81097056 100644 --- a/addons/product_expiry/i18n/el.po +++ b/addons/product_expiry/i18n/el.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/es.po b/addons/product_expiry/i18n/es.po index 2bae5a6f608..6f1bab0edf2 100644 --- a/addons/product_expiry/i18n/es.po +++ b/addons/product_expiry/i18n/es.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/es_CR.po b/addons/product_expiry/i18n/es_CR.po index a1293662f38..f16bd4ba1b3 100644 --- a/addons/product_expiry/i18n/es_CR.po +++ b/addons/product_expiry/i18n/es_CR.po @@ -15,7 +15,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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/product_expiry/i18n/es_EC.po b/addons/product_expiry/i18n/es_EC.po index c17d4101d6f..176f6307460 100644 --- a/addons/product_expiry/i18n/es_EC.po +++ b/addons/product_expiry/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/et.po b/addons/product_expiry/i18n/et.po index ba3e1cf683d..dbc7f5e11b0 100644 --- a/addons/product_expiry/i18n/et.po +++ b/addons/product_expiry/i18n/et.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/fi.po b/addons/product_expiry/i18n/fi.po index 061c65df282..36c29ddd961 100644 --- a/addons/product_expiry/i18n/fi.po +++ b/addons/product_expiry/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/fr.po b/addons/product_expiry/i18n/fr.po index eb0e18398d4..a53a15b3e4a 100644 --- a/addons/product_expiry/i18n/fr.po +++ b/addons/product_expiry/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/gl.po b/addons/product_expiry/i18n/gl.po index de2d1996975..1319ee9cfa2 100644 --- a/addons/product_expiry/i18n/gl.po +++ b/addons/product_expiry/i18n/gl.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/hr.po b/addons/product_expiry/i18n/hr.po index 43540784b5c..b9b11331bda 100644 --- a/addons/product_expiry/i18n/hr.po +++ b/addons/product_expiry/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/hu.po b/addons/product_expiry/i18n/hu.po index 25f5ab7ade0..a1f4c02c707 100644 --- a/addons/product_expiry/i18n/hu.po +++ b/addons/product_expiry/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/it.po b/addons/product_expiry/i18n/it.po index 42424669b54..ea73c92bb54 100644 --- a/addons/product_expiry/i18n/it.po +++ b/addons/product_expiry/i18n/it.po @@ -15,7 +15,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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/ja.po b/addons/product_expiry/i18n/ja.po index aaef03f11cc..3e43d568f57 100644 --- a/addons/product_expiry/i18n/ja.po +++ b/addons/product_expiry/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/mk.po b/addons/product_expiry/i18n/mk.po index 68a93d9fd16..d8bb1fc480b 100644 --- a/addons/product_expiry/i18n/mk.po +++ b/addons/product_expiry/i18n/mk.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/mn.po b/addons/product_expiry/i18n/mn.po index 6cde8cd0f5b..147dac01d11 100644 --- a/addons/product_expiry/i18n/mn.po +++ b/addons/product_expiry/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/nl.po b/addons/product_expiry/i18n/nl.po index 42a66fcbe08..43b2f98f29e 100644 --- a/addons/product_expiry/i18n/nl.po +++ b/addons/product_expiry/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/pl.po b/addons/product_expiry/i18n/pl.po index 975160e89bf..1d4b02a2b8b 100644 --- a/addons/product_expiry/i18n/pl.po +++ b/addons/product_expiry/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/pt.po b/addons/product_expiry/i18n/pt.po index 7024592dc1b..4817af270fb 100644 --- a/addons/product_expiry/i18n/pt.po +++ b/addons/product_expiry/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/pt_BR.po b/addons/product_expiry/i18n/pt_BR.po index e4fb79bf44a..d794622b4e3 100644 --- a/addons/product_expiry/i18n/pt_BR.po +++ b/addons/product_expiry/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/ro.po b/addons/product_expiry/i18n/ro.po index 5a4aa899f06..e4b3ca422af 100644 --- a/addons/product_expiry/i18n/ro.po +++ b/addons/product_expiry/i18n/ro.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/ru.po b/addons/product_expiry/i18n/ru.po index 61b2f81fd9e..2801ead58eb 100644 --- a/addons/product_expiry/i18n/ru.po +++ b/addons/product_expiry/i18n/ru.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/sl.po b/addons/product_expiry/i18n/sl.po index 88ae96d9a97..ee6534f5ac5 100644 --- a/addons/product_expiry/i18n/sl.po +++ b/addons/product_expiry/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/sr.po b/addons/product_expiry/i18n/sr.po index a29a0c67d62..a0776b81915 100644 --- a/addons/product_expiry/i18n/sr.po +++ b/addons/product_expiry/i18n/sr.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/sr@latin.po b/addons/product_expiry/i18n/sr@latin.po index 4bfa8c73c3d..d7336c0deb0 100644 --- a/addons/product_expiry/i18n/sr@latin.po +++ b/addons/product_expiry/i18n/sr@latin.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/sv.po b/addons/product_expiry/i18n/sv.po index a765e82529a..eff9a3182b4 100644 --- a/addons/product_expiry/i18n/sv.po +++ b/addons/product_expiry/i18n/sv.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/tr.po b/addons/product_expiry/i18n/tr.po index 5d29c806d68..8b7a50acba3 100644 --- a/addons/product_expiry/i18n/tr.po +++ b/addons/product_expiry/i18n/tr.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/vi.po b/addons/product_expiry/i18n/vi.po index 073db983d73..a74b0635fff 100644 --- a/addons/product_expiry/i18n/vi.po +++ b/addons/product_expiry/i18n/vi.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/zh_CN.po b/addons/product_expiry/i18n/zh_CN.po index 082ea0fd9c9..22544df2141 100644 --- a/addons/product_expiry/i18n/zh_CN.po +++ b/addons/product_expiry/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_expiry/i18n/zh_TW.po b/addons/product_expiry/i18n/zh_TW.po index 51077a2f8e4..074f2f847d1 100644 --- a/addons/product_expiry/i18n/zh_TW.po +++ b/addons/product_expiry/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_expiry diff --git a/addons/product_manufacturer/i18n/ar.po b/addons/product_manufacturer/i18n/ar.po index e2f24f5004d..0b80a144616 100644 --- a/addons/product_manufacturer/i18n/ar.po +++ b/addons/product_manufacturer/i18n/ar.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/bg.po b/addons/product_manufacturer/i18n/bg.po index aed34ff0eec..65b2ecea409 100644 --- a/addons/product_manufacturer/i18n/bg.po +++ b/addons/product_manufacturer/i18n/bg.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/ca.po b/addons/product_manufacturer/i18n/ca.po index 8e62f45c555..881bb191f9e 100644 --- a/addons/product_manufacturer/i18n/ca.po +++ b/addons/product_manufacturer/i18n/ca.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/cs.po b/addons/product_manufacturer/i18n/cs.po index d02d6e2fdff..b3603064860 100644 --- a/addons/product_manufacturer/i18n/cs.po +++ b/addons/product_manufacturer/i18n/cs.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/da.po b/addons/product_manufacturer/i18n/da.po index 628713a9730..f7c5c927233 100644 --- a/addons/product_manufacturer/i18n/da.po +++ b/addons/product_manufacturer/i18n/da.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/de.po b/addons/product_manufacturer/i18n/de.po index fdef9d8a45e..0deca57034d 100644 --- a/addons/product_manufacturer/i18n/de.po +++ b/addons/product_manufacturer/i18n/de.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/el.po b/addons/product_manufacturer/i18n/el.po index 1f20ce180dc..d7f97cf7731 100644 --- a/addons/product_manufacturer/i18n/el.po +++ b/addons/product_manufacturer/i18n/el.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/es.po b/addons/product_manufacturer/i18n/es.po index a1197aeeba3..44eddbed33a 100644 --- a/addons/product_manufacturer/i18n/es.po +++ b/addons/product_manufacturer/i18n/es.po @@ -15,7 +15,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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/es_CR.po b/addons/product_manufacturer/i18n/es_CR.po index 99bc2b558c2..5e561d5eb5b 100644 --- a/addons/product_manufacturer/i18n/es_CR.po +++ b/addons/product_manufacturer/i18n/es_CR.po @@ -15,7 +15,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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/product_manufacturer/i18n/es_EC.po b/addons/product_manufacturer/i18n/es_EC.po index 497d3cd6920..462697e5ad1 100644 --- a/addons/product_manufacturer/i18n/es_EC.po +++ b/addons/product_manufacturer/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/et.po b/addons/product_manufacturer/i18n/et.po index 8fe29893863..c3ad4a4dfad 100644 --- a/addons/product_manufacturer/i18n/et.po +++ b/addons/product_manufacturer/i18n/et.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/fi.po b/addons/product_manufacturer/i18n/fi.po index 03f2b9306c7..4cc9d3b3bb4 100644 --- a/addons/product_manufacturer/i18n/fi.po +++ b/addons/product_manufacturer/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/fr.po b/addons/product_manufacturer/i18n/fr.po index 5e3b824985d..2f889b9e4b6 100644 --- a/addons/product_manufacturer/i18n/fr.po +++ b/addons/product_manufacturer/i18n/fr.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/gl.po b/addons/product_manufacturer/i18n/gl.po index c87b8d831f8..7818ce416d7 100644 --- a/addons/product_manufacturer/i18n/gl.po +++ b/addons/product_manufacturer/i18n/gl.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/hr.po b/addons/product_manufacturer/i18n/hr.po index d5d847f99b8..286f1f1eda5 100644 --- a/addons/product_manufacturer/i18n/hr.po +++ b/addons/product_manufacturer/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/hu.po b/addons/product_manufacturer/i18n/hu.po index 989e7dbed88..9e9755a537a 100644 --- a/addons/product_manufacturer/i18n/hu.po +++ b/addons/product_manufacturer/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/it.po b/addons/product_manufacturer/i18n/it.po index 5c05035b813..73737637b33 100644 --- a/addons/product_manufacturer/i18n/it.po +++ b/addons/product_manufacturer/i18n/it.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/ja.po b/addons/product_manufacturer/i18n/ja.po index 817e236c4b2..473b7a1d26f 100644 --- a/addons/product_manufacturer/i18n/ja.po +++ b/addons/product_manufacturer/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/lt.po b/addons/product_manufacturer/i18n/lt.po index 37db67d0345..b989cffe2c6 100644 --- a/addons/product_manufacturer/i18n/lt.po +++ b/addons/product_manufacturer/i18n/lt.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/mk.po b/addons/product_manufacturer/i18n/mk.po index 1b1dd771a28..3a195c69d55 100644 --- a/addons/product_manufacturer/i18n/mk.po +++ b/addons/product_manufacturer/i18n/mk.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/mn.po b/addons/product_manufacturer/i18n/mn.po index 60c6d9402ca..881c6a16f00 100644 --- a/addons/product_manufacturer/i18n/mn.po +++ b/addons/product_manufacturer/i18n/mn.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/nb.po b/addons/product_manufacturer/i18n/nb.po index 9b1c4f0ff17..9059b72a9db 100644 --- a/addons/product_manufacturer/i18n/nb.po +++ b/addons/product_manufacturer/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/nl.po b/addons/product_manufacturer/i18n/nl.po index 1480eebe52b..9004d0ef4f3 100644 --- a/addons/product_manufacturer/i18n/nl.po +++ b/addons/product_manufacturer/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/pl.po b/addons/product_manufacturer/i18n/pl.po index 2b55ffbf127..70846c25335 100644 --- a/addons/product_manufacturer/i18n/pl.po +++ b/addons/product_manufacturer/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/pt.po b/addons/product_manufacturer/i18n/pt.po index eff649aed06..f2e5d5866bf 100644 --- a/addons/product_manufacturer/i18n/pt.po +++ b/addons/product_manufacturer/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/pt_BR.po b/addons/product_manufacturer/i18n/pt_BR.po index 5ca0520030f..e98b5fcbd8a 100644 --- a/addons/product_manufacturer/i18n/pt_BR.po +++ b/addons/product_manufacturer/i18n/pt_BR.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/ro.po b/addons/product_manufacturer/i18n/ro.po index 861f08ca5ee..89a5396b071 100644 --- a/addons/product_manufacturer/i18n/ro.po +++ b/addons/product_manufacturer/i18n/ro.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/ru.po b/addons/product_manufacturer/i18n/ru.po index a3af310c1a8..8afa0dbf0b4 100644 --- a/addons/product_manufacturer/i18n/ru.po +++ b/addons/product_manufacturer/i18n/ru.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/sl.po b/addons/product_manufacturer/i18n/sl.po index a0bb9bbf8d4..8c470d9b64a 100644 --- a/addons/product_manufacturer/i18n/sl.po +++ b/addons/product_manufacturer/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/sr.po b/addons/product_manufacturer/i18n/sr.po index 9ed7fffab93..8b807fb6656 100644 --- a/addons/product_manufacturer/i18n/sr.po +++ b/addons/product_manufacturer/i18n/sr.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/sr@latin.po b/addons/product_manufacturer/i18n/sr@latin.po index 36be4899c22..ebdfef33251 100644 --- a/addons/product_manufacturer/i18n/sr@latin.po +++ b/addons/product_manufacturer/i18n/sr@latin.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/sv.po b/addons/product_manufacturer/i18n/sv.po index 315067c5baf..332b5498a55 100644 --- a/addons/product_manufacturer/i18n/sv.po +++ b/addons/product_manufacturer/i18n/sv.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/tr.po b/addons/product_manufacturer/i18n/tr.po index a083303218a..7b15fa21690 100644 --- a/addons/product_manufacturer/i18n/tr.po +++ b/addons/product_manufacturer/i18n/tr.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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/zh_CN.po b/addons/product_manufacturer/i18n/zh_CN.po index 839c174a831..d3c53fd1359 100644 --- a/addons/product_manufacturer/i18n/zh_CN.po +++ b/addons/product_manufacturer/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_manufacturer/i18n/zh_TW.po b/addons/product_manufacturer/i18n/zh_TW.po index 8f9447b92cc..c80119638b8 100644 --- a/addons/product_manufacturer/i18n/zh_TW.po +++ b/addons/product_manufacturer/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-03-15 05:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:39+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_manufacturer diff --git a/addons/product_margin/i18n/ar.po b/addons/product_margin/i18n/ar.po index 1267b6ffa7a..c58706e9bdf 100644 --- a/addons/product_margin/i18n/ar.po +++ b/addons/product_margin/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/bg.po b/addons/product_margin/i18n/bg.po index f08bf4708ab..cb4325bf504 100644 --- a/addons/product_margin/i18n/bg.po +++ b/addons/product_margin/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/bs.po b/addons/product_margin/i18n/bs.po index 30d966f5c7c..9baaaf08dc8 100644 --- a/addons/product_margin/i18n/bs.po +++ b/addons/product_margin/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/ca.po b/addons/product_margin/i18n/ca.po index 6feed7d8a55..c6aad228129 100644 --- a/addons/product_margin/i18n/ca.po +++ b/addons/product_margin/i18n/ca.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/cs.po b/addons/product_margin/i18n/cs.po index c0a11450401..181321f4c31 100644 --- a/addons/product_margin/i18n/cs.po +++ b/addons/product_margin/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/da.po b/addons/product_margin/i18n/da.po index 218eaf9ed09..1476e29be87 100644 --- a/addons/product_margin/i18n/da.po +++ b/addons/product_margin/i18n/da.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/de.po b/addons/product_margin/i18n/de.po index ad2e6d25d05..4a425020e70 100644 --- a/addons/product_margin/i18n/de.po +++ b/addons/product_margin/i18n/de.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/el.po b/addons/product_margin/i18n/el.po index 12347aece01..0e02d8bf0e2 100644 --- a/addons/product_margin/i18n/el.po +++ b/addons/product_margin/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/product_margin/i18n/es.po b/addons/product_margin/i18n/es.po index 74cf7e3e74f..91d8d6f92c4 100644 --- a/addons/product_margin/i18n/es.po +++ b/addons/product_margin/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/es_AR.po b/addons/product_margin/i18n/es_AR.po index 1fcba2a4b05..2f681b19366 100644 --- a/addons/product_margin/i18n/es_AR.po +++ b/addons/product_margin/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/es_CR.po b/addons/product_margin/i18n/es_CR.po index bbb69dbaed4..cc022fe02ad 100644 --- a/addons/product_margin/i18n/es_CR.po +++ b/addons/product_margin/i18n/es_CR.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/product_margin/i18n/es_EC.po b/addons/product_margin/i18n/es_EC.po index 8a72b9c59f9..47bc4fd4820 100644 --- a/addons/product_margin/i18n/es_EC.po +++ b/addons/product_margin/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/et.po b/addons/product_margin/i18n/et.po index 6c5e714ae0d..b31d256fc06 100644 --- a/addons/product_margin/i18n/et.po +++ b/addons/product_margin/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/fi.po b/addons/product_margin/i18n/fi.po index e75bb2a6c29..a6545616f19 100644 --- a/addons/product_margin/i18n/fi.po +++ b/addons/product_margin/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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/fr.po b/addons/product_margin/i18n/fr.po index 0af23634882..4c2449c22da 100644 --- a/addons/product_margin/i18n/fr.po +++ b/addons/product_margin/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/gl.po b/addons/product_margin/i18n/gl.po index 262c4dbba13..09cf540d06a 100644 --- a/addons/product_margin/i18n/gl.po +++ b/addons/product_margin/i18n/gl.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/gu.po b/addons/product_margin/i18n/gu.po index 5b57a7da5c2..07ac7ef4533 100644 --- a/addons/product_margin/i18n/gu.po +++ b/addons/product_margin/i18n/gu.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/hr.po b/addons/product_margin/i18n/hr.po index d45c6c6a5ab..c0a30d27db8 100644 --- a/addons/product_margin/i18n/hr.po +++ b/addons/product_margin/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/hu.po b/addons/product_margin/i18n/hu.po index 766ba50ac60..f23f2569670 100644 --- a/addons/product_margin/i18n/hu.po +++ b/addons/product_margin/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/id.po b/addons/product_margin/i18n/id.po index 60a90583604..0068fe1a54f 100644 --- a/addons/product_margin/i18n/id.po +++ b/addons/product_margin/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/it.po b/addons/product_margin/i18n/it.po index ef45d762908..f002630412e 100644 --- a/addons/product_margin/i18n/it.po +++ b/addons/product_margin/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/ja.po b/addons/product_margin/i18n/ja.po index 7e171125ce9..4f4ab8d69f6 100644 --- a/addons/product_margin/i18n/ja.po +++ b/addons/product_margin/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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/ko.po b/addons/product_margin/i18n/ko.po index fd5e40e3c5a..a59cd4f537a 100644 --- a/addons/product_margin/i18n/ko.po +++ b/addons/product_margin/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/lt.po b/addons/product_margin/i18n/lt.po index aa273ee0d3b..ddb4e054fe5 100644 --- a/addons/product_margin/i18n/lt.po +++ b/addons/product_margin/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/mk.po b/addons/product_margin/i18n/mk.po index 8ecc862a51c..3970c61dc64 100644 --- a/addons/product_margin/i18n/mk.po +++ b/addons/product_margin/i18n/mk.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/nl.po b/addons/product_margin/i18n/nl.po index 55cac32f084..4aabf6abdc3 100644 --- a/addons/product_margin/i18n/nl.po +++ b/addons/product_margin/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/nl_BE.po b/addons/product_margin/i18n/nl_BE.po index c32c33b49c3..b3db7b6bbc8 100644 --- a/addons/product_margin/i18n/nl_BE.po +++ b/addons/product_margin/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/pl.po b/addons/product_margin/i18n/pl.po index 2e67f4471a7..63e905bd99f 100644 --- a/addons/product_margin/i18n/pl.po +++ b/addons/product_margin/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/pt.po b/addons/product_margin/i18n/pt.po index 8570901eaba..69fc0a5cd00 100644 --- a/addons/product_margin/i18n/pt.po +++ b/addons/product_margin/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/pt_BR.po b/addons/product_margin/i18n/pt_BR.po index 6b63570cdec..4d8bef5b305 100644 --- a/addons/product_margin/i18n/pt_BR.po +++ b/addons/product_margin/i18n/pt_BR.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/ro.po b/addons/product_margin/i18n/ro.po index 51a0f66136f..b002d346c1d 100644 --- a/addons/product_margin/i18n/ro.po +++ b/addons/product_margin/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/ru.po b/addons/product_margin/i18n/ru.po index 1f83f45ee56..ab6b549afbf 100644 --- a/addons/product_margin/i18n/ru.po +++ b/addons/product_margin/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/sl.po b/addons/product_margin/i18n/sl.po index 8e802a1cf31..c3c4db16bf9 100644 --- a/addons/product_margin/i18n/sl.po +++ b/addons/product_margin/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/sq.po b/addons/product_margin/i18n/sq.po index a7e93892614..835d4eced59 100644 --- a/addons/product_margin/i18n/sq.po +++ b/addons/product_margin/i18n/sq.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/sr.po b/addons/product_margin/i18n/sr.po index 8710d673905..d1155f242b0 100644 --- a/addons/product_margin/i18n/sr.po +++ b/addons/product_margin/i18n/sr.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/sr@latin.po b/addons/product_margin/i18n/sr@latin.po index 3ffe7a63a4f..8e6310c5d1a 100644 --- a/addons/product_margin/i18n/sr@latin.po +++ b/addons/product_margin/i18n/sr@latin.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/sv.po b/addons/product_margin/i18n/sv.po index 4aee8e29d28..981b157ccb0 100644 --- a/addons/product_margin/i18n/sv.po +++ b/addons/product_margin/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/tlh.po b/addons/product_margin/i18n/tlh.po index f7f2a6f207b..096f70d4d24 100644 --- a/addons/product_margin/i18n/tlh.po +++ b/addons/product_margin/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/tr.po b/addons/product_margin/i18n/tr.po index 2bbbcf3c2f7..ee6db530ed4 100644 --- a/addons/product_margin/i18n/tr.po +++ b/addons/product_margin/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/uk.po b/addons/product_margin/i18n/uk.po index a3347d31d90..bcae363ea56 100644 --- a/addons/product_margin/i18n/uk.po +++ b/addons/product_margin/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/vi.po b/addons/product_margin/i18n/vi.po index f10e8b453aa..5adb9d54849 100644 --- a/addons/product_margin/i18n/vi.po +++ b/addons/product_margin/i18n/vi.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/zh_CN.po b/addons/product_margin/i18n/zh_CN.po index 0ec1c74df2e..7a7cbd4e639 100644 --- a/addons/product_margin/i18n/zh_CN.po +++ b/addons/product_margin/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_margin/i18n/zh_TW.po b/addons/product_margin/i18n/zh_TW.po index 3bcf4d3ddd6..95c5a348fb2 100644 --- a/addons/product_margin/i18n/zh_TW.po +++ b/addons/product_margin/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_margin diff --git a/addons/product_visible_discount/i18n/ar.po b/addons/product_visible_discount/i18n/ar.po index 2df76a71e21..984ffbc0ebb 100644 --- a/addons/product_visible_discount/i18n/ar.po +++ b/addons/product_visible_discount/i18n/ar.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/bg.po b/addons/product_visible_discount/i18n/bg.po index 660c797bfa0..eea98b8340c 100644 --- a/addons/product_visible_discount/i18n/bg.po +++ b/addons/product_visible_discount/i18n/bg.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/ca.po b/addons/product_visible_discount/i18n/ca.po index f106ea541bf..253c663b923 100644 --- a/addons/product_visible_discount/i18n/ca.po +++ b/addons/product_visible_discount/i18n/ca.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/cs.po b/addons/product_visible_discount/i18n/cs.po index ee277bb48a2..f5e4595366b 100644 --- a/addons/product_visible_discount/i18n/cs.po +++ b/addons/product_visible_discount/i18n/cs.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/da.po b/addons/product_visible_discount/i18n/da.po index c1e2d651915..70208f6b231 100644 --- a/addons/product_visible_discount/i18n/da.po +++ b/addons/product_visible_discount/i18n/da.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/de.po b/addons/product_visible_discount/i18n/de.po index 2fae621a866..8efb39dc5d6 100644 --- a/addons/product_visible_discount/i18n/de.po +++ b/addons/product_visible_discount/i18n/de.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/el.po b/addons/product_visible_discount/i18n/el.po index e500fd8bcd7..058c761299e 100644 --- a/addons/product_visible_discount/i18n/el.po +++ b/addons/product_visible_discount/i18n/el.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/es.po b/addons/product_visible_discount/i18n/es.po index 432176cb904..4d6760cde6c 100644 --- a/addons/product_visible_discount/i18n/es.po +++ b/addons/product_visible_discount/i18n/es.po @@ -15,7 +15,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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/es_CR.po b/addons/product_visible_discount/i18n/es_CR.po index f8d5c18af79..e7b69abdbed 100644 --- a/addons/product_visible_discount/i18n/es_CR.po +++ b/addons/product_visible_discount/i18n/es_CR.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/product_visible_discount/i18n/es_EC.po b/addons/product_visible_discount/i18n/es_EC.po index ce0428907c9..23727971894 100644 --- a/addons/product_visible_discount/i18n/es_EC.po +++ b/addons/product_visible_discount/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/et.po b/addons/product_visible_discount/i18n/et.po index 683f3aae39f..251d6e23a61 100644 --- a/addons/product_visible_discount/i18n/et.po +++ b/addons/product_visible_discount/i18n/et.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/fi.po b/addons/product_visible_discount/i18n/fi.po index 3c91781245e..cef3da2a578 100644 --- a/addons/product_visible_discount/i18n/fi.po +++ b/addons/product_visible_discount/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/fr.po b/addons/product_visible_discount/i18n/fr.po index 0fd3013e52e..111dd43310b 100644 --- a/addons/product_visible_discount/i18n/fr.po +++ b/addons/product_visible_discount/i18n/fr.po @@ -15,7 +15,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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/gl.po b/addons/product_visible_discount/i18n/gl.po index 15a6a7082a3..178dd33eccc 100644 --- a/addons/product_visible_discount/i18n/gl.po +++ b/addons/product_visible_discount/i18n/gl.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/hr.po b/addons/product_visible_discount/i18n/hr.po index b45e6d3691c..3bcae7b5c8d 100644 --- a/addons/product_visible_discount/i18n/hr.po +++ b/addons/product_visible_discount/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/hu.po b/addons/product_visible_discount/i18n/hu.po index 58300f6e138..0d80f738548 100644 --- a/addons/product_visible_discount/i18n/hu.po +++ b/addons/product_visible_discount/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/it.po b/addons/product_visible_discount/i18n/it.po index 40c5122dfc7..b03c5840054 100644 --- a/addons/product_visible_discount/i18n/it.po +++ b/addons/product_visible_discount/i18n/it.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/ja.po b/addons/product_visible_discount/i18n/ja.po index 0d57d6c553a..fac6721d4a0 100644 --- a/addons/product_visible_discount/i18n/ja.po +++ b/addons/product_visible_discount/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/lt.po b/addons/product_visible_discount/i18n/lt.po index 4b2d12ed8f5..41ac30063ff 100644 --- a/addons/product_visible_discount/i18n/lt.po +++ b/addons/product_visible_discount/i18n/lt.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/mk.po b/addons/product_visible_discount/i18n/mk.po index 8a85acf51ee..da861bb95df 100644 --- a/addons/product_visible_discount/i18n/mk.po +++ b/addons/product_visible_discount/i18n/mk.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/mn.po b/addons/product_visible_discount/i18n/mn.po index 8d39f33822d..4ff454cdba3 100644 --- a/addons/product_visible_discount/i18n/mn.po +++ b/addons/product_visible_discount/i18n/mn.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/nl.po b/addons/product_visible_discount/i18n/nl.po index 808aa51cdf0..828b5b93aa0 100644 --- a/addons/product_visible_discount/i18n/nl.po +++ b/addons/product_visible_discount/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/pl.po b/addons/product_visible_discount/i18n/pl.po index 46358dab231..3a559857497 100644 --- a/addons/product_visible_discount/i18n/pl.po +++ b/addons/product_visible_discount/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/pt.po b/addons/product_visible_discount/i18n/pt.po index d86bc8dd106..f18c9257d16 100644 --- a/addons/product_visible_discount/i18n/pt.po +++ b/addons/product_visible_discount/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/pt_BR.po b/addons/product_visible_discount/i18n/pt_BR.po index 3f8b2ae92f8..b2c5c34df50 100644 --- a/addons/product_visible_discount/i18n/pt_BR.po +++ b/addons/product_visible_discount/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/ro.po b/addons/product_visible_discount/i18n/ro.po index 7b7970faef1..2ce3a1ad99c 100644 --- a/addons/product_visible_discount/i18n/ro.po +++ b/addons/product_visible_discount/i18n/ro.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/ru.po b/addons/product_visible_discount/i18n/ru.po index 9b204cfb889..7c0a9b11093 100644 --- a/addons/product_visible_discount/i18n/ru.po +++ b/addons/product_visible_discount/i18n/ru.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/sl.po b/addons/product_visible_discount/i18n/sl.po index 3e98487997a..5e1ec1fcc85 100644 --- a/addons/product_visible_discount/i18n/sl.po +++ b/addons/product_visible_discount/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/sr.po b/addons/product_visible_discount/i18n/sr.po index 429f361a1ca..943f670933b 100644 --- a/addons/product_visible_discount/i18n/sr.po +++ b/addons/product_visible_discount/i18n/sr.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/sr@latin.po b/addons/product_visible_discount/i18n/sr@latin.po index 4a245f02176..7f82da2d019 100644 --- a/addons/product_visible_discount/i18n/sr@latin.po +++ b/addons/product_visible_discount/i18n/sr@latin.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/sv.po b/addons/product_visible_discount/i18n/sv.po index b0bdc5aa776..1d9e5093fcb 100644 --- a/addons/product_visible_discount/i18n/sv.po +++ b/addons/product_visible_discount/i18n/sv.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/tr.po b/addons/product_visible_discount/i18n/tr.po index c7915f2ef92..f8ed3942d0d 100644 --- a/addons/product_visible_discount/i18n/tr.po +++ b/addons/product_visible_discount/i18n/tr.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/vi.po b/addons/product_visible_discount/i18n/vi.po index 0e5c0661933..57183fce15a 100644 --- a/addons/product_visible_discount/i18n/vi.po +++ b/addons/product_visible_discount/i18n/vi.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/zh_CN.po b/addons/product_visible_discount/i18n/zh_CN.po index 0e7ebef1532..96c7c43e8c4 100644 --- a/addons/product_visible_discount/i18n/zh_CN.po +++ b/addons/product_visible_discount/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: product_visible_discount diff --git a/addons/project/i18n/ar.po b/addons/project/i18n/ar.po index baa99626baf..fe60f8c0ca8 100644 --- a/addons/project/i18n/ar.po +++ b/addons/project/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:56+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:55+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/bg.po b/addons/project/i18n/bg.po index c4e492b6c0e..adb1d3734a7 100644 --- a/addons/project/i18n/bg.po +++ b/addons/project/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:56+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:55+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/bs.po b/addons/project/i18n/bs.po index 0883a8fc334..1ac316a07e4 100644 --- a/addons/project/i18n/bs.po +++ b/addons/project/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:56+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:55+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/ca.po b/addons/project/i18n/ca.po index 4f0b3e8cb75..6237098a2cf 100644 --- a/addons/project/i18n/ca.po +++ b/addons/project/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:56+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:55+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/cs.po b/addons/project/i18n/cs.po index 81aac24471e..fc82e74fd4d 100644 --- a/addons/project/i18n/cs.po +++ b/addons/project/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:56+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:55+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/project/i18n/da.po b/addons/project/i18n/da.po index f2de791465b..c80dd3e3da2 100644 --- a/addons/project/i18n/da.po +++ b/addons/project/i18n/da.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-03-15 04:56+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:55+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/de.po b/addons/project/i18n/de.po index f23c636d892..ecc4ecebf84 100644 --- a/addons/project/i18n/de.po +++ b/addons/project/i18n/de.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-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/el.po b/addons/project/i18n/el.po index dc4d6bfcb6d..fdd93218bcc 100644 --- a/addons/project/i18n/el.po +++ b/addons/project/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/project/i18n/es.po b/addons/project/i18n/es.po index 46cfe637a8c..2e70e8ff815 100644 --- a/addons/project/i18n/es.po +++ b/addons/project/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/es_AR.po b/addons/project/i18n/es_AR.po index db95a17ea7b..24949f79240 100644 --- a/addons/project/i18n/es_AR.po +++ b/addons/project/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/es_CO.po b/addons/project/i18n/es_CO.po index bfd1e3e0629..3dd5953899f 100644 --- a/addons/project/i18n/es_CO.po +++ b/addons/project/i18n/es_CO.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project @@ -2045,12 +2045,12 @@ msgstr "" #: field:project.task,description:0 #: field:project.task.type,description:0 msgid "Description" -msgstr "" +msgstr "Descripción" #. module: project #: selection:report.project.task.user,month:0 msgid "May" -msgstr "" +msgstr "Mayo" #. module: project #: help:project.task.type,case_default:0 @@ -2058,16 +2058,18 @@ msgid "" "If you check this field, this stage will be proposed by default on each new " "project. It will not assign this stage to existing projects." msgstr "" +"Si marca este campo, esta etapa será propuesta por defecto en cada proyecto " +"nuevo. No se asignará esta etapa a proyectos ya existentes." #. module: project #: field:project.task,partner_id:0 msgid "Customer" -msgstr "" +msgstr "Cliente" #. module: project #: selection:report.project.task.user,month:0 msgid "February" -msgstr "" +msgstr "Febrero" #. module: project #: help:project.config.settings,module_project_long_term:0 @@ -2076,26 +2078,30 @@ msgid "" "resource allocation.\n" " This installs the module project_long_term." msgstr "" +"Módulo de gestión de proyectos a largo plazo que permite planificar, " +"programar y asignar recursos.\n" +"Esto instalará el módulo 'project_long_term'." #. module: project #: model:mail.message.subtype,description:project.mt_task_closed msgid "Task closed" -msgstr "" +msgstr "Tarea cerrada" #. module: project #: selection:report.project.task.user,month:0 msgid "April" -msgstr "" +msgstr "Abril" #. module: project #: view:project.task:0 msgid "Spent Hours" -msgstr "" +msgstr "Horas Consumidas" #. module: project #: help:project.project,sequence:0 msgid "Gives the sequence order when displaying a list of Projects." msgstr "" +"Indica el orden de secuencia cuando se muestra una lista de Proyectos." #. module: project #: model:ir.actions.act_window,name:project.act_res_users_2_project_task_opened diff --git a/addons/project/i18n/es_CR.po b/addons/project/i18n/es_CR.po index cfd74d6a013..baff3642f6a 100644 --- a/addons/project/i18n/es_CR.po +++ b/addons/project/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/project/i18n/es_EC.po b/addons/project/i18n/es_EC.po index 1534249ff7a..256baa1f18e 100644 --- a/addons/project/i18n/es_EC.po +++ b/addons/project/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/es_MX.po b/addons/project/i18n/es_MX.po index 750a751549c..e7adc1099ff 100644 --- a/addons/project/i18n/es_MX.po +++ b/addons/project/i18n/es_MX.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/es_PY.po b/addons/project/i18n/es_PY.po index f075193007e..bb2f0a433bc 100644 --- a/addons/project/i18n/es_PY.po +++ b/addons/project/i18n/es_PY.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/et.po b/addons/project/i18n/et.po index 93bf79d72e1..5476a27c1fd 100644 --- a/addons/project/i18n/et.po +++ b/addons/project/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:55+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/eu.po b/addons/project/i18n/eu.po index 8b6cbb479d3..ac2139397e4 100644 --- a/addons/project/i18n/eu.po +++ b/addons/project/i18n/eu.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-03-15 04:56+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:55+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/fi.po b/addons/project/i18n/fi.po index 993655bd1ca..f17b5bf3688 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-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:55+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/fr.po b/addons/project/i18n/fr.po index 65737922246..acfa9e83ba8 100644 --- a/addons/project/i18n/fr.po +++ b/addons/project/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:55+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/gl.po b/addons/project/i18n/gl.po index 2257a8e4a7a..d56f0683cdd 100644 --- a/addons/project/i18n/gl.po +++ b/addons/project/i18n/gl.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-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/gu.po b/addons/project/i18n/gu.po index 3293d05c88b..0f93c17c38f 100644 --- a/addons/project/i18n/gu.po +++ b/addons/project/i18n/gu.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-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/hr.po b/addons/project/i18n/hr.po index bf2f3f356cf..9507da7ec34 100644 --- a/addons/project/i18n/hr.po +++ b/addons/project/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/project/i18n/hu.po b/addons/project/i18n/hu.po index 1d89b791d21..2cb908291cd 100644 --- a/addons/project/i18n/hu.po +++ b/addons/project/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/id.po b/addons/project/i18n/id.po index 15b290b75d4..3ca3fdfa006 100644 --- a/addons/project/i18n/id.po +++ b/addons/project/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/it.po b/addons/project/i18n/it.po index 442f66f29ea..b181f8a43a3 100644 --- a/addons/project/i18n/it.po +++ b/addons/project/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/ja.po b/addons/project/i18n/ja.po index 918f4b0dd1e..b7c4b72a79c 100644 --- a/addons/project/i18n/ja.po +++ b/addons/project/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-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/ko.po b/addons/project/i18n/ko.po index dfddeadcc66..38a983547be 100644 --- a/addons/project/i18n/ko.po +++ b/addons/project/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/lt.po b/addons/project/i18n/lt.po index 12271588fe7..a1a5d199e9a 100644 --- a/addons/project/i18n/lt.po +++ b/addons/project/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/lv.po b/addons/project/i18n/lv.po index 7a159779a3f..ba4bca515ae 100644 --- a/addons/project/i18n/lv.po +++ b/addons/project/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/mk.po b/addons/project/i18n/mk.po index 4b3e3a15a41..4839e75e881 100644 --- a/addons/project/i18n/mk.po +++ b/addons/project/i18n/mk.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-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/mn.po b/addons/project/i18n/mn.po index 234d9f023a3..1cfb76f1e01 100644 --- a/addons/project/i18n/mn.po +++ b/addons/project/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/nb.po b/addons/project/i18n/nb.po index 43f70ed29c0..f4730810c7f 100644 --- a/addons/project/i18n/nb.po +++ b/addons/project/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/nl.po b/addons/project/i18n/nl.po index dc50412cad8..9f74c5014bd 100644 --- a/addons/project/i18n/nl.po +++ b/addons/project/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:55+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project @@ -699,7 +699,7 @@ msgstr "Nieuwe taak" #. module: project #: field:project.config.settings,module_project_issue_sheet:0 msgid "Invoice working time on issues" -msgstr "Facturer gewerkte uren aan issues" +msgstr "Factureer gewerkte uren aan issues" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/nl_BE.po b/addons/project/i18n/nl_BE.po index 787335c754c..e5b905e2686 100644 --- a/addons/project/i18n/nl_BE.po +++ b/addons/project/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/pl.po b/addons/project/i18n/pl.po index e84c394ad3e..1affd0c4a28 100644 --- a/addons/project/i18n/pl.po +++ b/addons/project/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/pt.po b/addons/project/i18n/pt.po index 44b71ceb9b1..e11549c3d3d 100644 --- a/addons/project/i18n/pt.po +++ b/addons/project/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/pt_BR.po b/addons/project/i18n/pt_BR.po index a776e630c7c..27e97c5da2d 100644 --- a/addons/project/i18n/pt_BR.po +++ b/addons/project/i18n/pt_BR.po @@ -15,7 +15,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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/ro.po b/addons/project/i18n/ro.po index 91b9f2b6a38..5a1b8b7ef9a 100644 --- a/addons/project/i18n/ro.po +++ b/addons/project/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/ru.po b/addons/project/i18n/ru.po index 45d7e040374..1743d66e55d 100644 --- a/addons/project/i18n/ru.po +++ b/addons/project/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/sk.po b/addons/project/i18n/sk.po index 7eb1591a8ad..ca7412fc52a 100644 --- a/addons/project/i18n/sk.po +++ b/addons/project/i18n/sk.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-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/sl.po b/addons/project/i18n/sl.po index a888f68b728..6db357f72aa 100644 --- a/addons/project/i18n/sl.po +++ b/addons/project/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/sq.po b/addons/project/i18n/sq.po index c8c419fd5ae..0d1d37a00e6 100644 --- a/addons/project/i18n/sq.po +++ b/addons/project/i18n/sq.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-03-15 04:56+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:55+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/sv.po b/addons/project/i18n/sv.po index 482263438a0..2eb6a6f57c5 100644 --- a/addons/project/i18n/sv.po +++ b/addons/project/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/tlh.po b/addons/project/i18n/tlh.po index e3ce1307743..f0381d6c6a9 100644 --- a/addons/project/i18n/tlh.po +++ b/addons/project/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/tr.po b/addons/project/i18n/tr.po index 1022da1c1ee..c2f21ae970f 100644 --- a/addons/project/i18n/tr.po +++ b/addons/project/i18n/tr.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-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/uk.po b/addons/project/i18n/uk.po index bdcdfdad7fd..b9c6c9bb2f4 100644 --- a/addons/project/i18n/uk.po +++ b/addons/project/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/vi.po b/addons/project/i18n/vi.po index b6517ae98a6..dc53b2e0bd0 100644 --- a/addons/project/i18n/vi.po +++ b/addons/project/i18n/vi.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/zh_CN.po b/addons/project/i18n/zh_CN.po index 5b0adef5df4..b0618c0233d 100644 --- a/addons/project/i18n/zh_CN.po +++ b/addons/project/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project/i18n/zh_TW.po b/addons/project/i18n/zh_TW.po index ca6ae26a1af..45967def253 100644 --- a/addons/project/i18n/zh_TW.po +++ b/addons/project/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:56+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project diff --git a/addons/project_gtd/i18n/ar.po b/addons/project_gtd/i18n/ar.po index 1edac9ee82b..69587bee9d2 100644 --- a/addons/project_gtd/i18n/ar.po +++ b/addons/project_gtd/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/bg.po b/addons/project_gtd/i18n/bg.po index 95c31658229..b60ce2386e7 100644 --- a/addons/project_gtd/i18n/bg.po +++ b/addons/project_gtd/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/bs.po b/addons/project_gtd/i18n/bs.po index b455b00de2e..59ff0f7f7c1 100644 --- a/addons/project_gtd/i18n/bs.po +++ b/addons/project_gtd/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/ca.po b/addons/project_gtd/i18n/ca.po index 7e5eac8ee3d..dc5c9404ae1 100644 --- a/addons/project_gtd/i18n/ca.po +++ b/addons/project_gtd/i18n/ca.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/cs.po b/addons/project_gtd/i18n/cs.po index 97eb508c453..5b5446fcd65 100644 --- a/addons/project_gtd/i18n/cs.po +++ b/addons/project_gtd/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/da.po b/addons/project_gtd/i18n/da.po index 2ea73a33078..ed4beddbbab 100644 --- a/addons/project_gtd/i18n/da.po +++ b/addons/project_gtd/i18n/da.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/de.po b/addons/project_gtd/i18n/de.po index a0744d8c442..68881813a4a 100644 --- a/addons/project_gtd/i18n/de.po +++ b/addons/project_gtd/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/el.po b/addons/project_gtd/i18n/el.po index 9e804137a12..81eec9a7e6b 100644 --- a/addons/project_gtd/i18n/el.po +++ b/addons/project_gtd/i18n/el.po @@ -12,7 +12,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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/project_gtd/i18n/es.po b/addons/project_gtd/i18n/es.po index ed51a907db9..6a8563a42b0 100644 --- a/addons/project_gtd/i18n/es.po +++ b/addons/project_gtd/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/es_AR.po b/addons/project_gtd/i18n/es_AR.po index 61fd815c999..c513b9e4eea 100644 --- a/addons/project_gtd/i18n/es_AR.po +++ b/addons/project_gtd/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/es_CR.po b/addons/project_gtd/i18n/es_CR.po index a31184fb8e5..f2f36f0e569 100644 --- a/addons/project_gtd/i18n/es_CR.po +++ b/addons/project_gtd/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/project_gtd/i18n/es_EC.po b/addons/project_gtd/i18n/es_EC.po index 2e6c8454071..7c7d15463b7 100644 --- a/addons/project_gtd/i18n/es_EC.po +++ b/addons/project_gtd/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/et.po b/addons/project_gtd/i18n/et.po index 97685bf2e64..d8cbc8b068a 100644 --- a/addons/project_gtd/i18n/et.po +++ b/addons/project_gtd/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/fi.po b/addons/project_gtd/i18n/fi.po index a8dc961a0c0..c55a2c78d8e 100644 --- a/addons/project_gtd/i18n/fi.po +++ b/addons/project_gtd/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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/fr.po b/addons/project_gtd/i18n/fr.po index d09487a017e..3f690f02a9c 100644 --- a/addons/project_gtd/i18n/fr.po +++ b/addons/project_gtd/i18n/fr.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/gl.po b/addons/project_gtd/i18n/gl.po index bce2c7af768..845a972ed40 100644 --- a/addons/project_gtd/i18n/gl.po +++ b/addons/project_gtd/i18n/gl.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/hr.po b/addons/project_gtd/i18n/hr.po index b3f58ff2163..c6b3a62c044 100644 --- a/addons/project_gtd/i18n/hr.po +++ b/addons/project_gtd/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/project_gtd/i18n/hu.po b/addons/project_gtd/i18n/hu.po index 201c23ca357..60286958195 100644 --- a/addons/project_gtd/i18n/hu.po +++ b/addons/project_gtd/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/id.po b/addons/project_gtd/i18n/id.po index f2336ffa21c..0914a099627 100644 --- a/addons/project_gtd/i18n/id.po +++ b/addons/project_gtd/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/it.po b/addons/project_gtd/i18n/it.po index 0511670370e..d7d72a252f5 100644 --- a/addons/project_gtd/i18n/it.po +++ b/addons/project_gtd/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/ja.po b/addons/project_gtd/i18n/ja.po index 615933c0469..4e966b86f43 100644 --- a/addons/project_gtd/i18n/ja.po +++ b/addons/project_gtd/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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/ko.po b/addons/project_gtd/i18n/ko.po index 35e8ea61a22..597c6aebd65 100644 --- a/addons/project_gtd/i18n/ko.po +++ b/addons/project_gtd/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/lt.po b/addons/project_gtd/i18n/lt.po index 742b4c3144d..bbdaba80fb6 100644 --- a/addons/project_gtd/i18n/lt.po +++ b/addons/project_gtd/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/lv.po b/addons/project_gtd/i18n/lv.po index de8ab0382ff..1755a5e15be 100644 --- a/addons/project_gtd/i18n/lv.po +++ b/addons/project_gtd/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/mk.po b/addons/project_gtd/i18n/mk.po index b476c611fd0..5d9177fbf16 100644 --- a/addons/project_gtd/i18n/mk.po +++ b/addons/project_gtd/i18n/mk.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/mn.po b/addons/project_gtd/i18n/mn.po index 1e1d0614c88..ee6c562f936 100644 --- a/addons/project_gtd/i18n/mn.po +++ b/addons/project_gtd/i18n/mn.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/nl.po b/addons/project_gtd/i18n/nl.po index d0751d56bb6..bf624a1f564 100644 --- a/addons/project_gtd/i18n/nl.po +++ b/addons/project_gtd/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/nl_BE.po b/addons/project_gtd/i18n/nl_BE.po index 86b920bba0c..cdc2483ad72 100644 --- a/addons/project_gtd/i18n/nl_BE.po +++ b/addons/project_gtd/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/pl.po b/addons/project_gtd/i18n/pl.po index 922a3bce32e..fe6f5f7c4a4 100644 --- a/addons/project_gtd/i18n/pl.po +++ b/addons/project_gtd/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/pt.po b/addons/project_gtd/i18n/pt.po index 6da69ea5e4e..ddac54ed40a 100644 --- a/addons/project_gtd/i18n/pt.po +++ b/addons/project_gtd/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/pt_BR.po b/addons/project_gtd/i18n/pt_BR.po index bee0064d2d1..72c9704c1d6 100644 --- a/addons/project_gtd/i18n/pt_BR.po +++ b/addons/project_gtd/i18n/pt_BR.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/ro.po b/addons/project_gtd/i18n/ro.po index 74aeb611aa5..0f699fdbd0f 100644 --- a/addons/project_gtd/i18n/ro.po +++ b/addons/project_gtd/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/ru.po b/addons/project_gtd/i18n/ru.po index 700d73dc21e..21b519e66dd 100644 --- a/addons/project_gtd/i18n/ru.po +++ b/addons/project_gtd/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/sl.po b/addons/project_gtd/i18n/sl.po index 665784f06a0..06933eadd87 100644 --- a/addons/project_gtd/i18n/sl.po +++ b/addons/project_gtd/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/sq.po b/addons/project_gtd/i18n/sq.po index b9211bad045..e50e26c8391 100644 --- a/addons/project_gtd/i18n/sq.po +++ b/addons/project_gtd/i18n/sq.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/sv.po b/addons/project_gtd/i18n/sv.po index 96c63826ed2..db3ecb3cd1c 100644 --- a/addons/project_gtd/i18n/sv.po +++ b/addons/project_gtd/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/tlh.po b/addons/project_gtd/i18n/tlh.po index e8b49b5e8e5..4da84264e1d 100644 --- a/addons/project_gtd/i18n/tlh.po +++ b/addons/project_gtd/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/tr.po b/addons/project_gtd/i18n/tr.po index 29c879d8b09..ae3ebe6646a 100644 --- a/addons/project_gtd/i18n/tr.po +++ b/addons/project_gtd/i18n/tr.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/uk.po b/addons/project_gtd/i18n/uk.po index 296316cf1ce..ab257562b86 100644 --- a/addons/project_gtd/i18n/uk.po +++ b/addons/project_gtd/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/vi.po b/addons/project_gtd/i18n/vi.po index d2f391e915f..09894e6107b 100644 --- a/addons/project_gtd/i18n/vi.po +++ b/addons/project_gtd/i18n/vi.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-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/zh_CN.po b/addons/project_gtd/i18n/zh_CN.po index 100e16d7453..4cd8285d6da 100644 --- a/addons/project_gtd/i18n/zh_CN.po +++ b/addons/project_gtd/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/zh_TW.po b/addons/project_gtd/i18n/zh_TW.po index 43fb554137c..cb7862e37b7 100644 --- a/addons/project_gtd/i18n/zh_TW.po +++ b/addons/project_gtd/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:29+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_gtd diff --git a/addons/project_issue/i18n/ar.po b/addons/project_issue/i18n/ar.po index 5d362899fc0..d75fdd7ebcd 100644 --- a/addons/project_issue/i18n/ar.po +++ b/addons/project_issue/i18n/ar.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/ca.po b/addons/project_issue/i18n/ca.po index de69557acfe..3766aa3ac62 100644 --- a/addons/project_issue/i18n/ca.po +++ b/addons/project_issue/i18n/ca.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/da.po b/addons/project_issue/i18n/da.po index d30be8c74e8..a95d2b61081 100644 --- a/addons/project_issue/i18n/da.po +++ b/addons/project_issue/i18n/da.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/de.po b/addons/project_issue/i18n/de.po index 7a026ef28ca..6cf9dc86964 100644 --- a/addons/project_issue/i18n/de.po +++ b/addons/project_issue/i18n/de.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/es.po b/addons/project_issue/i18n/es.po index 0f815cd0e95..59833677b50 100644 --- a/addons/project_issue/i18n/es.po +++ b/addons/project_issue/i18n/es.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/es_CR.po b/addons/project_issue/i18n/es_CR.po index 08b47c6d8b2..c91f8c43cfa 100644 --- a/addons/project_issue/i18n/es_CR.po +++ b/addons/project_issue/i18n/es_CR.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/project_issue/i18n/fi.po b/addons/project_issue/i18n/fi.po index 0f8c85ad075..11455a7e3fb 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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/fr.po b/addons/project_issue/i18n/fr.po index fdc75d689f7..8f2baa3fc0c 100644 --- a/addons/project_issue/i18n/fr.po +++ b/addons/project_issue/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/hr.po b/addons/project_issue/i18n/hr.po index 550f9dca178..c2dfc411b63 100644 --- a/addons/project_issue/i18n/hr.po +++ b/addons/project_issue/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/hu.po b/addons/project_issue/i18n/hu.po index fceb5d374da..97e3329fe69 100644 --- a/addons/project_issue/i18n/hu.po +++ b/addons/project_issue/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/it.po b/addons/project_issue/i18n/it.po index f2a6a3b5722..c2f15cd67b8 100644 --- a/addons/project_issue/i18n/it.po +++ b/addons/project_issue/i18n/it.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/ja.po b/addons/project_issue/i18n/ja.po index 2f8f5f1a259..74b5a9a45db 100644 --- a/addons/project_issue/i18n/ja.po +++ b/addons/project_issue/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/lt.po b/addons/project_issue/i18n/lt.po index b7be3dea1e5..56859ca779b 100644 --- a/addons/project_issue/i18n/lt.po +++ b/addons/project_issue/i18n/lt.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/lv.po b/addons/project_issue/i18n/lv.po index 697502730f9..e2103731071 100644 --- a/addons/project_issue/i18n/lv.po +++ b/addons/project_issue/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/mk.po b/addons/project_issue/i18n/mk.po index 70b9f3f3359..ee2c18c396a 100644 --- a/addons/project_issue/i18n/mk.po +++ b/addons/project_issue/i18n/mk.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/mn.po b/addons/project_issue/i18n/mn.po index eb62c3f9a37..d05786400a5 100644 --- a/addons/project_issue/i18n/mn.po +++ b/addons/project_issue/i18n/mn.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/nb.po b/addons/project_issue/i18n/nb.po index f146e4b13cf..c6dba795781 100644 --- a/addons/project_issue/i18n/nb.po +++ b/addons/project_issue/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/nl.po b/addons/project_issue/i18n/nl.po index 705bf3cf57a..bea5ddb4f29 100644 --- a/addons/project_issue/i18n/nl.po +++ b/addons/project_issue/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue @@ -401,7 +401,7 @@ msgstr "project.issue.version" #. module: project_issue #: field:project.config.settings,fetchmail_issue:0 msgid "Create issues from an incoming email account " -msgstr "Maak issues van een inkomende e-mail account " +msgstr "Maak issues van een inkomende e-mail " #. module: project_issue #: view:project.issue:0 diff --git a/addons/project_issue/i18n/nl_BE.po b/addons/project_issue/i18n/nl_BE.po index d705c0fea89..3c973df233b 100644 --- a/addons/project_issue/i18n/nl_BE.po +++ b/addons/project_issue/i18n/nl_BE.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/pl.po b/addons/project_issue/i18n/pl.po index 63702caafbc..1beecbbe73a 100644 --- a/addons/project_issue/i18n/pl.po +++ b/addons/project_issue/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/pt.po b/addons/project_issue/i18n/pt.po index f729cd15893..71b73b6f054 100644 --- a/addons/project_issue/i18n/pt.po +++ b/addons/project_issue/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/pt_BR.po b/addons/project_issue/i18n/pt_BR.po index c6ccd5d3eae..d4ab60f1ab0 100644 --- a/addons/project_issue/i18n/pt_BR.po +++ b/addons/project_issue/i18n/pt_BR.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/ro.po b/addons/project_issue/i18n/ro.po index 9e7569cefd4..72e02c6dc52 100644 --- a/addons/project_issue/i18n/ro.po +++ b/addons/project_issue/i18n/ro.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/ru.po b/addons/project_issue/i18n/ru.po index 8ab83a2f6a8..717548e0b31 100644 --- a/addons/project_issue/i18n/ru.po +++ b/addons/project_issue/i18n/ru.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/sk.po b/addons/project_issue/i18n/sk.po index 748ca8c8cb4..3d85ca810e0 100644 --- a/addons/project_issue/i18n/sk.po +++ b/addons/project_issue/i18n/sk.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/sl.po b/addons/project_issue/i18n/sl.po index bd2e7e528eb..3089222f53d 100644 --- a/addons/project_issue/i18n/sl.po +++ b/addons/project_issue/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/sv.po b/addons/project_issue/i18n/sv.po index 192efb0a541..9cd213f094c 100644 --- a/addons/project_issue/i18n/sv.po +++ b/addons/project_issue/i18n/sv.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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/tr.po b/addons/project_issue/i18n/tr.po index b1d9370a422..4c952f1dd1d 100644 --- a/addons/project_issue/i18n/tr.po +++ b/addons/project_issue/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/zh_CN.po b/addons/project_issue/i18n/zh_CN.po index 42202586dd3..4802f85cf36 100644 --- a/addons/project_issue/i18n/zh_CN.po +++ b/addons/project_issue/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/zh_TW.po b/addons/project_issue/i18n/zh_TW.po index 44ccf8fbe63..561859d7070 100644 --- a/addons/project_issue/i18n/zh_TW.po +++ b/addons/project_issue/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-03-15 05:45+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:44+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue diff --git a/addons/project_issue_sheet/i18n/ar.po b/addons/project_issue_sheet/i18n/ar.po index 14ec2ce5835..f77bc49b0a1 100644 --- a/addons/project_issue_sheet/i18n/ar.po +++ b/addons/project_issue_sheet/i18n/ar.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/ca.po b/addons/project_issue_sheet/i18n/ca.po index 78018369404..df1c5f6da56 100644 --- a/addons/project_issue_sheet/i18n/ca.po +++ b/addons/project_issue_sheet/i18n/ca.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/da.po b/addons/project_issue_sheet/i18n/da.po index 11450ea24eb..d879b0865e0 100644 --- a/addons/project_issue_sheet/i18n/da.po +++ b/addons/project_issue_sheet/i18n/da.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/de.po b/addons/project_issue_sheet/i18n/de.po index 2aa0298beac..44390b732de 100644 --- a/addons/project_issue_sheet/i18n/de.po +++ b/addons/project_issue_sheet/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/es.po b/addons/project_issue_sheet/i18n/es.po index d99b9674cf9..58caaa1b9a2 100644 --- a/addons/project_issue_sheet/i18n/es.po +++ b/addons/project_issue_sheet/i18n/es.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/es_CR.po b/addons/project_issue_sheet/i18n/es_CR.po index c9dfd7d1d7d..b3698faf21b 100644 --- a/addons/project_issue_sheet/i18n/es_CR.po +++ b/addons/project_issue_sheet/i18n/es_CR.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/project_issue_sheet/i18n/fi.po b/addons/project_issue_sheet/i18n/fi.po index 07bde4bbd32..aa94dc59c35 100644 --- a/addons/project_issue_sheet/i18n/fi.po +++ b/addons/project_issue_sheet/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/fr.po b/addons/project_issue_sheet/i18n/fr.po index 23547ae5be7..19269d0bfb0 100644 --- a/addons/project_issue_sheet/i18n/fr.po +++ b/addons/project_issue_sheet/i18n/fr.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/gl.po b/addons/project_issue_sheet/i18n/gl.po index 2a56bab9516..d186d6e685f 100644 --- a/addons/project_issue_sheet/i18n/gl.po +++ b/addons/project_issue_sheet/i18n/gl.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/hr.po b/addons/project_issue_sheet/i18n/hr.po index 3b93ceb5375..325d39639d0 100644 --- a/addons/project_issue_sheet/i18n/hr.po +++ b/addons/project_issue_sheet/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/hu.po b/addons/project_issue_sheet/i18n/hu.po index e47e9e4723c..e98d772fcd9 100644 --- a/addons/project_issue_sheet/i18n/hu.po +++ b/addons/project_issue_sheet/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/it.po b/addons/project_issue_sheet/i18n/it.po index 42f6e77cafc..477d0febfd9 100644 --- a/addons/project_issue_sheet/i18n/it.po +++ b/addons/project_issue_sheet/i18n/it.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/ja.po b/addons/project_issue_sheet/i18n/ja.po index e15499df7af..47223f11159 100644 --- a/addons/project_issue_sheet/i18n/ja.po +++ b/addons/project_issue_sheet/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/lv.po b/addons/project_issue_sheet/i18n/lv.po index 002314076b2..7f8386d9b19 100644 --- a/addons/project_issue_sheet/i18n/lv.po +++ b/addons/project_issue_sheet/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/mk.po b/addons/project_issue_sheet/i18n/mk.po index f0be98bbe57..17003ebae69 100644 --- a/addons/project_issue_sheet/i18n/mk.po +++ b/addons/project_issue_sheet/i18n/mk.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/mn.po b/addons/project_issue_sheet/i18n/mn.po index 25ccba4d6cb..0a9aeaefc05 100644 --- a/addons/project_issue_sheet/i18n/mn.po +++ b/addons/project_issue_sheet/i18n/mn.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/nl.po b/addons/project_issue_sheet/i18n/nl.po index f72ff8e0f88..11acdb1a1e5 100644 --- a/addons/project_issue_sheet/i18n/nl.po +++ b/addons/project_issue_sheet/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/pl.po b/addons/project_issue_sheet/i18n/pl.po index c9d9a2c3cbe..9c02ba7bf76 100644 --- a/addons/project_issue_sheet/i18n/pl.po +++ b/addons/project_issue_sheet/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/pt.po b/addons/project_issue_sheet/i18n/pt.po index e82dbae9bec..a7c90b1a8af 100644 --- a/addons/project_issue_sheet/i18n/pt.po +++ b/addons/project_issue_sheet/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/pt_BR.po b/addons/project_issue_sheet/i18n/pt_BR.po index 6f0a74d7963..d8d359ee31e 100644 --- a/addons/project_issue_sheet/i18n/pt_BR.po +++ b/addons/project_issue_sheet/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/ro.po b/addons/project_issue_sheet/i18n/ro.po index e5d80038821..1c6e13326fb 100644 --- a/addons/project_issue_sheet/i18n/ro.po +++ b/addons/project_issue_sheet/i18n/ro.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/ru.po b/addons/project_issue_sheet/i18n/ru.po index 1ed71c8e582..c50137ddfd2 100644 --- a/addons/project_issue_sheet/i18n/ru.po +++ b/addons/project_issue_sheet/i18n/ru.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/sv.po b/addons/project_issue_sheet/i18n/sv.po index 83100a51937..ea89c6b30bb 100644 --- a/addons/project_issue_sheet/i18n/sv.po +++ b/addons/project_issue_sheet/i18n/sv.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/tr.po b/addons/project_issue_sheet/i18n/tr.po index cea7e8d21c0..396c9363b4f 100644 --- a/addons/project_issue_sheet/i18n/tr.po +++ b/addons/project_issue_sheet/i18n/tr.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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/zh_CN.po b/addons/project_issue_sheet/i18n/zh_CN.po index 37f0d27a1c1..8c29f261ce1 100644 --- a/addons/project_issue_sheet/i18n/zh_CN.po +++ b/addons/project_issue_sheet/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-03-15 05:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:43+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_issue_sheet diff --git a/addons/project_long_term/i18n/ar.po b/addons/project_long_term/i18n/ar.po index 5152d31b27b..152d5e2722c 100644 --- a/addons/project_long_term/i18n/ar.po +++ b/addons/project_long_term/i18n/ar.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/ca.po b/addons/project_long_term/i18n/ca.po index 1b8db9dd0db..e6e1236e50b 100644 --- a/addons/project_long_term/i18n/ca.po +++ b/addons/project_long_term/i18n/ca.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/da.po b/addons/project_long_term/i18n/da.po index ebfad7b18ac..f31469e91a1 100644 --- a/addons/project_long_term/i18n/da.po +++ b/addons/project_long_term/i18n/da.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/de.po b/addons/project_long_term/i18n/de.po index b9b6442ae31..950383d20ee 100644 --- a/addons/project_long_term/i18n/de.po +++ b/addons/project_long_term/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/es.po b/addons/project_long_term/i18n/es.po index 4eacd0f9fe2..08636a30840 100644 --- a/addons/project_long_term/i18n/es.po +++ b/addons/project_long_term/i18n/es.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/es_CR.po b/addons/project_long_term/i18n/es_CR.po index aa59ab4bad3..138bff203f3 100644 --- a/addons/project_long_term/i18n/es_CR.po +++ b/addons/project_long_term/i18n/es_CR.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/project_long_term/i18n/es_EC.po b/addons/project_long_term/i18n/es_EC.po index da938bd3490..8b8c74c80c7 100644 --- a/addons/project_long_term/i18n/es_EC.po +++ b/addons/project_long_term/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/fi.po b/addons/project_long_term/i18n/fi.po index 4193bd5fd98..74b21b6f561 100644 --- a/addons/project_long_term/i18n/fi.po +++ b/addons/project_long_term/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/fr.po b/addons/project_long_term/i18n/fr.po index 74c894f4f50..774d5c69321 100644 --- a/addons/project_long_term/i18n/fr.po +++ b/addons/project_long_term/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/hr.po b/addons/project_long_term/i18n/hr.po index 328056648fa..f7a3da8d031 100644 --- a/addons/project_long_term/i18n/hr.po +++ b/addons/project_long_term/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/hu.po b/addons/project_long_term/i18n/hu.po index 9aaebb64304..d34d8e36aa7 100644 --- a/addons/project_long_term/i18n/hu.po +++ b/addons/project_long_term/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/it.po b/addons/project_long_term/i18n/it.po index 0ab49132ea1..fcef56ae3ce 100644 --- a/addons/project_long_term/i18n/it.po +++ b/addons/project_long_term/i18n/it.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/ja.po b/addons/project_long_term/i18n/ja.po index 089d00c0a04..bb332f116e7 100644 --- a/addons/project_long_term/i18n/ja.po +++ b/addons/project_long_term/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/lv.po b/addons/project_long_term/i18n/lv.po index 575d68d347c..37e6210868c 100644 --- a/addons/project_long_term/i18n/lv.po +++ b/addons/project_long_term/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/mk.po b/addons/project_long_term/i18n/mk.po index 8b96e230cf9..221e3ac09f8 100644 --- a/addons/project_long_term/i18n/mk.po +++ b/addons/project_long_term/i18n/mk.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/mn.po b/addons/project_long_term/i18n/mn.po index 0810f392bdb..b5554c80f73 100644 --- a/addons/project_long_term/i18n/mn.po +++ b/addons/project_long_term/i18n/mn.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/nl.po b/addons/project_long_term/i18n/nl.po index 424a74c76e3..30d4159b7cd 100644 --- a/addons/project_long_term/i18n/nl.po +++ b/addons/project_long_term/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/pl.po b/addons/project_long_term/i18n/pl.po index cefd4a945e7..ae4f5f2750a 100644 --- a/addons/project_long_term/i18n/pl.po +++ b/addons/project_long_term/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/pt.po b/addons/project_long_term/i18n/pt.po index 3f0f27b3bcf..e7ac4284a2d 100644 --- a/addons/project_long_term/i18n/pt.po +++ b/addons/project_long_term/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/pt_BR.po b/addons/project_long_term/i18n/pt_BR.po index ce223527052..887c5820139 100644 --- a/addons/project_long_term/i18n/pt_BR.po +++ b/addons/project_long_term/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/ro.po b/addons/project_long_term/i18n/ro.po index 7c1328938d1..447d14574df 100644 --- a/addons/project_long_term/i18n/ro.po +++ b/addons/project_long_term/i18n/ro.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/ru.po b/addons/project_long_term/i18n/ru.po index 95c7335b93f..8f15318e6a1 100644 --- a/addons/project_long_term/i18n/ru.po +++ b/addons/project_long_term/i18n/ru.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:46+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/sl.po b/addons/project_long_term/i18n/sl.po index f9093946b6b..b2a023f4308 100644 --- a/addons/project_long_term/i18n/sl.po +++ b/addons/project_long_term/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/sv.po b/addons/project_long_term/i18n/sv.po index d28fb5b5c10..b4e615e135d 100644 --- a/addons/project_long_term/i18n/sv.po +++ b/addons/project_long_term/i18n/sv.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/tr.po b/addons/project_long_term/i18n/tr.po index af65512a8e8..572115f4dd1 100644 --- a/addons/project_long_term/i18n/tr.po +++ b/addons/project_long_term/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_long_term/i18n/zh_CN.po b/addons/project_long_term/i18n/zh_CN.po index 2eda931c99a..4b5ad3f0e44 100644 --- a/addons/project_long_term/i18n/zh_CN.po +++ b/addons/project_long_term/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_long_term diff --git a/addons/project_mrp/i18n/ar.po b/addons/project_mrp/i18n/ar.po index bf9240c15ac..cdf721bc7ea 100644 --- a/addons/project_mrp/i18n/ar.po +++ b/addons/project_mrp/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/bg.po b/addons/project_mrp/i18n/bg.po index 4c7fa9f0eca..6cd45dbe0ed 100644 --- a/addons/project_mrp/i18n/bg.po +++ b/addons/project_mrp/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/bs.po b/addons/project_mrp/i18n/bs.po index b6305625db7..b153b7ef7f0 100644 --- a/addons/project_mrp/i18n/bs.po +++ b/addons/project_mrp/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/ca.po b/addons/project_mrp/i18n/ca.po index a5cbaa66068..391a4b63681 100644 --- a/addons/project_mrp/i18n/ca.po +++ b/addons/project_mrp/i18n/ca.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/cs.po b/addons/project_mrp/i18n/cs.po index 4edc2d8618d..74b53d6982f 100644 --- a/addons/project_mrp/i18n/cs.po +++ b/addons/project_mrp/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/project_mrp/i18n/da.po b/addons/project_mrp/i18n/da.po index 89f0c76ae82..e4110a7c760 100644 --- a/addons/project_mrp/i18n/da.po +++ b/addons/project_mrp/i18n/da.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/de.po b/addons/project_mrp/i18n/de.po index a6b87cf1334..1ef3da4024f 100644 --- a/addons/project_mrp/i18n/de.po +++ b/addons/project_mrp/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/el.po b/addons/project_mrp/i18n/el.po index 73ee3c4ec0b..172808ef0ce 100644 --- a/addons/project_mrp/i18n/el.po +++ b/addons/project_mrp/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/project_mrp/i18n/es.po b/addons/project_mrp/i18n/es.po index 156c5eb9fc4..4000152212c 100644 --- a/addons/project_mrp/i18n/es.po +++ b/addons/project_mrp/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/es_AR.po b/addons/project_mrp/i18n/es_AR.po index 29a04af2f64..7bd7370b60a 100644 --- a/addons/project_mrp/i18n/es_AR.po +++ b/addons/project_mrp/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/es_CR.po b/addons/project_mrp/i18n/es_CR.po index 2f8feb1d72e..15a97c8de93 100644 --- a/addons/project_mrp/i18n/es_CR.po +++ b/addons/project_mrp/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/project_mrp/i18n/es_EC.po b/addons/project_mrp/i18n/es_EC.po index 5c4ccf546d2..c64539ac675 100644 --- a/addons/project_mrp/i18n/es_EC.po +++ b/addons/project_mrp/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/et.po b/addons/project_mrp/i18n/et.po index 49103278883..f45c2d9f6a4 100644 --- a/addons/project_mrp/i18n/et.po +++ b/addons/project_mrp/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/fi.po b/addons/project_mrp/i18n/fi.po index ae5107bbd5e..1c6fde9c5e0 100644 --- a/addons/project_mrp/i18n/fi.po +++ b/addons/project_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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/fr.po b/addons/project_mrp/i18n/fr.po index baf6150e202..1dfae5145f8 100644 --- a/addons/project_mrp/i18n/fr.po +++ b/addons/project_mrp/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/gl.po b/addons/project_mrp/i18n/gl.po index 9770933079a..0f4000bf5ca 100644 --- a/addons/project_mrp/i18n/gl.po +++ b/addons/project_mrp/i18n/gl.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/gu.po b/addons/project_mrp/i18n/gu.po index 862b4ae107f..d31a3f4e47b 100644 --- a/addons/project_mrp/i18n/gu.po +++ b/addons/project_mrp/i18n/gu.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/hr.po b/addons/project_mrp/i18n/hr.po index f6647546f2e..bbaf5583cc2 100644 --- a/addons/project_mrp/i18n/hr.po +++ b/addons/project_mrp/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/project_mrp/i18n/hu.po b/addons/project_mrp/i18n/hu.po index 90191111eba..103668922d1 100644 --- a/addons/project_mrp/i18n/hu.po +++ b/addons/project_mrp/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/id.po b/addons/project_mrp/i18n/id.po index 2ec602a1a91..105cd0603c3 100644 --- a/addons/project_mrp/i18n/id.po +++ b/addons/project_mrp/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/it.po b/addons/project_mrp/i18n/it.po index 7ba0f677540..7ec1669528b 100644 --- a/addons/project_mrp/i18n/it.po +++ b/addons/project_mrp/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/ja.po b/addons/project_mrp/i18n/ja.po index fc720e1ba3b..42bc4bab5ed 100644 --- a/addons/project_mrp/i18n/ja.po +++ b/addons/project_mrp/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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/ko.po b/addons/project_mrp/i18n/ko.po index 7dba3744500..1624fc661cd 100644 --- a/addons/project_mrp/i18n/ko.po +++ b/addons/project_mrp/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/lt.po b/addons/project_mrp/i18n/lt.po index b6305625db7..b153b7ef7f0 100644 --- a/addons/project_mrp/i18n/lt.po +++ b/addons/project_mrp/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/lv.po b/addons/project_mrp/i18n/lv.po index 09f205d9c61..2dbcca6223a 100644 --- a/addons/project_mrp/i18n/lv.po +++ b/addons/project_mrp/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/mk.po b/addons/project_mrp/i18n/mk.po index d12eea77438..24246a0519d 100644 --- a/addons/project_mrp/i18n/mk.po +++ b/addons/project_mrp/i18n/mk.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/mn.po b/addons/project_mrp/i18n/mn.po index a7bfe910f32..e565a3e137e 100644 --- a/addons/project_mrp/i18n/mn.po +++ b/addons/project_mrp/i18n/mn.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/nb.po b/addons/project_mrp/i18n/nb.po index d9a4ddd0a68..6b7f21f01e3 100644 --- a/addons/project_mrp/i18n/nb.po +++ b/addons/project_mrp/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/nl.po b/addons/project_mrp/i18n/nl.po index a5f8f8a9e2f..24a867a0cba 100644 --- a/addons/project_mrp/i18n/nl.po +++ b/addons/project_mrp/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/nl_BE.po b/addons/project_mrp/i18n/nl_BE.po index 6e8d731da86..bf319ce769b 100644 --- a/addons/project_mrp/i18n/nl_BE.po +++ b/addons/project_mrp/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/pl.po b/addons/project_mrp/i18n/pl.po index cee76ae62ba..73598525105 100644 --- a/addons/project_mrp/i18n/pl.po +++ b/addons/project_mrp/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/pt.po b/addons/project_mrp/i18n/pt.po index af1e4a8e061..4dd5d25f86d 100644 --- a/addons/project_mrp/i18n/pt.po +++ b/addons/project_mrp/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/pt_BR.po b/addons/project_mrp/i18n/pt_BR.po index 740eee55f85..0d920fff76a 100644 --- a/addons/project_mrp/i18n/pt_BR.po +++ b/addons/project_mrp/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/ro.po b/addons/project_mrp/i18n/ro.po index b7a1e289ee5..83401f9d115 100644 --- a/addons/project_mrp/i18n/ro.po +++ b/addons/project_mrp/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/ru.po b/addons/project_mrp/i18n/ru.po index d85511d7e61..3c545b2dc82 100644 --- a/addons/project_mrp/i18n/ru.po +++ b/addons/project_mrp/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/sl.po b/addons/project_mrp/i18n/sl.po index f145535a8f5..66ae58bd4a6 100644 --- a/addons/project_mrp/i18n/sl.po +++ b/addons/project_mrp/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/sq.po b/addons/project_mrp/i18n/sq.po index 6c7e8d91ce7..4865c3972d3 100644 --- a/addons/project_mrp/i18n/sq.po +++ b/addons/project_mrp/i18n/sq.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/sv.po b/addons/project_mrp/i18n/sv.po index 8bd7d5ed67a..6ac59a5585f 100644 --- a/addons/project_mrp/i18n/sv.po +++ b/addons/project_mrp/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/tlh.po b/addons/project_mrp/i18n/tlh.po index b46558dbf24..6f246ae0819 100644 --- a/addons/project_mrp/i18n/tlh.po +++ b/addons/project_mrp/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/tr.po b/addons/project_mrp/i18n/tr.po index 83c1823bea4..2b1a3e1157c 100644 --- a/addons/project_mrp/i18n/tr.po +++ b/addons/project_mrp/i18n/tr.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/uk.po b/addons/project_mrp/i18n/uk.po index ed6a31bc0c1..7b381b03100 100644 --- a/addons/project_mrp/i18n/uk.po +++ b/addons/project_mrp/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/vi.po b/addons/project_mrp/i18n/vi.po index e7eaffe8016..d1ef0090290 100644 --- a/addons/project_mrp/i18n/vi.po +++ b/addons/project_mrp/i18n/vi.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/zh_CN.po b/addons/project_mrp/i18n/zh_CN.po index 597443b0702..eaeec965666 100644 --- a/addons/project_mrp/i18n/zh_CN.po +++ b/addons/project_mrp/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/zh_TW.po b/addons/project_mrp/i18n/zh_TW.po index f67bfd224b0..877390de132 100644 --- a/addons/project_mrp/i18n/zh_TW.po +++ b/addons/project_mrp/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_mrp diff --git a/addons/project_timesheet/i18n/ar.po b/addons/project_timesheet/i18n/ar.po index 71d8c72e9aa..5eba77a7fdf 100644 --- a/addons/project_timesheet/i18n/ar.po +++ b/addons/project_timesheet/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/bg.po b/addons/project_timesheet/i18n/bg.po index 83da3857a3b..fd60b857615 100644 --- a/addons/project_timesheet/i18n/bg.po +++ b/addons/project_timesheet/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/bs.po b/addons/project_timesheet/i18n/bs.po index 85a96c5bae4..a68991e50a5 100644 --- a/addons/project_timesheet/i18n/bs.po +++ b/addons/project_timesheet/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/ca.po b/addons/project_timesheet/i18n/ca.po index 8ec9138113f..773bf1492ae 100644 --- a/addons/project_timesheet/i18n/ca.po +++ b/addons/project_timesheet/i18n/ca.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/cs.po b/addons/project_timesheet/i18n/cs.po index 1c881b96ee4..aad18758b91 100644 --- a/addons/project_timesheet/i18n/cs.po +++ b/addons/project_timesheet/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/da.po b/addons/project_timesheet/i18n/da.po index d44df9b8a12..2f0ff625a44 100644 --- a/addons/project_timesheet/i18n/da.po +++ b/addons/project_timesheet/i18n/da.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/de.po b/addons/project_timesheet/i18n/de.po index bd4188c5932..2a1d16d71a7 100644 --- a/addons/project_timesheet/i18n/de.po +++ b/addons/project_timesheet/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/el.po b/addons/project_timesheet/i18n/el.po index c9ba43b70e4..3ce463218de 100644 --- a/addons/project_timesheet/i18n/el.po +++ b/addons/project_timesheet/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/project_timesheet/i18n/es.po b/addons/project_timesheet/i18n/es.po index f2ad9ca1046..fa040ba8928 100644 --- a/addons/project_timesheet/i18n/es.po +++ b/addons/project_timesheet/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/es_AR.po b/addons/project_timesheet/i18n/es_AR.po index 0ec8290fa2c..af697893bef 100644 --- a/addons/project_timesheet/i18n/es_AR.po +++ b/addons/project_timesheet/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/es_CR.po b/addons/project_timesheet/i18n/es_CR.po index a6e8e3f4b1c..6fa6d54c3db 100644 --- a/addons/project_timesheet/i18n/es_CR.po +++ b/addons/project_timesheet/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/project_timesheet/i18n/et.po b/addons/project_timesheet/i18n/et.po index c302e6c0cf1..8c9e2b26044 100644 --- a/addons/project_timesheet/i18n/et.po +++ b/addons/project_timesheet/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/fi.po b/addons/project_timesheet/i18n/fi.po index e138df91eb6..98010c35606 100644 --- a/addons/project_timesheet/i18n/fi.po +++ b/addons/project_timesheet/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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/fr.po b/addons/project_timesheet/i18n/fr.po index 8433a7b92b1..81696c739da 100644 --- a/addons/project_timesheet/i18n/fr.po +++ b/addons/project_timesheet/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/gl.po b/addons/project_timesheet/i18n/gl.po index b4e4ebe8f82..b0877ae4a0d 100644 --- a/addons/project_timesheet/i18n/gl.po +++ b/addons/project_timesheet/i18n/gl.po @@ -15,7 +15,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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/hr.po b/addons/project_timesheet/i18n/hr.po index 6e18280a761..d5bdd7159b2 100644 --- a/addons/project_timesheet/i18n/hr.po +++ b/addons/project_timesheet/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/project_timesheet/i18n/hu.po b/addons/project_timesheet/i18n/hu.po index 006a25c2882..49aa003dd8b 100644 --- a/addons/project_timesheet/i18n/hu.po +++ b/addons/project_timesheet/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/id.po b/addons/project_timesheet/i18n/id.po index 13f94f89709..3dd18e82c0c 100644 --- a/addons/project_timesheet/i18n/id.po +++ b/addons/project_timesheet/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/it.po b/addons/project_timesheet/i18n/it.po index 4508ddb9c37..d94d5771f8c 100644 --- a/addons/project_timesheet/i18n/it.po +++ b/addons/project_timesheet/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/ja.po b/addons/project_timesheet/i18n/ja.po index bf1f51d7aa8..bc485101562 100644 --- a/addons/project_timesheet/i18n/ja.po +++ b/addons/project_timesheet/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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/ko.po b/addons/project_timesheet/i18n/ko.po index 26e5d4d8d53..34e9d22a1da 100644 --- a/addons/project_timesheet/i18n/ko.po +++ b/addons/project_timesheet/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/lt.po b/addons/project_timesheet/i18n/lt.po index 2b7a5c9dc27..7f11b2aebd6 100644 --- a/addons/project_timesheet/i18n/lt.po +++ b/addons/project_timesheet/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/lv.po b/addons/project_timesheet/i18n/lv.po index c0215e27351..daec173c06f 100644 --- a/addons/project_timesheet/i18n/lv.po +++ b/addons/project_timesheet/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/mk.po b/addons/project_timesheet/i18n/mk.po index d0a667b3dc3..2e228e0fef7 100644 --- a/addons/project_timesheet/i18n/mk.po +++ b/addons/project_timesheet/i18n/mk.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/mn.po b/addons/project_timesheet/i18n/mn.po index 2d5f35b7f9e..d1d4f111934 100644 --- a/addons/project_timesheet/i18n/mn.po +++ b/addons/project_timesheet/i18n/mn.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/nl.po b/addons/project_timesheet/i18n/nl.po index 2ebca6b48b3..fb88db01218 100644 --- a/addons/project_timesheet/i18n/nl.po +++ b/addons/project_timesheet/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/nl_BE.po b/addons/project_timesheet/i18n/nl_BE.po index a829a33ef88..10aa0ecc94c 100644 --- a/addons/project_timesheet/i18n/nl_BE.po +++ b/addons/project_timesheet/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/pl.po b/addons/project_timesheet/i18n/pl.po index 0e2a95e16f3..bad0714e1cc 100644 --- a/addons/project_timesheet/i18n/pl.po +++ b/addons/project_timesheet/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/pt.po b/addons/project_timesheet/i18n/pt.po index f8d82190c8b..ee602073fd2 100644 --- a/addons/project_timesheet/i18n/pt.po +++ b/addons/project_timesheet/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/pt_BR.po b/addons/project_timesheet/i18n/pt_BR.po index 46b9183e945..0ad78cd343c 100644 --- a/addons/project_timesheet/i18n/pt_BR.po +++ b/addons/project_timesheet/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/ro.po b/addons/project_timesheet/i18n/ro.po index 90f2491d449..a5c5b10cfca 100644 --- a/addons/project_timesheet/i18n/ro.po +++ b/addons/project_timesheet/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/ru.po b/addons/project_timesheet/i18n/ru.po index ba06c936232..632a764eab8 100644 --- a/addons/project_timesheet/i18n/ru.po +++ b/addons/project_timesheet/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/sl.po b/addons/project_timesheet/i18n/sl.po index a3307c74107..afe162b858b 100644 --- a/addons/project_timesheet/i18n/sl.po +++ b/addons/project_timesheet/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/sq.po b/addons/project_timesheet/i18n/sq.po index 98195c25f12..cf7fda8ee27 100644 --- a/addons/project_timesheet/i18n/sq.po +++ b/addons/project_timesheet/i18n/sq.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:30+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/sv.po b/addons/project_timesheet/i18n/sv.po index 7f58cdfc7ef..55e6147b55a 100644 --- a/addons/project_timesheet/i18n/sv.po +++ b/addons/project_timesheet/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/tlh.po b/addons/project_timesheet/i18n/tlh.po index c6d9adf0c88..6c0d15aa59a 100644 --- a/addons/project_timesheet/i18n/tlh.po +++ b/addons/project_timesheet/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/tr.po b/addons/project_timesheet/i18n/tr.po index 56d3b277f97..1c27e8d969a 100644 --- a/addons/project_timesheet/i18n/tr.po +++ b/addons/project_timesheet/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/uk.po b/addons/project_timesheet/i18n/uk.po index 330cacc6faa..889eaff15da 100644 --- a/addons/project_timesheet/i18n/uk.po +++ b/addons/project_timesheet/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/vi.po b/addons/project_timesheet/i18n/vi.po index 369bb94bf49..106db56cc71 100644 --- a/addons/project_timesheet/i18n/vi.po +++ b/addons/project_timesheet/i18n/vi.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-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/zh_CN.po b/addons/project_timesheet/i18n/zh_CN.po index d0f6e413613..6c118d46b75 100644 --- a/addons/project_timesheet/i18n/zh_CN.po +++ b/addons/project_timesheet/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/zh_TW.po b/addons/project_timesheet/i18n/zh_TW.po index d7a777739e5..1818f631981 100644 --- a/addons/project_timesheet/i18n/zh_TW.po +++ b/addons/project_timesheet/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:31+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: project_timesheet diff --git a/addons/purchase/i18n/ar.po b/addons/purchase/i18n/ar.po index 60fc69631be..f9fa489a200 100644 --- a/addons/purchase/i18n/ar.po +++ b/addons/purchase/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/bg.po b/addons/purchase/i18n/bg.po index 2bfa0de9eff..9678a491999 100644 --- a/addons/purchase/i18n/bg.po +++ b/addons/purchase/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/bs.po b/addons/purchase/i18n/bs.po index e694e453e1f..08c5e86d64f 100644 --- a/addons/purchase/i18n/bs.po +++ b/addons/purchase/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/ca.po b/addons/purchase/i18n/ca.po index 9b841555587..741384f6d3c 100644 --- a/addons/purchase/i18n/ca.po +++ b/addons/purchase/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/cs.po b/addons/purchase/i18n/cs.po index b0db90ebfbe..f6a38cddf73 100644 --- a/addons/purchase/i18n/cs.po +++ b/addons/purchase/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/purchase/i18n/da.po b/addons/purchase/i18n/da.po index f085edfef86..3897ed437d2 100644 --- a/addons/purchase/i18n/da.po +++ b/addons/purchase/i18n/da.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-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/de.po b/addons/purchase/i18n/de.po index 9c1b7765a90..7c144e3ffe7 100644 --- a/addons/purchase/i18n/de.po +++ b/addons/purchase/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/el.po b/addons/purchase/i18n/el.po index c45a78c8f14..a5ac80c1980 100644 --- a/addons/purchase/i18n/el.po +++ b/addons/purchase/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/purchase/i18n/en_GB.po b/addons/purchase/i18n/en_GB.po index 474fe14aeb9..670d5e8c8fd 100644 --- a/addons/purchase/i18n/en_GB.po +++ b/addons/purchase/i18n/en_GB.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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/es.po b/addons/purchase/i18n/es.po index 62a2018c331..6d06dd1b090 100644 --- a/addons/purchase/i18n/es.po +++ b/addons/purchase/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/es_AR.po b/addons/purchase/i18n/es_AR.po index bddfb047bf8..d1765cb7058 100644 --- a/addons/purchase/i18n/es_AR.po +++ b/addons/purchase/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/es_CL.po b/addons/purchase/i18n/es_CL.po index 842e7c356ef..f2d9eb8eda1 100644 --- a/addons/purchase/i18n/es_CL.po +++ b/addons/purchase/i18n/es_CL.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/es_CR.po b/addons/purchase/i18n/es_CR.po index 49423330130..30597dba62b 100644 --- a/addons/purchase/i18n/es_CR.po +++ b/addons/purchase/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/purchase/i18n/es_EC.po b/addons/purchase/i18n/es_EC.po index e2af9f063f0..a445d9722aa 100644 --- a/addons/purchase/i18n/es_EC.po +++ b/addons/purchase/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/es_MX.po b/addons/purchase/i18n/es_MX.po index 1acc25db367..b46b69f2c44 100644 --- a/addons/purchase/i18n/es_MX.po +++ b/addons/purchase/i18n/es_MX.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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/et.po b/addons/purchase/i18n/et.po index b8e8125bff7..48f50feae3a 100644 --- a/addons/purchase/i18n/et.po +++ b/addons/purchase/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/fi.po b/addons/purchase/i18n/fi.po index 63ed7e9f306..88ca0ce80d2 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-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/fr.po b/addons/purchase/i18n/fr.po index 95bd048177f..353789c2724 100644 --- a/addons/purchase/i18n/fr.po +++ b/addons/purchase/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/gl.po b/addons/purchase/i18n/gl.po index 0e70ca25002..9382fdfa139 100644 --- a/addons/purchase/i18n/gl.po +++ b/addons/purchase/i18n/gl.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-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/hr.po b/addons/purchase/i18n/hr.po index eb9323bf167..116e03f83e9 100644 --- a/addons/purchase/i18n/hr.po +++ b/addons/purchase/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/hu.po b/addons/purchase/i18n/hu.po index 1c9e4dc422d..b9a11aeffdc 100644 --- a/addons/purchase/i18n/hu.po +++ b/addons/purchase/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/id.po b/addons/purchase/i18n/id.po index 7a82d0e9402..545602da152 100644 --- a/addons/purchase/i18n/id.po +++ b/addons/purchase/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/it.po b/addons/purchase/i18n/it.po index d71970be687..d82caa0c679 100644 --- a/addons/purchase/i18n/it.po +++ b/addons/purchase/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/ja.po b/addons/purchase/i18n/ja.po index 13cf6c8dc4c..2cbb83fa2cf 100644 --- a/addons/purchase/i18n/ja.po +++ b/addons/purchase/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-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/ko.po b/addons/purchase/i18n/ko.po index 2a77509f6d2..d63c79e7595 100644 --- a/addons/purchase/i18n/ko.po +++ b/addons/purchase/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/lt.po b/addons/purchase/i18n/lt.po index 3e915c3a6de..26e4abfcd03 100644 --- a/addons/purchase/i18n/lt.po +++ b/addons/purchase/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/lv.po b/addons/purchase/i18n/lv.po index 7039d9ffced..4a04096c225 100644 --- a/addons/purchase/i18n/lv.po +++ b/addons/purchase/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/mk.po b/addons/purchase/i18n/mk.po index 9551af808e2..c867724efa8 100644 --- a/addons/purchase/i18n/mk.po +++ b/addons/purchase/i18n/mk.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-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/mn.po b/addons/purchase/i18n/mn.po index 01f99b42d9b..11d458e038d 100644 --- a/addons/purchase/i18n/mn.po +++ b/addons/purchase/i18n/mn.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/nb.po b/addons/purchase/i18n/nb.po index 2a2a4d3231a..3119992c490 100644 --- a/addons/purchase/i18n/nb.po +++ b/addons/purchase/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/nl.po b/addons/purchase/i18n/nl.po index 0aaf97db057..47eb885c2fc 100644 --- a/addons/purchase/i18n/nl.po +++ b/addons/purchase/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase @@ -730,7 +730,7 @@ msgstr "Definieer een kostenrekening voor dit product: \"%s\" (id:%d)." #. module: purchase #: view:purchase.order:0 msgid "(update)" -msgstr "(update)" +msgstr "(bijwerken)" #. module: purchase #: view:purchase.order:0 diff --git a/addons/purchase/i18n/nl_BE.po b/addons/purchase/i18n/nl_BE.po index 79e05ecd293..c1a9e17b52b 100644 --- a/addons/purchase/i18n/nl_BE.po +++ b/addons/purchase/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/pl.po b/addons/purchase/i18n/pl.po index 4530a9cc9bd..ab0371af514 100644 --- a/addons/purchase/i18n/pl.po +++ b/addons/purchase/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/pt.po b/addons/purchase/i18n/pt.po index e7b65585c95..fa676c4a742 100644 --- a/addons/purchase/i18n/pt.po +++ b/addons/purchase/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/pt_BR.po b/addons/purchase/i18n/pt_BR.po index 1e27cf2c1d4..95e6469e94a 100644 --- a/addons/purchase/i18n/pt_BR.po +++ b/addons/purchase/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/ro.po b/addons/purchase/i18n/ro.po index 49ab4232c89..f7084d8439b 100644 --- a/addons/purchase/i18n/ro.po +++ b/addons/purchase/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/ru.po b/addons/purchase/i18n/ru.po index aeb43224a39..1c9250e309f 100644 --- a/addons/purchase/i18n/ru.po +++ b/addons/purchase/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/sk.po b/addons/purchase/i18n/sk.po index 46b84db093e..f8447f3b9e7 100644 --- a/addons/purchase/i18n/sk.po +++ b/addons/purchase/i18n/sk.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-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/sl.po b/addons/purchase/i18n/sl.po index ccfe80cc9cd..76e9fa9b72a 100644 --- a/addons/purchase/i18n/sl.po +++ b/addons/purchase/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/sq.po b/addons/purchase/i18n/sq.po index 338e2dd8fa1..5846448e4d1 100644 --- a/addons/purchase/i18n/sq.po +++ b/addons/purchase/i18n/sq.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-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:02+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/sr.po b/addons/purchase/i18n/sr.po index 244d24a0596..6b5989f0ed6 100644 --- a/addons/purchase/i18n/sr.po +++ b/addons/purchase/i18n/sr.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-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/sr@latin.po b/addons/purchase/i18n/sr@latin.po index ebbe4bfd421..ab7dbc907bf 100644 --- a/addons/purchase/i18n/sr@latin.po +++ b/addons/purchase/i18n/sr@latin.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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/sv.po b/addons/purchase/i18n/sv.po index 2af99cfc451..071fd8f350d 100644 --- a/addons/purchase/i18n/sv.po +++ b/addons/purchase/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/th.po b/addons/purchase/i18n/th.po index c1935d5e568..00911eb4887 100644 --- a/addons/purchase/i18n/th.po +++ b/addons/purchase/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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/tlh.po b/addons/purchase/i18n/tlh.po index c66ce262493..f985c6f85fc 100644 --- a/addons/purchase/i18n/tlh.po +++ b/addons/purchase/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/tr.po b/addons/purchase/i18n/tr.po index cfa861891f8..d34a1cbbbfc 100644 --- a/addons/purchase/i18n/tr.po +++ b/addons/purchase/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/uk.po b/addons/purchase/i18n/uk.po index 8983f3b1c3b..f1a61e3360e 100644 --- a/addons/purchase/i18n/uk.po +++ b/addons/purchase/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/vi.po b/addons/purchase/i18n/vi.po index 39b83f7a5a6..1de1a02260a 100644 --- a/addons/purchase/i18n/vi.po +++ b/addons/purchase/i18n/vi.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-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:03+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/zh_CN.po b/addons/purchase/i18n/zh_CN.po index e56e327f40f..14aebdce2c3 100644 --- a/addons/purchase/i18n/zh_CN.po +++ b/addons/purchase/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase/i18n/zh_TW.po b/addons/purchase/i18n/zh_TW.po index d1b6ab5645d..fdc66a34293 100644 --- a/addons/purchase/i18n/zh_TW.po +++ b/addons/purchase/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:05+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:04+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase diff --git a/addons/purchase_analytic_plans/i18n/ar.po b/addons/purchase_analytic_plans/i18n/ar.po index 3860a82e75b..e0376e001f2 100644 --- a/addons/purchase_analytic_plans/i18n/ar.po +++ b/addons/purchase_analytic_plans/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/bg.po b/addons/purchase_analytic_plans/i18n/bg.po index 7878ce7c824..ff0e1e01c2b 100644 --- a/addons/purchase_analytic_plans/i18n/bg.po +++ b/addons/purchase_analytic_plans/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/bs.po b/addons/purchase_analytic_plans/i18n/bs.po index afe3fffcae9..9f5f002c6ab 100644 --- a/addons/purchase_analytic_plans/i18n/bs.po +++ b/addons/purchase_analytic_plans/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/ca.po b/addons/purchase_analytic_plans/i18n/ca.po index c293265a2ae..4ef36ae0f9f 100644 --- a/addons/purchase_analytic_plans/i18n/ca.po +++ b/addons/purchase_analytic_plans/i18n/ca.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/cs.po b/addons/purchase_analytic_plans/i18n/cs.po index 534b8e4d637..029ce55a2a4 100644 --- a/addons/purchase_analytic_plans/i18n/cs.po +++ b/addons/purchase_analytic_plans/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/da.po b/addons/purchase_analytic_plans/i18n/da.po index c4c4abb8d57..d4858aa4cb4 100644 --- a/addons/purchase_analytic_plans/i18n/da.po +++ b/addons/purchase_analytic_plans/i18n/da.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/de.po b/addons/purchase_analytic_plans/i18n/de.po index adb7fb43248..fc643885435 100644 --- a/addons/purchase_analytic_plans/i18n/de.po +++ b/addons/purchase_analytic_plans/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/el.po b/addons/purchase_analytic_plans/i18n/el.po index 900dd90bb09..390233d801a 100644 --- a/addons/purchase_analytic_plans/i18n/el.po +++ b/addons/purchase_analytic_plans/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/purchase_analytic_plans/i18n/es.po b/addons/purchase_analytic_plans/i18n/es.po index b6ec6f321e9..d67525aeaa5 100644 --- a/addons/purchase_analytic_plans/i18n/es.po +++ b/addons/purchase_analytic_plans/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/es_AR.po b/addons/purchase_analytic_plans/i18n/es_AR.po index 0a02c5f6220..dfaf81e993b 100644 --- a/addons/purchase_analytic_plans/i18n/es_AR.po +++ b/addons/purchase_analytic_plans/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/es_CR.po b/addons/purchase_analytic_plans/i18n/es_CR.po index f453981da19..52a563fcc53 100644 --- a/addons/purchase_analytic_plans/i18n/es_CR.po +++ b/addons/purchase_analytic_plans/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/purchase_analytic_plans/i18n/et.po b/addons/purchase_analytic_plans/i18n/et.po index bc666db2440..17852fb0f1a 100644 --- a/addons/purchase_analytic_plans/i18n/et.po +++ b/addons/purchase_analytic_plans/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/fi.po b/addons/purchase_analytic_plans/i18n/fi.po index 50780d99b42..8a764344f0f 100644 --- a/addons/purchase_analytic_plans/i18n/fi.po +++ b/addons/purchase_analytic_plans/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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/fr.po b/addons/purchase_analytic_plans/i18n/fr.po index 1c3d2f5a614..0004bff98ad 100644 --- a/addons/purchase_analytic_plans/i18n/fr.po +++ b/addons/purchase_analytic_plans/i18n/fr.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/gl.po b/addons/purchase_analytic_plans/i18n/gl.po index e5ca02dba92..ba770f48d32 100644 --- a/addons/purchase_analytic_plans/i18n/gl.po +++ b/addons/purchase_analytic_plans/i18n/gl.po @@ -15,7 +15,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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/hr.po b/addons/purchase_analytic_plans/i18n/hr.po index 3b374da7981..51cb57f2adf 100644 --- a/addons/purchase_analytic_plans/i18n/hr.po +++ b/addons/purchase_analytic_plans/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/hu.po b/addons/purchase_analytic_plans/i18n/hu.po index 475838bb98f..f448cc70e48 100644 --- a/addons/purchase_analytic_plans/i18n/hu.po +++ b/addons/purchase_analytic_plans/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/id.po b/addons/purchase_analytic_plans/i18n/id.po index ee46c2d9e0b..64d1a792306 100644 --- a/addons/purchase_analytic_plans/i18n/id.po +++ b/addons/purchase_analytic_plans/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/it.po b/addons/purchase_analytic_plans/i18n/it.po index 7f573b22d0d..f1998dbe2e5 100644 --- a/addons/purchase_analytic_plans/i18n/it.po +++ b/addons/purchase_analytic_plans/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/ja.po b/addons/purchase_analytic_plans/i18n/ja.po index 371e64240d8..65d59885e01 100644 --- a/addons/purchase_analytic_plans/i18n/ja.po +++ b/addons/purchase_analytic_plans/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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/ko.po b/addons/purchase_analytic_plans/i18n/ko.po index b182f47780d..e5de5386b9f 100644 --- a/addons/purchase_analytic_plans/i18n/ko.po +++ b/addons/purchase_analytic_plans/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/lt.po b/addons/purchase_analytic_plans/i18n/lt.po index a1cee0bdb6a..cb0208fcd14 100644 --- a/addons/purchase_analytic_plans/i18n/lt.po +++ b/addons/purchase_analytic_plans/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/mk.po b/addons/purchase_analytic_plans/i18n/mk.po index ab5978c592a..5d76ceb944e 100644 --- a/addons/purchase_analytic_plans/i18n/mk.po +++ b/addons/purchase_analytic_plans/i18n/mk.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/mn.po b/addons/purchase_analytic_plans/i18n/mn.po index fc228fff56e..443e6ff0d9b 100644 --- a/addons/purchase_analytic_plans/i18n/mn.po +++ b/addons/purchase_analytic_plans/i18n/mn.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/nl.po b/addons/purchase_analytic_plans/i18n/nl.po index 6affa6f24ba..1ff75c046d0 100644 --- a/addons/purchase_analytic_plans/i18n/nl.po +++ b/addons/purchase_analytic_plans/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/nl_BE.po b/addons/purchase_analytic_plans/i18n/nl_BE.po index 44ea0978fbb..e5d49ac9545 100644 --- a/addons/purchase_analytic_plans/i18n/nl_BE.po +++ b/addons/purchase_analytic_plans/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/pl.po b/addons/purchase_analytic_plans/i18n/pl.po index 85bf754fcb3..af4b332d4c9 100644 --- a/addons/purchase_analytic_plans/i18n/pl.po +++ b/addons/purchase_analytic_plans/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/pt.po b/addons/purchase_analytic_plans/i18n/pt.po index e8f6b024557..b29b70c86e6 100644 --- a/addons/purchase_analytic_plans/i18n/pt.po +++ b/addons/purchase_analytic_plans/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/pt_BR.po b/addons/purchase_analytic_plans/i18n/pt_BR.po index 3b9e1d62aee..3a1a256d2c5 100644 --- a/addons/purchase_analytic_plans/i18n/pt_BR.po +++ b/addons/purchase_analytic_plans/i18n/pt_BR.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/ro.po b/addons/purchase_analytic_plans/i18n/ro.po index 9fdb1c53322..97092c7b4e8 100644 --- a/addons/purchase_analytic_plans/i18n/ro.po +++ b/addons/purchase_analytic_plans/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/ru.po b/addons/purchase_analytic_plans/i18n/ru.po index f8b148c37bc..3f2d0a6d200 100644 --- a/addons/purchase_analytic_plans/i18n/ru.po +++ b/addons/purchase_analytic_plans/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/sl.po b/addons/purchase_analytic_plans/i18n/sl.po index 5bd955c4e16..3df241060a0 100644 --- a/addons/purchase_analytic_plans/i18n/sl.po +++ b/addons/purchase_analytic_plans/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/sq.po b/addons/purchase_analytic_plans/i18n/sq.po index eeec9b67fe2..d7d7774f55a 100644 --- a/addons/purchase_analytic_plans/i18n/sq.po +++ b/addons/purchase_analytic_plans/i18n/sq.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/sr.po b/addons/purchase_analytic_plans/i18n/sr.po index e151ad22d4d..16bf0099f9d 100644 --- a/addons/purchase_analytic_plans/i18n/sr.po +++ b/addons/purchase_analytic_plans/i18n/sr.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/sr@latin.po b/addons/purchase_analytic_plans/i18n/sr@latin.po index 582fb160ce1..733b1b296da 100644 --- a/addons/purchase_analytic_plans/i18n/sr@latin.po +++ b/addons/purchase_analytic_plans/i18n/sr@latin.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/sv.po b/addons/purchase_analytic_plans/i18n/sv.po index 5fd8d0222ff..9d4d65402ec 100644 --- a/addons/purchase_analytic_plans/i18n/sv.po +++ b/addons/purchase_analytic_plans/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/tlh.po b/addons/purchase_analytic_plans/i18n/tlh.po index a7f755c1ae8..807b1d2b021 100644 --- a/addons/purchase_analytic_plans/i18n/tlh.po +++ b/addons/purchase_analytic_plans/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/tr.po b/addons/purchase_analytic_plans/i18n/tr.po index a7402c91a1f..f0c22f38874 100644 --- a/addons/purchase_analytic_plans/i18n/tr.po +++ b/addons/purchase_analytic_plans/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/uk.po b/addons/purchase_analytic_plans/i18n/uk.po index 83484f84710..d6ecb994836 100644 --- a/addons/purchase_analytic_plans/i18n/uk.po +++ b/addons/purchase_analytic_plans/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/ur.po b/addons/purchase_analytic_plans/i18n/ur.po index cebd8e94b32..83dd00d9529 100644 --- a/addons/purchase_analytic_plans/i18n/ur.po +++ b/addons/purchase_analytic_plans/i18n/ur.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/vi.po b/addons/purchase_analytic_plans/i18n/vi.po index 34fe067eb14..66717eb38c7 100644 --- a/addons/purchase_analytic_plans/i18n/vi.po +++ b/addons/purchase_analytic_plans/i18n/vi.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/zh_CN.po b/addons/purchase_analytic_plans/i18n/zh_CN.po index 400c527b072..a33344a4013 100644 --- a/addons/purchase_analytic_plans/i18n/zh_CN.po +++ b/addons/purchase_analytic_plans/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/zh_TW.po b/addons/purchase_analytic_plans/i18n/zh_TW.po index 7d8e04e73d6..5850523c44f 100644 --- a/addons/purchase_analytic_plans/i18n/zh_TW.po +++ b/addons/purchase_analytic_plans/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_double_validation/i18n/ar.po b/addons/purchase_double_validation/i18n/ar.po index 592abb0e21e..37ad7f33afa 100644 --- a/addons/purchase_double_validation/i18n/ar.po +++ b/addons/purchase_double_validation/i18n/ar.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/bg.po b/addons/purchase_double_validation/i18n/bg.po index 227845e8716..cf1290b588a 100644 --- a/addons/purchase_double_validation/i18n/bg.po +++ b/addons/purchase_double_validation/i18n/bg.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/ca.po b/addons/purchase_double_validation/i18n/ca.po index 06de6912004..49ca1e3e115 100644 --- a/addons/purchase_double_validation/i18n/ca.po +++ b/addons/purchase_double_validation/i18n/ca.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/da.po b/addons/purchase_double_validation/i18n/da.po index 8be6828f58d..9c303c798a1 100644 --- a/addons/purchase_double_validation/i18n/da.po +++ b/addons/purchase_double_validation/i18n/da.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/de.po b/addons/purchase_double_validation/i18n/de.po index efbb3c0efa8..ea80f910f8b 100644 --- a/addons/purchase_double_validation/i18n/de.po +++ b/addons/purchase_double_validation/i18n/de.po @@ -15,7 +15,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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/es.po b/addons/purchase_double_validation/i18n/es.po index 2496362d6fe..ab940992395 100644 --- a/addons/purchase_double_validation/i18n/es.po +++ b/addons/purchase_double_validation/i18n/es.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/es_CR.po b/addons/purchase_double_validation/i18n/es_CR.po index c5f44c54462..ab180705002 100644 --- a/addons/purchase_double_validation/i18n/es_CR.po +++ b/addons/purchase_double_validation/i18n/es_CR.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/purchase_double_validation/i18n/es_EC.po b/addons/purchase_double_validation/i18n/es_EC.po index fcf4f8a8f7e..3e6a2694de2 100644 --- a/addons/purchase_double_validation/i18n/es_EC.po +++ b/addons/purchase_double_validation/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/fi.po b/addons/purchase_double_validation/i18n/fi.po index 5ea5bbdba68..69e5de65a82 100644 --- a/addons/purchase_double_validation/i18n/fi.po +++ b/addons/purchase_double_validation/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/fr.po b/addons/purchase_double_validation/i18n/fr.po index 1fca9a79ec5..fd60bd6bd36 100644 --- a/addons/purchase_double_validation/i18n/fr.po +++ b/addons/purchase_double_validation/i18n/fr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/gl.po b/addons/purchase_double_validation/i18n/gl.po index c81e6ca03c1..b2f38a8395e 100644 --- a/addons/purchase_double_validation/i18n/gl.po +++ b/addons/purchase_double_validation/i18n/gl.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/hr.po b/addons/purchase_double_validation/i18n/hr.po index 525eabfd5f9..c4e2a764071 100644 --- a/addons/purchase_double_validation/i18n/hr.po +++ b/addons/purchase_double_validation/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/hu.po b/addons/purchase_double_validation/i18n/hu.po index b37f682b4c6..804223d2a69 100644 --- a/addons/purchase_double_validation/i18n/hu.po +++ b/addons/purchase_double_validation/i18n/hu.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/it.po b/addons/purchase_double_validation/i18n/it.po index 552eaed991e..7c961ee0404 100644 --- a/addons/purchase_double_validation/i18n/it.po +++ b/addons/purchase_double_validation/i18n/it.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/ja.po b/addons/purchase_double_validation/i18n/ja.po index ad04ac68e15..19a5f5c0f05 100644 --- a/addons/purchase_double_validation/i18n/ja.po +++ b/addons/purchase_double_validation/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/mk.po b/addons/purchase_double_validation/i18n/mk.po index d5607eff2f4..32470f1d87d 100644 --- a/addons/purchase_double_validation/i18n/mk.po +++ b/addons/purchase_double_validation/i18n/mk.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/mn.po b/addons/purchase_double_validation/i18n/mn.po index 43149c868de..112dc095fc1 100644 --- a/addons/purchase_double_validation/i18n/mn.po +++ b/addons/purchase_double_validation/i18n/mn.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/nl.po b/addons/purchase_double_validation/i18n/nl.po index 0abe0c86d4a..69281ac978f 100644 --- a/addons/purchase_double_validation/i18n/nl.po +++ b/addons/purchase_double_validation/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/pl.po b/addons/purchase_double_validation/i18n/pl.po index 9e3045aa0b2..fe3f2e0635e 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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/pt.po b/addons/purchase_double_validation/i18n/pt.po index e84f4969c32..0353fde2fda 100644 --- a/addons/purchase_double_validation/i18n/pt.po +++ b/addons/purchase_double_validation/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/pt_BR.po b/addons/purchase_double_validation/i18n/pt_BR.po index 73eecb002ce..d456a4318a1 100644 --- a/addons/purchase_double_validation/i18n/pt_BR.po +++ b/addons/purchase_double_validation/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/ro.po b/addons/purchase_double_validation/i18n/ro.po index 697d781f6b8..dec2b5a6ba7 100644 --- a/addons/purchase_double_validation/i18n/ro.po +++ b/addons/purchase_double_validation/i18n/ro.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/ru.po b/addons/purchase_double_validation/i18n/ru.po index 0617a2590fd..f939506e44e 100644 --- a/addons/purchase_double_validation/i18n/ru.po +++ b/addons/purchase_double_validation/i18n/ru.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/sl.po b/addons/purchase_double_validation/i18n/sl.po index df61f09e752..1b509413922 100644 --- a/addons/purchase_double_validation/i18n/sl.po +++ b/addons/purchase_double_validation/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/sv.po b/addons/purchase_double_validation/i18n/sv.po index bebb4d92fed..403709923ed 100644 --- a/addons/purchase_double_validation/i18n/sv.po +++ b/addons/purchase_double_validation/i18n/sv.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/tr.po b/addons/purchase_double_validation/i18n/tr.po index 7ef7db4baa0..ac87921c382 100644 --- a/addons/purchase_double_validation/i18n/tr.po +++ b/addons/purchase_double_validation/i18n/tr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_double_validation/i18n/zh_CN.po b/addons/purchase_double_validation/i18n/zh_CN.po index 93bbe2b42ad..12a6c652e68 100644 --- a/addons/purchase_double_validation/i18n/zh_CN.po +++ b/addons/purchase_double_validation/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_double_validation diff --git a/addons/purchase_requisition/i18n/ar.po b/addons/purchase_requisition/i18n/ar.po index d4ffd492a8f..f77968b68a6 100644 --- a/addons/purchase_requisition/i18n/ar.po +++ b/addons/purchase_requisition/i18n/ar.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/bg.po b/addons/purchase_requisition/i18n/bg.po index ce0399bfb76..d9808be3787 100644 --- a/addons/purchase_requisition/i18n/bg.po +++ b/addons/purchase_requisition/i18n/bg.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/ca.po b/addons/purchase_requisition/i18n/ca.po index b91e73ec096..17f4ed00ede 100644 --- a/addons/purchase_requisition/i18n/ca.po +++ b/addons/purchase_requisition/i18n/ca.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/da.po b/addons/purchase_requisition/i18n/da.po index db42aa0298c..567b1dabf8c 100644 --- a/addons/purchase_requisition/i18n/da.po +++ b/addons/purchase_requisition/i18n/da.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/de.po b/addons/purchase_requisition/i18n/de.po index f7fcb7a3f8b..b6d3adb74d7 100644 --- a/addons/purchase_requisition/i18n/de.po +++ b/addons/purchase_requisition/i18n/de.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/es.po b/addons/purchase_requisition/i18n/es.po index 8c6276a1228..529a3c29d8e 100644 --- a/addons/purchase_requisition/i18n/es.po +++ b/addons/purchase_requisition/i18n/es.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/es_CR.po b/addons/purchase_requisition/i18n/es_CR.po index 1150379496d..e7ea06fa194 100644 --- a/addons/purchase_requisition/i18n/es_CR.po +++ b/addons/purchase_requisition/i18n/es_CR.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/purchase_requisition/i18n/fi.po b/addons/purchase_requisition/i18n/fi.po index 31b02dad4a1..ec46c6b80a9 100644 --- a/addons/purchase_requisition/i18n/fi.po +++ b/addons/purchase_requisition/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/fr.po b/addons/purchase_requisition/i18n/fr.po index 34f1d8b7838..f072db9a17f 100644 --- a/addons/purchase_requisition/i18n/fr.po +++ b/addons/purchase_requisition/i18n/fr.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/hr.po b/addons/purchase_requisition/i18n/hr.po index 92410ed6eda..f2ff6c56c95 100644 --- a/addons/purchase_requisition/i18n/hr.po +++ b/addons/purchase_requisition/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/hu.po b/addons/purchase_requisition/i18n/hu.po index 9d4c7048fd1..e83d605489f 100644 --- a/addons/purchase_requisition/i18n/hu.po +++ b/addons/purchase_requisition/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/id.po b/addons/purchase_requisition/i18n/id.po index a39b2618b60..8dc28142124 100644 --- a/addons/purchase_requisition/i18n/id.po +++ b/addons/purchase_requisition/i18n/id.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/it.po b/addons/purchase_requisition/i18n/it.po index 3254c9ca087..3777e3a8546 100644 --- a/addons/purchase_requisition/i18n/it.po +++ b/addons/purchase_requisition/i18n/it.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/ja.po b/addons/purchase_requisition/i18n/ja.po index da8462d1169..1f7734d0a16 100644 --- a/addons/purchase_requisition/i18n/ja.po +++ b/addons/purchase_requisition/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/mk.po b/addons/purchase_requisition/i18n/mk.po index 85a2c184bc2..763fc7503ca 100644 --- a/addons/purchase_requisition/i18n/mk.po +++ b/addons/purchase_requisition/i18n/mk.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/mn.po b/addons/purchase_requisition/i18n/mn.po index d03b8ecc4fc..dd1d16ed010 100644 --- a/addons/purchase_requisition/i18n/mn.po +++ b/addons/purchase_requisition/i18n/mn.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/nb.po b/addons/purchase_requisition/i18n/nb.po index dfdf05ce708..b9f0f4510b8 100644 --- a/addons/purchase_requisition/i18n/nb.po +++ b/addons/purchase_requisition/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/nl.po b/addons/purchase_requisition/i18n/nl.po index 5737538943b..37185589b0a 100644 --- a/addons/purchase_requisition/i18n/nl.po +++ b/addons/purchase_requisition/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/pl.po b/addons/purchase_requisition/i18n/pl.po index d796431edc4..524081d1f9b 100644 --- a/addons/purchase_requisition/i18n/pl.po +++ b/addons/purchase_requisition/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/pt.po b/addons/purchase_requisition/i18n/pt.po index 5d8dd84eb8c..f937a0f64f9 100644 --- a/addons/purchase_requisition/i18n/pt.po +++ b/addons/purchase_requisition/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/pt_BR.po b/addons/purchase_requisition/i18n/pt_BR.po index acef2658521..af20b0b1ab6 100644 --- a/addons/purchase_requisition/i18n/pt_BR.po +++ b/addons/purchase_requisition/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/ro.po b/addons/purchase_requisition/i18n/ro.po index 1554c71beb5..560c526e0e4 100644 --- a/addons/purchase_requisition/i18n/ro.po +++ b/addons/purchase_requisition/i18n/ro.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/ru.po b/addons/purchase_requisition/i18n/ru.po index 90e2e588990..cb3adbc37eb 100644 --- a/addons/purchase_requisition/i18n/ru.po +++ b/addons/purchase_requisition/i18n/ru.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/sl.po b/addons/purchase_requisition/i18n/sl.po index 11f94ba4b88..56eb472bea2 100644 --- a/addons/purchase_requisition/i18n/sl.po +++ b/addons/purchase_requisition/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/sv.po b/addons/purchase_requisition/i18n/sv.po index ed79b85e56a..7725ead18b8 100644 --- a/addons/purchase_requisition/i18n/sv.po +++ b/addons/purchase_requisition/i18n/sv.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/tr.po b/addons/purchase_requisition/i18n/tr.po index de24f659e4c..4856ec9ad24 100644 --- a/addons/purchase_requisition/i18n/tr.po +++ b/addons/purchase_requisition/i18n/tr.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/zh_CN.po b/addons/purchase_requisition/i18n/zh_CN.po index 7f61bb1116b..a5997d0f79c 100644 --- a/addons/purchase_requisition/i18n/zh_CN.po +++ b/addons/purchase_requisition/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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: purchase_requisition diff --git a/addons/report_intrastat/i18n/ar.po b/addons/report_intrastat/i18n/ar.po index f511d4961d1..4aabff7a096 100644 --- a/addons/report_intrastat/i18n/ar.po +++ b/addons/report_intrastat/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/bg.po b/addons/report_intrastat/i18n/bg.po index 6e5c973989a..5dc073a4ab1 100644 --- a/addons/report_intrastat/i18n/bg.po +++ b/addons/report_intrastat/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/bs.po b/addons/report_intrastat/i18n/bs.po index 6e017e128ed..d32e9c5ca5a 100644 --- a/addons/report_intrastat/i18n/bs.po +++ b/addons/report_intrastat/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/ca.po b/addons/report_intrastat/i18n/ca.po index 067e0668cb8..a73d7f903ac 100644 --- a/addons/report_intrastat/i18n/ca.po +++ b/addons/report_intrastat/i18n/ca.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/cs.po b/addons/report_intrastat/i18n/cs.po index 8f77099e7c1..05382194bc6 100644 --- a/addons/report_intrastat/i18n/cs.po +++ b/addons/report_intrastat/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/da.po b/addons/report_intrastat/i18n/da.po index 30fc33ebf98..a82e2b94e79 100644 --- a/addons/report_intrastat/i18n/da.po +++ b/addons/report_intrastat/i18n/da.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/de.po b/addons/report_intrastat/i18n/de.po index 086033e1877..5c91fecc45b 100644 --- a/addons/report_intrastat/i18n/de.po +++ b/addons/report_intrastat/i18n/de.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/es.po b/addons/report_intrastat/i18n/es.po index be382507df3..31dc7fb8a05 100644 --- a/addons/report_intrastat/i18n/es.po +++ b/addons/report_intrastat/i18n/es.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/es_AR.po b/addons/report_intrastat/i18n/es_AR.po index 096d596cbd5..1f6456c5c1d 100644 --- a/addons/report_intrastat/i18n/es_AR.po +++ b/addons/report_intrastat/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/es_CR.po b/addons/report_intrastat/i18n/es_CR.po index 7add495c18b..fc65272d1ff 100644 --- a/addons/report_intrastat/i18n/es_CR.po +++ b/addons/report_intrastat/i18n/es_CR.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/report_intrastat/i18n/et.po b/addons/report_intrastat/i18n/et.po index e735bec6899..3b78ff89de1 100644 --- a/addons/report_intrastat/i18n/et.po +++ b/addons/report_intrastat/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/fi.po b/addons/report_intrastat/i18n/fi.po index 2751bf65e4a..e47e1d76b9e 100644 --- a/addons/report_intrastat/i18n/fi.po +++ b/addons/report_intrastat/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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/fr.po b/addons/report_intrastat/i18n/fr.po index 8b065ce13c4..16010f672c6 100644 --- a/addons/report_intrastat/i18n/fr.po +++ b/addons/report_intrastat/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/hr.po b/addons/report_intrastat/i18n/hr.po index 39e85cb4ca9..e144db4e504 100644 --- a/addons/report_intrastat/i18n/hr.po +++ b/addons/report_intrastat/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/report_intrastat/i18n/hu.po b/addons/report_intrastat/i18n/hu.po index 3693f5a52a5..1dfd4db9224 100644 --- a/addons/report_intrastat/i18n/hu.po +++ b/addons/report_intrastat/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/id.po b/addons/report_intrastat/i18n/id.po index ad392c37c59..774b91e0fc5 100644 --- a/addons/report_intrastat/i18n/id.po +++ b/addons/report_intrastat/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/it.po b/addons/report_intrastat/i18n/it.po index b6b5e4327d8..f6c20b5b7e5 100644 --- a/addons/report_intrastat/i18n/it.po +++ b/addons/report_intrastat/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/ja.po b/addons/report_intrastat/i18n/ja.po index c76e0acf7db..0ca09038c18 100644 --- a/addons/report_intrastat/i18n/ja.po +++ b/addons/report_intrastat/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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/ko.po b/addons/report_intrastat/i18n/ko.po index bb80bd17fab..7982ab1b6fa 100644 --- a/addons/report_intrastat/i18n/ko.po +++ b/addons/report_intrastat/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/lt.po b/addons/report_intrastat/i18n/lt.po index 67816cef6c3..f9cea699b8f 100644 --- a/addons/report_intrastat/i18n/lt.po +++ b/addons/report_intrastat/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/mk.po b/addons/report_intrastat/i18n/mk.po index 976b10d3629..45f69021643 100644 --- a/addons/report_intrastat/i18n/mk.po +++ b/addons/report_intrastat/i18n/mk.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/mn.po b/addons/report_intrastat/i18n/mn.po index a4388c186b1..dcda69d8303 100644 --- a/addons/report_intrastat/i18n/mn.po +++ b/addons/report_intrastat/i18n/mn.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/nl.po b/addons/report_intrastat/i18n/nl.po index 3526add117f..64c909df3a3 100644 --- a/addons/report_intrastat/i18n/nl.po +++ b/addons/report_intrastat/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/nl_BE.po b/addons/report_intrastat/i18n/nl_BE.po index 13ee6a3b3fc..3cac949270b 100644 --- a/addons/report_intrastat/i18n/nl_BE.po +++ b/addons/report_intrastat/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/pl.po b/addons/report_intrastat/i18n/pl.po index df19ff15a36..5709009459d 100644 --- a/addons/report_intrastat/i18n/pl.po +++ b/addons/report_intrastat/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/pt.po b/addons/report_intrastat/i18n/pt.po index 1892f4fd4f2..4fe420936bf 100644 --- a/addons/report_intrastat/i18n/pt.po +++ b/addons/report_intrastat/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/pt_BR.po b/addons/report_intrastat/i18n/pt_BR.po index f5df6d0cc55..c326db517cf 100644 --- a/addons/report_intrastat/i18n/pt_BR.po +++ b/addons/report_intrastat/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/ro.po b/addons/report_intrastat/i18n/ro.po index 8dba00fd059..f3dd36450fd 100644 --- a/addons/report_intrastat/i18n/ro.po +++ b/addons/report_intrastat/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/ru.po b/addons/report_intrastat/i18n/ru.po index de2c49ba5b8..a529d261740 100644 --- a/addons/report_intrastat/i18n/ru.po +++ b/addons/report_intrastat/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/sl.po b/addons/report_intrastat/i18n/sl.po index ba49a105c66..33f3c60cbe3 100644 --- a/addons/report_intrastat/i18n/sl.po +++ b/addons/report_intrastat/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/sq.po b/addons/report_intrastat/i18n/sq.po index bccaf37f30b..05d2aa9ce48 100644 --- a/addons/report_intrastat/i18n/sq.po +++ b/addons/report_intrastat/i18n/sq.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/sv.po b/addons/report_intrastat/i18n/sv.po index 06c55bcdde2..69f41a0fa14 100644 --- a/addons/report_intrastat/i18n/sv.po +++ b/addons/report_intrastat/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/tlh.po b/addons/report_intrastat/i18n/tlh.po index c040f0b3d5c..f416faa1c71 100644 --- a/addons/report_intrastat/i18n/tlh.po +++ b/addons/report_intrastat/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/tr.po b/addons/report_intrastat/i18n/tr.po index 0a2bc358883..e2ec3c49f7f 100644 --- a/addons/report_intrastat/i18n/tr.po +++ b/addons/report_intrastat/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/uk.po b/addons/report_intrastat/i18n/uk.po index 631327c5766..1556bd02f48 100644 --- a/addons/report_intrastat/i18n/uk.po +++ b/addons/report_intrastat/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/vi.po b/addons/report_intrastat/i18n/vi.po index 2f2d8a19117..574019b5ef5 100644 --- a/addons/report_intrastat/i18n/vi.po +++ b/addons/report_intrastat/i18n/vi.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/zh_CN.po b/addons/report_intrastat/i18n/zh_CN.po index c0ebd0386fe..b96b90f7012 100644 --- a/addons/report_intrastat/i18n/zh_CN.po +++ b/addons/report_intrastat/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/zh_TW.po b/addons/report_intrastat/i18n/zh_TW.po index d2f3f06dea7..013db81caa3 100644 --- a/addons/report_intrastat/i18n/zh_TW.po +++ b/addons/report_intrastat/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_intrastat diff --git a/addons/report_webkit/i18n/ar.po b/addons/report_webkit/i18n/ar.po index cddca3f157d..8170c36eaeb 100644 --- a/addons/report_webkit/i18n/ar.po +++ b/addons/report_webkit/i18n/ar.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/bg.po b/addons/report_webkit/i18n/bg.po index 179e149c45d..ea860842a71 100644 --- a/addons/report_webkit/i18n/bg.po +++ b/addons/report_webkit/i18n/bg.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/ca.po b/addons/report_webkit/i18n/ca.po index 1f49b721abc..1067cd7bee9 100644 --- a/addons/report_webkit/i18n/ca.po +++ b/addons/report_webkit/i18n/ca.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/da.po b/addons/report_webkit/i18n/da.po index b3ca0fb91ab..1646ad4ef32 100644 --- a/addons/report_webkit/i18n/da.po +++ b/addons/report_webkit/i18n/da.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-03-15 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/de.po b/addons/report_webkit/i18n/de.po index afbc7451b5f..e72b58916ba 100644 --- a/addons/report_webkit/i18n/de.po +++ b/addons/report_webkit/i18n/de.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/es.po b/addons/report_webkit/i18n/es.po index 127bdb89e9a..687bdcceed6 100644 --- a/addons/report_webkit/i18n/es.po +++ b/addons/report_webkit/i18n/es.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/es_CR.po b/addons/report_webkit/i18n/es_CR.po index b0565191658..31f4f68d0e6 100644 --- a/addons/report_webkit/i18n/es_CR.po +++ b/addons/report_webkit/i18n/es_CR.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/report_webkit/i18n/fi.po b/addons/report_webkit/i18n/fi.po index e988de92ca0..b518273997b 100644 --- a/addons/report_webkit/i18n/fi.po +++ b/addons/report_webkit/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/fr.po b/addons/report_webkit/i18n/fr.po index b47bc885528..516159cfa4d 100644 --- a/addons/report_webkit/i18n/fr.po +++ b/addons/report_webkit/i18n/fr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/hr.po b/addons/report_webkit/i18n/hr.po index dbae7acdfdb..1fc0741a5ff 100644 --- a/addons/report_webkit/i18n/hr.po +++ b/addons/report_webkit/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/hu.po b/addons/report_webkit/i18n/hu.po index bf0bb3b334c..6dbd2364cf9 100644 --- a/addons/report_webkit/i18n/hu.po +++ b/addons/report_webkit/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/it.po b/addons/report_webkit/i18n/it.po index c9e245a9576..bbbd3f80be6 100644 --- a/addons/report_webkit/i18n/it.po +++ b/addons/report_webkit/i18n/it.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/ja.po b/addons/report_webkit/i18n/ja.po index ab7a860945f..1e1f4cdb6a9 100644 --- a/addons/report_webkit/i18n/ja.po +++ b/addons/report_webkit/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/mk.po b/addons/report_webkit/i18n/mk.po index 1b0dd3389ac..f0b41cdece5 100644 --- a/addons/report_webkit/i18n/mk.po +++ b/addons/report_webkit/i18n/mk.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/mn.po b/addons/report_webkit/i18n/mn.po index ec149f6fd8f..cd3dabc62e6 100644 --- a/addons/report_webkit/i18n/mn.po +++ b/addons/report_webkit/i18n/mn.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/nl.po b/addons/report_webkit/i18n/nl.po index c013898f365..4bc1270872e 100644 --- a/addons/report_webkit/i18n/nl.po +++ b/addons/report_webkit/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/pl.po b/addons/report_webkit/i18n/pl.po index 151ef0f9049..e7f1a9b361d 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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/pt.po b/addons/report_webkit/i18n/pt.po index bf47b0f1da4..dab4bd62a87 100644 --- a/addons/report_webkit/i18n/pt.po +++ b/addons/report_webkit/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/pt_BR.po b/addons/report_webkit/i18n/pt_BR.po index db75013d3c5..8376a02b9f5 100644 --- a/addons/report_webkit/i18n/pt_BR.po +++ b/addons/report_webkit/i18n/pt_BR.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/ro.po b/addons/report_webkit/i18n/ro.po index f45036c55af..e858e189e42 100644 --- a/addons/report_webkit/i18n/ro.po +++ b/addons/report_webkit/i18n/ro.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/ru.po b/addons/report_webkit/i18n/ru.po index b90c567233e..5c9a10ea255 100644 --- a/addons/report_webkit/i18n/ru.po +++ b/addons/report_webkit/i18n/ru.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/sl.po b/addons/report_webkit/i18n/sl.po index c4d2d668ebf..20c41d2dbb8 100644 --- a/addons/report_webkit/i18n/sl.po +++ b/addons/report_webkit/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/sv.po b/addons/report_webkit/i18n/sv.po index c38b4ae4125..8e51ad436b1 100644 --- a/addons/report_webkit/i18n/sv.po +++ b/addons/report_webkit/i18n/sv.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/tr.po b/addons/report_webkit/i18n/tr.po index c7db80bf24d..25fadfb838b 100644 --- a/addons/report_webkit/i18n/tr.po +++ b/addons/report_webkit/i18n/tr.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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/report_webkit/i18n/zh_CN.po b/addons/report_webkit/i18n/zh_CN.po index dcf9bde0a9b..1ffde6a1bc1 100644 --- a/addons/report_webkit/i18n/zh_CN.po +++ b/addons/report_webkit/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-03-15 05:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: report_webkit diff --git a/addons/resource/i18n/ar.po b/addons/resource/i18n/ar.po index 1b09f1891bc..c9cc6a7728f 100644 --- a/addons/resource/i18n/ar.po +++ b/addons/resource/i18n/ar.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/bg.po b/addons/resource/i18n/bg.po index a3e519550c0..ea1d3f88978 100644 --- a/addons/resource/i18n/bg.po +++ b/addons/resource/i18n/bg.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/ca.po b/addons/resource/i18n/ca.po index 48869224976..63e13967604 100644 --- a/addons/resource/i18n/ca.po +++ b/addons/resource/i18n/ca.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/cs.po b/addons/resource/i18n/cs.po index f3729bc20be..226230fd169 100644 --- a/addons/resource/i18n/cs.po +++ b/addons/resource/i18n/cs.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/resource/i18n/da.po b/addons/resource/i18n/da.po index a762ee4d7c2..dc9e58f2d2c 100644 --- a/addons/resource/i18n/da.po +++ b/addons/resource/i18n/da.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/de.po b/addons/resource/i18n/de.po index 59b7a4a83f7..0816be73d75 100644 --- a/addons/resource/i18n/de.po +++ b/addons/resource/i18n/de.po @@ -15,7 +15,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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/es.po b/addons/resource/i18n/es.po index 6bc01904ca1..f11c91c4b75 100644 --- a/addons/resource/i18n/es.po +++ b/addons/resource/i18n/es.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/es_CR.po b/addons/resource/i18n/es_CR.po index 7cd61107f75..fadcc484d46 100644 --- a/addons/resource/i18n/es_CR.po +++ b/addons/resource/i18n/es_CR.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/resource/i18n/es_EC.po b/addons/resource/i18n/es_EC.po index ad5a9f42e92..f3633c849b3 100644 --- a/addons/resource/i18n/es_EC.po +++ b/addons/resource/i18n/es_EC.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/et.po b/addons/resource/i18n/et.po index 986ea5fdee0..333c535865f 100644 --- a/addons/resource/i18n/et.po +++ b/addons/resource/i18n/et.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/fi.po b/addons/resource/i18n/fi.po index 414f2e1dd04..f859ec3c1c5 100644 --- a/addons/resource/i18n/fi.po +++ b/addons/resource/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/fr.po b/addons/resource/i18n/fr.po index 8feb9ed542f..f7c3f9235a1 100644 --- a/addons/resource/i18n/fr.po +++ b/addons/resource/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/gl.po b/addons/resource/i18n/gl.po index c9df6bbb712..afaaf2d66e3 100644 --- a/addons/resource/i18n/gl.po +++ b/addons/resource/i18n/gl.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/hr.po b/addons/resource/i18n/hr.po index 29c435e9cf3..af51af7c873 100644 --- a/addons/resource/i18n/hr.po +++ b/addons/resource/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/hu.po b/addons/resource/i18n/hu.po index e3d6500bc04..62e758d65c4 100644 --- a/addons/resource/i18n/hu.po +++ b/addons/resource/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/it.po b/addons/resource/i18n/it.po index 9ff5c043316..2d5ddc70812 100644 --- a/addons/resource/i18n/it.po +++ b/addons/resource/i18n/it.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/ja.po b/addons/resource/i18n/ja.po index bfc24af8a7c..39f11645a38 100644 --- a/addons/resource/i18n/ja.po +++ b/addons/resource/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/lt.po b/addons/resource/i18n/lt.po index 117032d8d72..2d90c00618a 100644 --- a/addons/resource/i18n/lt.po +++ b/addons/resource/i18n/lt.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/mk.po b/addons/resource/i18n/mk.po index fcbc0640c19..4518a2bee2f 100644 --- a/addons/resource/i18n/mk.po +++ b/addons/resource/i18n/mk.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/mn.po b/addons/resource/i18n/mn.po index 5ba6ea8fce5..58e40606538 100644 --- a/addons/resource/i18n/mn.po +++ b/addons/resource/i18n/mn.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/nl.po b/addons/resource/i18n/nl.po index cf893d2f92d..b22532d6867 100644 --- a/addons/resource/i18n/nl.po +++ b/addons/resource/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/pl.po b/addons/resource/i18n/pl.po index 7dbe8606176..657c0969aed 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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/pt.po b/addons/resource/i18n/pt.po index c794ade7e0c..648b85db635 100644 --- a/addons/resource/i18n/pt.po +++ b/addons/resource/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/pt_BR.po b/addons/resource/i18n/pt_BR.po index 05f7f461d2e..da8f6da97e8 100644 --- a/addons/resource/i18n/pt_BR.po +++ b/addons/resource/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/ro.po b/addons/resource/i18n/ro.po index c98e58f215f..437294d35ce 100644 --- a/addons/resource/i18n/ro.po +++ b/addons/resource/i18n/ro.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/ru.po b/addons/resource/i18n/ru.po index 2f23b5b60d6..168f06d6038 100644 --- a/addons/resource/i18n/ru.po +++ b/addons/resource/i18n/ru.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/sl.po b/addons/resource/i18n/sl.po index f8645168049..5fc4c5a11d0 100644 --- a/addons/resource/i18n/sl.po +++ b/addons/resource/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/sv.po b/addons/resource/i18n/sv.po index b87cce812d9..b72d3dbad49 100644 --- a/addons/resource/i18n/sv.po +++ b/addons/resource/i18n/sv.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/tr.po b/addons/resource/i18n/tr.po index 9ff2a517fed..e53ee8c0262 100644 --- a/addons/resource/i18n/tr.po +++ b/addons/resource/i18n/tr.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/vi.po b/addons/resource/i18n/vi.po index a6b41d63763..9c780a01ac8 100644 --- a/addons/resource/i18n/vi.po +++ b/addons/resource/i18n/vi.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/resource/i18n/zh_CN.po b/addons/resource/i18n/zh_CN.po index 822310728ec..0a0aa8e57e7 100644 --- a/addons/resource/i18n/zh_CN.po +++ b/addons/resource/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: resource diff --git a/addons/sale/i18n/ar.po b/addons/sale/i18n/ar.po index d88b90b51a6..b394767ca4c 100644 --- a/addons/sale/i18n/ar.po +++ b/addons/sale/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/bg.po b/addons/sale/i18n/bg.po index 6a1523643bf..2c2efd14ac7 100644 --- a/addons/sale/i18n/bg.po +++ b/addons/sale/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/bs.po b/addons/sale/i18n/bs.po index 1f38ae0449b..4932c4c5fee 100644 --- a/addons/sale/i18n/bs.po +++ b/addons/sale/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/ca.po b/addons/sale/i18n/ca.po index 3465f1ae312..5d5569d3636 100644 --- a/addons/sale/i18n/ca.po +++ b/addons/sale/i18n/ca.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/cs.po b/addons/sale/i18n/cs.po index e84191f3d4c..17eda086840 100644 --- a/addons/sale/i18n/cs.po +++ b/addons/sale/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/sale/i18n/da.po b/addons/sale/i18n/da.po index 71477e0946b..4f607c9e8dd 100644 --- a/addons/sale/i18n/da.po +++ b/addons/sale/i18n/da.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/de.po b/addons/sale/i18n/de.po index e02cf5e8c2e..69474102895 100644 --- a/addons/sale/i18n/de.po +++ b/addons/sale/i18n/de.po @@ -15,7 +15,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-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/el.po b/addons/sale/i18n/el.po index d9398650bcf..b829fa8ae0c 100644 --- a/addons/sale/i18n/el.po +++ b/addons/sale/i18n/el.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-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/es.po b/addons/sale/i18n/es.po index 306386fb322..bf7c65dcf2b 100644 --- a/addons/sale/i18n/es.po +++ b/addons/sale/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/es_AR.po b/addons/sale/i18n/es_AR.po index f2d4a4d113e..84a3ccca6a1 100644 --- a/addons/sale/i18n/es_AR.po +++ b/addons/sale/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/es_CL.po b/addons/sale/i18n/es_CL.po index c557627a8eb..ce562182007 100644 --- a/addons/sale/i18n/es_CL.po +++ b/addons/sale/i18n/es_CL.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/es_CR.po b/addons/sale/i18n/es_CR.po index 6e265608c86..8ed0e8f2f23 100644 --- a/addons/sale/i18n/es_CR.po +++ b/addons/sale/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/sale/i18n/es_EC.po b/addons/sale/i18n/es_EC.po index 0ec3c030a5c..331aa73da08 100644 --- a/addons/sale/i18n/es_EC.po +++ b/addons/sale/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/es_MX.po b/addons/sale/i18n/es_MX.po index 3ac709fb196..8158f41bf6e 100644 --- a/addons/sale/i18n/es_MX.po +++ b/addons/sale/i18n/es_MX.po @@ -15,7 +15,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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/et.po b/addons/sale/i18n/et.po index 9c6e2cda266..537e0178e71 100644 --- a/addons/sale/i18n/et.po +++ b/addons/sale/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/eu.po b/addons/sale/i18n/eu.po index fe035d49bba..fef98900a4e 100644 --- a/addons/sale/i18n/eu.po +++ b/addons/sale/i18n/eu.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/fi.po b/addons/sale/i18n/fi.po index b51d68037f9..89f4881e482 100644 --- a/addons/sale/i18n/fi.po +++ b/addons/sale/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-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/fr.po b/addons/sale/i18n/fr.po index b6bc785084b..9419b8bf587 100644 --- a/addons/sale/i18n/fr.po +++ b/addons/sale/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #, python-format diff --git a/addons/sale/i18n/gl.po b/addons/sale/i18n/gl.po index d5b7f48ca4d..231c30c2041 100644 --- a/addons/sale/i18n/gl.po +++ b/addons/sale/i18n/gl.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-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/hr.po b/addons/sale/i18n/hr.po index e03cf3ee13c..95097061925 100644 --- a/addons/sale/i18n/hr.po +++ b/addons/sale/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/sale/i18n/hu.po b/addons/sale/i18n/hu.po index 85680cdabf0..0e90d3aae1d 100644 --- a/addons/sale/i18n/hu.po +++ b/addons/sale/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/id.po b/addons/sale/i18n/id.po index 35076100f0d..bfe74edf2f1 100644 --- a/addons/sale/i18n/id.po +++ b/addons/sale/i18n/id.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-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/is.po b/addons/sale/i18n/is.po index b7956f3e357..0dbbaaf985f 100644 --- a/addons/sale/i18n/is.po +++ b/addons/sale/i18n/is.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-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/it.po b/addons/sale/i18n/it.po index 9e5232903ce..3b1fdc9bf91 100644 --- a/addons/sale/i18n/it.po +++ b/addons/sale/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/ja.po b/addons/sale/i18n/ja.po index e05b960c1c5..800e37990d7 100644 --- a/addons/sale/i18n/ja.po +++ b/addons/sale/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-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/ko.po b/addons/sale/i18n/ko.po index 06c557e6084..c11cedbcbcd 100644 --- a/addons/sale/i18n/ko.po +++ b/addons/sale/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/lo.po b/addons/sale/i18n/lo.po index 67d64f066f8..f360641be93 100644 --- a/addons/sale/i18n/lo.po +++ b/addons/sale/i18n/lo.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-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/lt.po b/addons/sale/i18n/lt.po index d453826adda..930f52b4c4f 100644 --- a/addons/sale/i18n/lt.po +++ b/addons/sale/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/lv.po b/addons/sale/i18n/lv.po index e3537bb67af..5e845c8a561 100644 --- a/addons/sale/i18n/lv.po +++ b/addons/sale/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/mk.po b/addons/sale/i18n/mk.po index c182e6c720e..a9bb9926c58 100644 --- a/addons/sale/i18n/mk.po +++ b/addons/sale/i18n/mk.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-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/mn.po b/addons/sale/i18n/mn.po index 0f9c1440632..9b542e46ede 100644 --- a/addons/sale/i18n/mn.po +++ b/addons/sale/i18n/mn.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-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/nb.po b/addons/sale/i18n/nb.po index 825cd3c0be3..fa6ca5a0744 100644 --- a/addons/sale/i18n/nb.po +++ b/addons/sale/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/nl.po b/addons/sale/i18n/nl.po index be7bf804d20..93fb3347de7 100644 --- a/addons/sale/i18n/nl.po +++ b/addons/sale/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale @@ -510,7 +510,7 @@ msgstr "" #. module: sale #: view:sale.order:0 msgid "(update)" -msgstr "(update)" +msgstr "(bijwerken)" #. module: sale #: model:ir.model,name:sale.model_res_partner diff --git a/addons/sale/i18n/nl_BE.po b/addons/sale/i18n/nl_BE.po index 03a62290f57..5a00e7fc5d4 100644 --- a/addons/sale/i18n/nl_BE.po +++ b/addons/sale/i18n/nl_BE.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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: nl\n" diff --git a/addons/sale/i18n/oc.po b/addons/sale/i18n/oc.po index fdb6b2d0f47..b532a9d9716 100644 --- a/addons/sale/i18n/oc.po +++ b/addons/sale/i18n/oc.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-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/pl.po b/addons/sale/i18n/pl.po index fdc7cf3f018..3fe670c643d 100644 --- a/addons/sale/i18n/pl.po +++ b/addons/sale/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/pt.po b/addons/sale/i18n/pt.po index de4294b7674..25d638cbf66 100644 --- a/addons/sale/i18n/pt.po +++ b/addons/sale/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/pt_BR.po b/addons/sale/i18n/pt_BR.po index 327db894c6a..271b272e95e 100644 --- a/addons/sale/i18n/pt_BR.po +++ b/addons/sale/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/ro.po b/addons/sale/i18n/ro.po index 28faa8c3f28..eebc2749ae9 100644 --- a/addons/sale/i18n/ro.po +++ b/addons/sale/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/ru.po b/addons/sale/i18n/ru.po index 58f5851c42e..405ac210af5 100644 --- a/addons/sale/i18n/ru.po +++ b/addons/sale/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/sk.po b/addons/sale/i18n/sk.po index 05a5ba3b7de..b7c30ecdc0c 100644 --- a/addons/sale/i18n/sk.po +++ b/addons/sale/i18n/sk.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-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/sl.po b/addons/sale/i18n/sl.po index 2fa11197ba2..fb11e3e04ea 100644 --- a/addons/sale/i18n/sl.po +++ b/addons/sale/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/sq.po b/addons/sale/i18n/sq.po index 9c55c3c9323..88f0cdbe998 100644 --- a/addons/sale/i18n/sq.po +++ b/addons/sale/i18n/sq.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-03-15 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:21+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/sr.po b/addons/sale/i18n/sr.po index 0c94ab6331d..e4c84ddc112 100644 --- a/addons/sale/i18n/sr.po +++ b/addons/sale/i18n/sr.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-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:22+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/sr@latin.po b/addons/sale/i18n/sr@latin.po index 5c58b4b1037..a3dd8e580a4 100644 --- a/addons/sale/i18n/sr@latin.po +++ b/addons/sale/i18n/sr@latin.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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/sv.po b/addons/sale/i18n/sv.po index 2c2bad2b45c..33ca56d84d0 100644 --- a/addons/sale/i18n/sv.po +++ b/addons/sale/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/th.po b/addons/sale/i18n/th.po index 8c946297cd8..9f60c0c45c6 100644 --- a/addons/sale/i18n/th.po +++ b/addons/sale/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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/tlh.po b/addons/sale/i18n/tlh.po index bc2e577d0d1..e38503e82e7 100644 --- a/addons/sale/i18n/tlh.po +++ b/addons/sale/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/tr.po b/addons/sale/i18n/tr.po index 8b867c304c1..7e1dc955bde 100644 --- a/addons/sale/i18n/tr.po +++ b/addons/sale/i18n/tr.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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/uk.po b/addons/sale/i18n/uk.po index cc51582578a..8fcb2571b39 100644 --- a/addons/sale/i18n/uk.po +++ b/addons/sale/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/vi.po b/addons/sale/i18n/vi.po index 60e3cb2a6fc..d03ee32bc08 100644 --- a/addons/sale/i18n/vi.po +++ b/addons/sale/i18n/vi.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-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/zh_CN.po b/addons/sale/i18n/zh_CN.po index f5fa6180cd9..77a36583b59 100644 --- a/addons/sale/i18n/zh_CN.po +++ b/addons/sale/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale/i18n/zh_TW.po b/addons/sale/i18n/zh_TW.po index e0c292d58e3..d9a57765963 100644 --- a/addons/sale/i18n/zh_TW.po +++ b/addons/sale/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:23+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale diff --git a/addons/sale_analytic_plans/i18n/ar.po b/addons/sale_analytic_plans/i18n/ar.po index 0ae728c0bc4..d1a269df3a9 100644 --- a/addons/sale_analytic_plans/i18n/ar.po +++ b/addons/sale_analytic_plans/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/bg.po b/addons/sale_analytic_plans/i18n/bg.po index be35dcfda81..a106ab2f561 100644 --- a/addons/sale_analytic_plans/i18n/bg.po +++ b/addons/sale_analytic_plans/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/bs.po b/addons/sale_analytic_plans/i18n/bs.po index fb1ad58d1a0..d709549cd78 100644 --- a/addons/sale_analytic_plans/i18n/bs.po +++ b/addons/sale_analytic_plans/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/ca.po b/addons/sale_analytic_plans/i18n/ca.po index 1539a069f76..a665a9d6498 100644 --- a/addons/sale_analytic_plans/i18n/ca.po +++ b/addons/sale_analytic_plans/i18n/ca.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/cs.po b/addons/sale_analytic_plans/i18n/cs.po index aa398479079..4fb138e54ef 100644 --- a/addons/sale_analytic_plans/i18n/cs.po +++ b/addons/sale_analytic_plans/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/da.po b/addons/sale_analytic_plans/i18n/da.po index ccc449e18ad..d2c354890b5 100644 --- a/addons/sale_analytic_plans/i18n/da.po +++ b/addons/sale_analytic_plans/i18n/da.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/de.po b/addons/sale_analytic_plans/i18n/de.po index 2143628fd12..09cc287467a 100644 --- a/addons/sale_analytic_plans/i18n/de.po +++ b/addons/sale_analytic_plans/i18n/de.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/el.po b/addons/sale_analytic_plans/i18n/el.po index 397aec4bfca..ab1faa1f47d 100644 --- a/addons/sale_analytic_plans/i18n/el.po +++ b/addons/sale_analytic_plans/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/sale_analytic_plans/i18n/es.po b/addons/sale_analytic_plans/i18n/es.po index 9dcc31afcc8..49a68ead813 100644 --- a/addons/sale_analytic_plans/i18n/es.po +++ b/addons/sale_analytic_plans/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/es_AR.po b/addons/sale_analytic_plans/i18n/es_AR.po index 333e6f43a6e..6e5c587cc70 100644 --- a/addons/sale_analytic_plans/i18n/es_AR.po +++ b/addons/sale_analytic_plans/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/es_CL.po b/addons/sale_analytic_plans/i18n/es_CL.po index d500502e3a1..1df66d221db 100644 --- a/addons/sale_analytic_plans/i18n/es_CL.po +++ b/addons/sale_analytic_plans/i18n/es_CL.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/es_CR.po b/addons/sale_analytic_plans/i18n/es_CR.po index dc4e20250ca..271d4379205 100644 --- a/addons/sale_analytic_plans/i18n/es_CR.po +++ b/addons/sale_analytic_plans/i18n/es_CR.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/sale_analytic_plans/i18n/et.po b/addons/sale_analytic_plans/i18n/et.po index d966a6e5998..4b80acffdba 100644 --- a/addons/sale_analytic_plans/i18n/et.po +++ b/addons/sale_analytic_plans/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/fi.po b/addons/sale_analytic_plans/i18n/fi.po index 2ebd40a2b74..5370b97228f 100644 --- a/addons/sale_analytic_plans/i18n/fi.po +++ b/addons/sale_analytic_plans/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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/fr.po b/addons/sale_analytic_plans/i18n/fr.po index 85b661fd888..e3d1abda4cb 100644 --- a/addons/sale_analytic_plans/i18n/fr.po +++ b/addons/sale_analytic_plans/i18n/fr.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/gl.po b/addons/sale_analytic_plans/i18n/gl.po index 61f4099ff08..b1d53058a38 100644 --- a/addons/sale_analytic_plans/i18n/gl.po +++ b/addons/sale_analytic_plans/i18n/gl.po @@ -15,7 +15,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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/hr.po b/addons/sale_analytic_plans/i18n/hr.po index 6812c2b92b7..dbb078367b2 100644 --- a/addons/sale_analytic_plans/i18n/hr.po +++ b/addons/sale_analytic_plans/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/sale_analytic_plans/i18n/hu.po b/addons/sale_analytic_plans/i18n/hu.po index 07f30e028ce..57e6d6d5ba2 100644 --- a/addons/sale_analytic_plans/i18n/hu.po +++ b/addons/sale_analytic_plans/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/id.po b/addons/sale_analytic_plans/i18n/id.po index 4432d6a4b3b..ec85ab84291 100644 --- a/addons/sale_analytic_plans/i18n/id.po +++ b/addons/sale_analytic_plans/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/it.po b/addons/sale_analytic_plans/i18n/it.po index 49ec1be1115..80a6575f6d4 100644 --- a/addons/sale_analytic_plans/i18n/it.po +++ b/addons/sale_analytic_plans/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/ja.po b/addons/sale_analytic_plans/i18n/ja.po index 2296d18854e..2a92172bbc5 100644 --- a/addons/sale_analytic_plans/i18n/ja.po +++ b/addons/sale_analytic_plans/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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/ko.po b/addons/sale_analytic_plans/i18n/ko.po index dbb0ac18569..ca1365e9856 100644 --- a/addons/sale_analytic_plans/i18n/ko.po +++ b/addons/sale_analytic_plans/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/lt.po b/addons/sale_analytic_plans/i18n/lt.po index c08c3371c0f..bfeeee52a01 100644 --- a/addons/sale_analytic_plans/i18n/lt.po +++ b/addons/sale_analytic_plans/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/mk.po b/addons/sale_analytic_plans/i18n/mk.po index 85ca8f51d5e..6c30290ba8e 100644 --- a/addons/sale_analytic_plans/i18n/mk.po +++ b/addons/sale_analytic_plans/i18n/mk.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/mn.po b/addons/sale_analytic_plans/i18n/mn.po index 3d20dafc489..9965a1d61db 100644 --- a/addons/sale_analytic_plans/i18n/mn.po +++ b/addons/sale_analytic_plans/i18n/mn.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/nb.po b/addons/sale_analytic_plans/i18n/nb.po index 72127d8335a..08c92ac8300 100644 --- a/addons/sale_analytic_plans/i18n/nb.po +++ b/addons/sale_analytic_plans/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/nl.po b/addons/sale_analytic_plans/i18n/nl.po index 1d8dddcc168..cf329b3c0e3 100644 --- a/addons/sale_analytic_plans/i18n/nl.po +++ b/addons/sale_analytic_plans/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/nl_BE.po b/addons/sale_analytic_plans/i18n/nl_BE.po index 0d1d5c114cc..e7b9436b019 100644 --- a/addons/sale_analytic_plans/i18n/nl_BE.po +++ b/addons/sale_analytic_plans/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/oc.po b/addons/sale_analytic_plans/i18n/oc.po index 500ca30d987..32ebd02ebae 100644 --- a/addons/sale_analytic_plans/i18n/oc.po +++ b/addons/sale_analytic_plans/i18n/oc.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/pl.po b/addons/sale_analytic_plans/i18n/pl.po index c24d36003d1..fb9c01a921f 100644 --- a/addons/sale_analytic_plans/i18n/pl.po +++ b/addons/sale_analytic_plans/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/pt.po b/addons/sale_analytic_plans/i18n/pt.po index 6dda752346e..02ea5cd0b30 100644 --- a/addons/sale_analytic_plans/i18n/pt.po +++ b/addons/sale_analytic_plans/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/pt_BR.po b/addons/sale_analytic_plans/i18n/pt_BR.po index 2480800e46e..6455e79680d 100644 --- a/addons/sale_analytic_plans/i18n/pt_BR.po +++ b/addons/sale_analytic_plans/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/ro.po b/addons/sale_analytic_plans/i18n/ro.po index 437425b8a8c..fa668725d8a 100644 --- a/addons/sale_analytic_plans/i18n/ro.po +++ b/addons/sale_analytic_plans/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/ru.po b/addons/sale_analytic_plans/i18n/ru.po index 1378cf9d5c2..90d9eb5c3b9 100644 --- a/addons/sale_analytic_plans/i18n/ru.po +++ b/addons/sale_analytic_plans/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/sk.po b/addons/sale_analytic_plans/i18n/sk.po index 6af2b76a285..986efdcef38 100644 --- a/addons/sale_analytic_plans/i18n/sk.po +++ b/addons/sale_analytic_plans/i18n/sk.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/sl.po b/addons/sale_analytic_plans/i18n/sl.po index 0cd46b6812d..37e5eaa1282 100644 --- a/addons/sale_analytic_plans/i18n/sl.po +++ b/addons/sale_analytic_plans/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/sq.po b/addons/sale_analytic_plans/i18n/sq.po index fe5cbf79f39..c0ed2894811 100644 --- a/addons/sale_analytic_plans/i18n/sq.po +++ b/addons/sale_analytic_plans/i18n/sq.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/sr.po b/addons/sale_analytic_plans/i18n/sr.po index f57237a6a5a..1695383afb9 100644 --- a/addons/sale_analytic_plans/i18n/sr.po +++ b/addons/sale_analytic_plans/i18n/sr.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/sr@latin.po b/addons/sale_analytic_plans/i18n/sr@latin.po index 53a4f4e608a..f55bdf12897 100644 --- a/addons/sale_analytic_plans/i18n/sr@latin.po +++ b/addons/sale_analytic_plans/i18n/sr@latin.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/sv.po b/addons/sale_analytic_plans/i18n/sv.po index 945834c731b..f2f760671a6 100644 --- a/addons/sale_analytic_plans/i18n/sv.po +++ b/addons/sale_analytic_plans/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/tlh.po b/addons/sale_analytic_plans/i18n/tlh.po index de6861f7dd0..9a2f8f11af0 100644 --- a/addons/sale_analytic_plans/i18n/tlh.po +++ b/addons/sale_analytic_plans/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/tr.po b/addons/sale_analytic_plans/i18n/tr.po index 2746819e172..f3db41a828a 100644 --- a/addons/sale_analytic_plans/i18n/tr.po +++ b/addons/sale_analytic_plans/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/uk.po b/addons/sale_analytic_plans/i18n/uk.po index d41f4245498..d1a69aee78e 100644 --- a/addons/sale_analytic_plans/i18n/uk.po +++ b/addons/sale_analytic_plans/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/vi.po b/addons/sale_analytic_plans/i18n/vi.po index 73c32b50b96..ba6f39f4f46 100644 --- a/addons/sale_analytic_plans/i18n/vi.po +++ b/addons/sale_analytic_plans/i18n/vi.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/zh_CN.po b/addons/sale_analytic_plans/i18n/zh_CN.po index 5dd21093bf7..b631d92f88a 100644 --- a/addons/sale_analytic_plans/i18n/zh_CN.po +++ b/addons/sale_analytic_plans/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/zh_TW.po b/addons/sale_analytic_plans/i18n/zh_TW.po index b7d188aea94..a46008abb87 100644 --- a/addons/sale_analytic_plans/i18n/zh_TW.po +++ b/addons/sale_analytic_plans/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:32+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_analytic_plans diff --git a/addons/sale_crm/i18n/ar.po b/addons/sale_crm/i18n/ar.po index 29a866a8dc2..3d8d1e8ff8b 100644 --- a/addons/sale_crm/i18n/ar.po +++ b/addons/sale_crm/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/bg.po b/addons/sale_crm/i18n/bg.po index 63e2e5efc4b..ad3a0c546b9 100644 --- a/addons/sale_crm/i18n/bg.po +++ b/addons/sale_crm/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/bs.po b/addons/sale_crm/i18n/bs.po index 1a1c3e4be2d..6c1cd2d9c8b 100644 --- a/addons/sale_crm/i18n/bs.po +++ b/addons/sale_crm/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/ca.po b/addons/sale_crm/i18n/ca.po index 624e2da66b7..a4a4515b81c 100644 --- a/addons/sale_crm/i18n/ca.po +++ b/addons/sale_crm/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/cs.po b/addons/sale_crm/i18n/cs.po index 0e77ec7e7df..8abd040d7aa 100644 --- a/addons/sale_crm/i18n/cs.po +++ b/addons/sale_crm/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/sale_crm/i18n/da.po b/addons/sale_crm/i18n/da.po index 65f6990835e..37c74b7bdba 100644 --- a/addons/sale_crm/i18n/da.po +++ b/addons/sale_crm/i18n/da.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/de.po b/addons/sale_crm/i18n/de.po index 8e4128b1d42..9be3c6a1909 100644 --- a/addons/sale_crm/i18n/de.po +++ b/addons/sale_crm/i18n/de.po @@ -15,7 +15,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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/el.po b/addons/sale_crm/i18n/el.po index d0466a9b6f1..3841697fdd8 100644 --- a/addons/sale_crm/i18n/el.po +++ b/addons/sale_crm/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/sale_crm/i18n/es.po b/addons/sale_crm/i18n/es.po index 95372b2bedc..9aa309534d2 100644 --- a/addons/sale_crm/i18n/es.po +++ b/addons/sale_crm/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/es_AR.po b/addons/sale_crm/i18n/es_AR.po index f44e2d2ff42..98c1476500a 100644 --- a/addons/sale_crm/i18n/es_AR.po +++ b/addons/sale_crm/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/es_CL.po b/addons/sale_crm/i18n/es_CL.po index ca624fc7435..8fa9c866db1 100644 --- a/addons/sale_crm/i18n/es_CL.po +++ b/addons/sale_crm/i18n/es_CL.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/es_CR.po b/addons/sale_crm/i18n/es_CR.po index f77618444b6..7970b0a180e 100644 --- a/addons/sale_crm/i18n/es_CR.po +++ b/addons/sale_crm/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/sale_crm/i18n/et.po b/addons/sale_crm/i18n/et.po index 4b527568434..7c770c1b388 100644 --- a/addons/sale_crm/i18n/et.po +++ b/addons/sale_crm/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/fi.po b/addons/sale_crm/i18n/fi.po index 2efcb5d9ec8..8c5f992a5ac 100644 --- a/addons/sale_crm/i18n/fi.po +++ b/addons/sale_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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/fr.po b/addons/sale_crm/i18n/fr.po index 51d4d71db1a..c62d0bc6c15 100644 --- a/addons/sale_crm/i18n/fr.po +++ b/addons/sale_crm/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/gl.po b/addons/sale_crm/i18n/gl.po index c6d8cfc7bcd..8918a944398 100644 --- a/addons/sale_crm/i18n/gl.po +++ b/addons/sale_crm/i18n/gl.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/hr.po b/addons/sale_crm/i18n/hr.po index a75298e9371..ee39e9fb42d 100644 --- a/addons/sale_crm/i18n/hr.po +++ b/addons/sale_crm/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/sale_crm/i18n/hu.po b/addons/sale_crm/i18n/hu.po index e000f12ef70..10a5f51a148 100644 --- a/addons/sale_crm/i18n/hu.po +++ b/addons/sale_crm/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/id.po b/addons/sale_crm/i18n/id.po index 911d489123e..c09f7876e3f 100644 --- a/addons/sale_crm/i18n/id.po +++ b/addons/sale_crm/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/it.po b/addons/sale_crm/i18n/it.po index 7b52e95707a..2964a332911 100644 --- a/addons/sale_crm/i18n/it.po +++ b/addons/sale_crm/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/ja.po b/addons/sale_crm/i18n/ja.po index 87f49240f76..2d227242fe2 100644 --- a/addons/sale_crm/i18n/ja.po +++ b/addons/sale_crm/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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/ko.po b/addons/sale_crm/i18n/ko.po index 968a4d0e53f..93cc5a983aa 100644 --- a/addons/sale_crm/i18n/ko.po +++ b/addons/sale_crm/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/lt.po b/addons/sale_crm/i18n/lt.po index a79883ae03d..072778b0bd8 100644 --- a/addons/sale_crm/i18n/lt.po +++ b/addons/sale_crm/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/lv.po b/addons/sale_crm/i18n/lv.po index e99c76c8c99..2cae1a042ec 100644 --- a/addons/sale_crm/i18n/lv.po +++ b/addons/sale_crm/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/mk.po b/addons/sale_crm/i18n/mk.po index a2b42c5ab92..13d75ccd5cd 100644 --- a/addons/sale_crm/i18n/mk.po +++ b/addons/sale_crm/i18n/mk.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/mn.po b/addons/sale_crm/i18n/mn.po index 0abae04b390..7e43617ddf5 100644 --- a/addons/sale_crm/i18n/mn.po +++ b/addons/sale_crm/i18n/mn.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/nb.po b/addons/sale_crm/i18n/nb.po index 1c15de06522..f4d2150cff2 100644 --- a/addons/sale_crm/i18n/nb.po +++ b/addons/sale_crm/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/nl.po b/addons/sale_crm/i18n/nl.po index d9bd9d8afe2..2df118ec372 100644 --- a/addons/sale_crm/i18n/nl.po +++ b/addons/sale_crm/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/nl_BE.po b/addons/sale_crm/i18n/nl_BE.po index d118340115c..5582240d763 100644 --- a/addons/sale_crm/i18n/nl_BE.po +++ b/addons/sale_crm/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/pl.po b/addons/sale_crm/i18n/pl.po index 239d37d2bb5..d135222a1a4 100644 --- a/addons/sale_crm/i18n/pl.po +++ b/addons/sale_crm/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/pt.po b/addons/sale_crm/i18n/pt.po index fb7f1533413..4fb9f570f9f 100644 --- a/addons/sale_crm/i18n/pt.po +++ b/addons/sale_crm/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/pt_BR.po b/addons/sale_crm/i18n/pt_BR.po index 825f2cbecb6..e85c92fb952 100644 --- a/addons/sale_crm/i18n/pt_BR.po +++ b/addons/sale_crm/i18n/pt_BR.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/ro.po b/addons/sale_crm/i18n/ro.po index a9af747baec..9461fb82742 100644 --- a/addons/sale_crm/i18n/ro.po +++ b/addons/sale_crm/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/ru.po b/addons/sale_crm/i18n/ru.po index cdc6350db0d..8ae90e42303 100644 --- a/addons/sale_crm/i18n/ru.po +++ b/addons/sale_crm/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/sk.po b/addons/sale_crm/i18n/sk.po index f52cbfd70b7..22703b48813 100644 --- a/addons/sale_crm/i18n/sk.po +++ b/addons/sale_crm/i18n/sk.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/sl.po b/addons/sale_crm/i18n/sl.po index c422ee5d66e..95b7fd15dda 100644 --- a/addons/sale_crm/i18n/sl.po +++ b/addons/sale_crm/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/sq.po b/addons/sale_crm/i18n/sq.po index 66159ad28ec..cf262c1efb0 100644 --- a/addons/sale_crm/i18n/sq.po +++ b/addons/sale_crm/i18n/sq.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/sv.po b/addons/sale_crm/i18n/sv.po index db3ab3bc402..3ea4bc67472 100644 --- a/addons/sale_crm/i18n/sv.po +++ b/addons/sale_crm/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/tlh.po b/addons/sale_crm/i18n/tlh.po index e7b6285cb20..aa8d41577a0 100644 --- a/addons/sale_crm/i18n/tlh.po +++ b/addons/sale_crm/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/tr.po b/addons/sale_crm/i18n/tr.po index b67bb417cd4..1df21b6a8be 100644 --- a/addons/sale_crm/i18n/tr.po +++ b/addons/sale_crm/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/uk.po b/addons/sale_crm/i18n/uk.po index 117c2a5c5a1..cc19e01c396 100644 --- a/addons/sale_crm/i18n/uk.po +++ b/addons/sale_crm/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/vi.po b/addons/sale_crm/i18n/vi.po index 2b4c3852f4d..6d12a1e8ec0 100644 --- a/addons/sale_crm/i18n/vi.po +++ b/addons/sale_crm/i18n/vi.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-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/zh_CN.po b/addons/sale_crm/i18n/zh_CN.po index 8ddf78bc3b4..391908a367c 100644 --- a/addons/sale_crm/i18n/zh_CN.po +++ b/addons/sale_crm/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/zh_TW.po b/addons/sale_crm/i18n/zh_TW.po index 80f24c5b842..ebe556f7f08 100644 --- a/addons/sale_crm/i18n/zh_TW.po +++ b/addons/sale_crm/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:11+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:10+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_crm diff --git a/addons/sale_journal/i18n/ar.po b/addons/sale_journal/i18n/ar.po index 32a5552555a..a91b5b3363f 100644 --- a/addons/sale_journal/i18n/ar.po +++ b/addons/sale_journal/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/bg.po b/addons/sale_journal/i18n/bg.po index 669ef7b31d6..17ec12b5022 100644 --- a/addons/sale_journal/i18n/bg.po +++ b/addons/sale_journal/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/bs.po b/addons/sale_journal/i18n/bs.po index 8f54fd34917..068954faedf 100644 --- a/addons/sale_journal/i18n/bs.po +++ b/addons/sale_journal/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/ca.po b/addons/sale_journal/i18n/ca.po index 13d99d6feaa..3c69f9c5a05 100644 --- a/addons/sale_journal/i18n/ca.po +++ b/addons/sale_journal/i18n/ca.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/cs.po b/addons/sale_journal/i18n/cs.po index 531e64088ae..4a6dd1f7eb0 100644 --- a/addons/sale_journal/i18n/cs.po +++ b/addons/sale_journal/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/da.po b/addons/sale_journal/i18n/da.po index 29fc855a241..cd8e322063a 100644 --- a/addons/sale_journal/i18n/da.po +++ b/addons/sale_journal/i18n/da.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/de.po b/addons/sale_journal/i18n/de.po index 7cf890154bb..ced6868bdcd 100644 --- a/addons/sale_journal/i18n/de.po +++ b/addons/sale_journal/i18n/de.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/el.po b/addons/sale_journal/i18n/el.po index 2a648490ad4..5a007d39c67 100644 --- a/addons/sale_journal/i18n/el.po +++ b/addons/sale_journal/i18n/el.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/es.po b/addons/sale_journal/i18n/es.po index 2128f0cdeea..6f5a1881887 100644 --- a/addons/sale_journal/i18n/es.po +++ b/addons/sale_journal/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/es_AR.po b/addons/sale_journal/i18n/es_AR.po index 150b7260882..e840834bb2d 100644 --- a/addons/sale_journal/i18n/es_AR.po +++ b/addons/sale_journal/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/es_CL.po b/addons/sale_journal/i18n/es_CL.po index a0ef6e55ec0..4bf043be30d 100644 --- a/addons/sale_journal/i18n/es_CL.po +++ b/addons/sale_journal/i18n/es_CL.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/es_CR.po b/addons/sale_journal/i18n/es_CR.po index fd1c27dd347..7a21c6774ca 100644 --- a/addons/sale_journal/i18n/es_CR.po +++ b/addons/sale_journal/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/sale_journal/i18n/et.po b/addons/sale_journal/i18n/et.po index d591f83764c..125cae92dca 100644 --- a/addons/sale_journal/i18n/et.po +++ b/addons/sale_journal/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/fi.po b/addons/sale_journal/i18n/fi.po index f0e6e8814c5..b1592e26eda 100644 --- a/addons/sale_journal/i18n/fi.po +++ b/addons/sale_journal/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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/fr.po b/addons/sale_journal/i18n/fr.po index f9e99a743be..7bbfceb0289 100644 --- a/addons/sale_journal/i18n/fr.po +++ b/addons/sale_journal/i18n/fr.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/gl.po b/addons/sale_journal/i18n/gl.po index 04b99977608..35ac9a2f8aa 100644 --- a/addons/sale_journal/i18n/gl.po +++ b/addons/sale_journal/i18n/gl.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/hr.po b/addons/sale_journal/i18n/hr.po index e50c845bc72..263db710a22 100644 --- a/addons/sale_journal/i18n/hr.po +++ b/addons/sale_journal/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/sale_journal/i18n/hu.po b/addons/sale_journal/i18n/hu.po index 395432ab87b..6500f491387 100644 --- a/addons/sale_journal/i18n/hu.po +++ b/addons/sale_journal/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/id.po b/addons/sale_journal/i18n/id.po index 792dc14f47e..848b4349cbf 100644 --- a/addons/sale_journal/i18n/id.po +++ b/addons/sale_journal/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/it.po b/addons/sale_journal/i18n/it.po index a77aa552a5c..88f31b32e9e 100644 --- a/addons/sale_journal/i18n/it.po +++ b/addons/sale_journal/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/ja.po b/addons/sale_journal/i18n/ja.po index 8efab154ae7..cf4b023ae5f 100644 --- a/addons/sale_journal/i18n/ja.po +++ b/addons/sale_journal/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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/ko.po b/addons/sale_journal/i18n/ko.po index af10c5631e8..33cb7d37ebb 100644 --- a/addons/sale_journal/i18n/ko.po +++ b/addons/sale_journal/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/lt.po b/addons/sale_journal/i18n/lt.po index 531e64088ae..4a6dd1f7eb0 100644 --- a/addons/sale_journal/i18n/lt.po +++ b/addons/sale_journal/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/lv.po b/addons/sale_journal/i18n/lv.po index 4be0d79c2e5..71065a7c86c 100644 --- a/addons/sale_journal/i18n/lv.po +++ b/addons/sale_journal/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/mk.po b/addons/sale_journal/i18n/mk.po index da107a33e50..3a7245342a1 100644 --- a/addons/sale_journal/i18n/mk.po +++ b/addons/sale_journal/i18n/mk.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/mn.po b/addons/sale_journal/i18n/mn.po index 3e7780b3a8b..f9fa7e6d420 100644 --- a/addons/sale_journal/i18n/mn.po +++ b/addons/sale_journal/i18n/mn.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/nb.po b/addons/sale_journal/i18n/nb.po index fc8e925794a..7cca40f88f1 100644 --- a/addons/sale_journal/i18n/nb.po +++ b/addons/sale_journal/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/nl.po b/addons/sale_journal/i18n/nl.po index ef0a6c42d05..9a465bc6d65 100644 --- a/addons/sale_journal/i18n/nl.po +++ b/addons/sale_journal/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/nl_BE.po b/addons/sale_journal/i18n/nl_BE.po index be6b05674e4..9675dab95cf 100644 --- a/addons/sale_journal/i18n/nl_BE.po +++ b/addons/sale_journal/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/pl.po b/addons/sale_journal/i18n/pl.po index ee2393fad97..ff47ccf1b5d 100644 --- a/addons/sale_journal/i18n/pl.po +++ b/addons/sale_journal/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/pt.po b/addons/sale_journal/i18n/pt.po index 52e6d376094..4ed2828a49c 100644 --- a/addons/sale_journal/i18n/pt.po +++ b/addons/sale_journal/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/pt_BR.po b/addons/sale_journal/i18n/pt_BR.po index 8e9ab0147c1..ebf388e4c02 100644 --- a/addons/sale_journal/i18n/pt_BR.po +++ b/addons/sale_journal/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/ro.po b/addons/sale_journal/i18n/ro.po index d61b4afe6b7..020d3b24697 100644 --- a/addons/sale_journal/i18n/ro.po +++ b/addons/sale_journal/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/ru.po b/addons/sale_journal/i18n/ru.po index d21ee1a3b6c..b4830dcfcd7 100644 --- a/addons/sale_journal/i18n/ru.po +++ b/addons/sale_journal/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/sk.po b/addons/sale_journal/i18n/sk.po index f881fad6f6c..247cd0c32b7 100644 --- a/addons/sale_journal/i18n/sk.po +++ b/addons/sale_journal/i18n/sk.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/sl.po b/addons/sale_journal/i18n/sl.po index 45510a69312..c462cfce852 100644 --- a/addons/sale_journal/i18n/sl.po +++ b/addons/sale_journal/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/sq.po b/addons/sale_journal/i18n/sq.po index 0197ea00044..345f6d840f0 100644 --- a/addons/sale_journal/i18n/sq.po +++ b/addons/sale_journal/i18n/sq.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-03-15 05:27+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/sv.po b/addons/sale_journal/i18n/sv.po index 47ee65d573a..487153d0422 100644 --- a/addons/sale_journal/i18n/sv.po +++ b/addons/sale_journal/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/tlh.po b/addons/sale_journal/i18n/tlh.po index 20fc673263e..12b312b930f 100644 --- a/addons/sale_journal/i18n/tlh.po +++ b/addons/sale_journal/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/tr.po b/addons/sale_journal/i18n/tr.po index 6bf65ff87e7..aec174c6015 100644 --- a/addons/sale_journal/i18n/tr.po +++ b/addons/sale_journal/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/uk.po b/addons/sale_journal/i18n/uk.po index b6a47591e80..2e38d6c3b28 100644 --- a/addons/sale_journal/i18n/uk.po +++ b/addons/sale_journal/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/vi.po b/addons/sale_journal/i18n/vi.po index 3b3014adef0..d9c0b145ef9 100644 --- a/addons/sale_journal/i18n/vi.po +++ b/addons/sale_journal/i18n/vi.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-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/zh_CN.po b/addons/sale_journal/i18n/zh_CN.po index 7e9c5872d1b..23ca6e6f447 100644 --- a/addons/sale_journal/i18n/zh_CN.po +++ b/addons/sale_journal/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/zh_TW.po b/addons/sale_journal/i18n/zh_TW.po index d39e3493b15..df935ee97c2 100644 --- a/addons/sale_journal/i18n/zh_TW.po +++ b/addons/sale_journal/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:27+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_journal diff --git a/addons/sale_margin/i18n/ar.po b/addons/sale_margin/i18n/ar.po index 140b815d98a..8fd7cd4a667 100644 --- a/addons/sale_margin/i18n/ar.po +++ b/addons/sale_margin/i18n/ar.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/bg.po b/addons/sale_margin/i18n/bg.po index df2b3ab6d40..8e2feb923fb 100644 --- a/addons/sale_margin/i18n/bg.po +++ b/addons/sale_margin/i18n/bg.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/ca.po b/addons/sale_margin/i18n/ca.po index a81fa8bd71b..c5362f472c3 100644 --- a/addons/sale_margin/i18n/ca.po +++ b/addons/sale_margin/i18n/ca.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/da.po b/addons/sale_margin/i18n/da.po index 8ab52730e93..8b434f65064 100644 --- a/addons/sale_margin/i18n/da.po +++ b/addons/sale_margin/i18n/da.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/de.po b/addons/sale_margin/i18n/de.po index d9d6b30a4aa..bae9648b5ac 100644 --- a/addons/sale_margin/i18n/de.po +++ b/addons/sale_margin/i18n/de.po @@ -15,7 +15,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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/el.po b/addons/sale_margin/i18n/el.po index 77479f22039..d78e9c381cc 100644 --- a/addons/sale_margin/i18n/el.po +++ b/addons/sale_margin/i18n/el.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/es.po b/addons/sale_margin/i18n/es.po index 9f9be0170cb..2c75b10e360 100644 --- a/addons/sale_margin/i18n/es.po +++ b/addons/sale_margin/i18n/es.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/es_CL.po b/addons/sale_margin/i18n/es_CL.po index 77cbdf3546a..de101301c7f 100644 --- a/addons/sale_margin/i18n/es_CL.po +++ b/addons/sale_margin/i18n/es_CL.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/es_CR.po b/addons/sale_margin/i18n/es_CR.po index 396532d10e4..e10e4b17b26 100644 --- a/addons/sale_margin/i18n/es_CR.po +++ b/addons/sale_margin/i18n/es_CR.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/sale_margin/i18n/et.po b/addons/sale_margin/i18n/et.po index 22cd361d073..44827d691a3 100644 --- a/addons/sale_margin/i18n/et.po +++ b/addons/sale_margin/i18n/et.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/fi.po b/addons/sale_margin/i18n/fi.po index 0a93984bb3a..ea564e83a5b 100644 --- a/addons/sale_margin/i18n/fi.po +++ b/addons/sale_margin/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/fr.po b/addons/sale_margin/i18n/fr.po index 5a2fc2de893..9236eea94a1 100644 --- a/addons/sale_margin/i18n/fr.po +++ b/addons/sale_margin/i18n/fr.po @@ -15,7 +15,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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/hr.po b/addons/sale_margin/i18n/hr.po index 2c950879347..e603f40c5f0 100644 --- a/addons/sale_margin/i18n/hr.po +++ b/addons/sale_margin/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/hu.po b/addons/sale_margin/i18n/hu.po index 86ec8f95d63..bc4e1c5e63b 100644 --- a/addons/sale_margin/i18n/hu.po +++ b/addons/sale_margin/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/it.po b/addons/sale_margin/i18n/it.po index 1a4458c597f..db86949eb77 100644 --- a/addons/sale_margin/i18n/it.po +++ b/addons/sale_margin/i18n/it.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/ja.po b/addons/sale_margin/i18n/ja.po index 868f31eddc1..a326943470b 100644 --- a/addons/sale_margin/i18n/ja.po +++ b/addons/sale_margin/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/mk.po b/addons/sale_margin/i18n/mk.po index c9500cd4bd8..4dade3d8358 100644 --- a/addons/sale_margin/i18n/mk.po +++ b/addons/sale_margin/i18n/mk.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/mn.po b/addons/sale_margin/i18n/mn.po index 439cdddb8b7..aef5bf457d8 100644 --- a/addons/sale_margin/i18n/mn.po +++ b/addons/sale_margin/i18n/mn.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/nb.po b/addons/sale_margin/i18n/nb.po index e30806c12d3..ce9d0b0b7ef 100644 --- a/addons/sale_margin/i18n/nb.po +++ b/addons/sale_margin/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/nl.po b/addons/sale_margin/i18n/nl.po index 1353ea52ee2..6077de4cf25 100644 --- a/addons/sale_margin/i18n/nl.po +++ b/addons/sale_margin/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/pl.po b/addons/sale_margin/i18n/pl.po index b4be4fd6995..82967458dbf 100644 --- a/addons/sale_margin/i18n/pl.po +++ b/addons/sale_margin/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/pt.po b/addons/sale_margin/i18n/pt.po index 5f53d1f2092..f5fb7a0ea1a 100644 --- a/addons/sale_margin/i18n/pt.po +++ b/addons/sale_margin/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/pt_BR.po b/addons/sale_margin/i18n/pt_BR.po index 38d89e01326..6be8d2a529f 100644 --- a/addons/sale_margin/i18n/pt_BR.po +++ b/addons/sale_margin/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/ro.po b/addons/sale_margin/i18n/ro.po index 531f55a73bd..e3c0b6d39a4 100644 --- a/addons/sale_margin/i18n/ro.po +++ b/addons/sale_margin/i18n/ro.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/ru.po b/addons/sale_margin/i18n/ru.po index 58c43da0a77..7c764c89223 100644 --- a/addons/sale_margin/i18n/ru.po +++ b/addons/sale_margin/i18n/ru.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/sk.po b/addons/sale_margin/i18n/sk.po index b9fdfb933a6..330135924b6 100644 --- a/addons/sale_margin/i18n/sk.po +++ b/addons/sale_margin/i18n/sk.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/sl.po b/addons/sale_margin/i18n/sl.po index 20feacba726..2c573be7b44 100644 --- a/addons/sale_margin/i18n/sl.po +++ b/addons/sale_margin/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/sv.po b/addons/sale_margin/i18n/sv.po index a5caecb67dc..6adce839c5c 100644 --- a/addons/sale_margin/i18n/sv.po +++ b/addons/sale_margin/i18n/sv.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/tr.po b/addons/sale_margin/i18n/tr.po index d3f14153d4d..8672585d848 100644 --- a/addons/sale_margin/i18n/tr.po +++ b/addons/sale_margin/i18n/tr.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/zh_CN.po b/addons/sale_margin/i18n/zh_CN.po index 18e4ac2b8bb..4339dfaadff 100644 --- a/addons/sale_margin/i18n/zh_CN.po +++ b/addons/sale_margin/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:40+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_margin diff --git a/addons/sale_mrp/i18n/ar.po b/addons/sale_mrp/i18n/ar.po index f0e5a512037..984ddb56ffa 100644 --- a/addons/sale_mrp/i18n/ar.po +++ b/addons/sale_mrp/i18n/ar.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/bg.po b/addons/sale_mrp/i18n/bg.po index 2ca029d9eeb..08ee415ac27 100644 --- a/addons/sale_mrp/i18n/bg.po +++ b/addons/sale_mrp/i18n/bg.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/ca.po b/addons/sale_mrp/i18n/ca.po index fcd3e1ca898..52150608573 100644 --- a/addons/sale_mrp/i18n/ca.po +++ b/addons/sale_mrp/i18n/ca.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/da.po b/addons/sale_mrp/i18n/da.po index 326c47bba37..c2ece917cff 100644 --- a/addons/sale_mrp/i18n/da.po +++ b/addons/sale_mrp/i18n/da.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/de.po b/addons/sale_mrp/i18n/de.po index f228c0b30dd..30db9a6153a 100644 --- a/addons/sale_mrp/i18n/de.po +++ b/addons/sale_mrp/i18n/de.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/es.po b/addons/sale_mrp/i18n/es.po index dcce9bd5e1c..b486b4d5813 100644 --- a/addons/sale_mrp/i18n/es.po +++ b/addons/sale_mrp/i18n/es.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/es_CL.po b/addons/sale_mrp/i18n/es_CL.po index fbbcfa2e2c1..c8eaf5ab4d2 100644 --- a/addons/sale_mrp/i18n/es_CL.po +++ b/addons/sale_mrp/i18n/es_CL.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/es_CR.po b/addons/sale_mrp/i18n/es_CR.po index 90a385160de..5a4440d4a91 100644 --- a/addons/sale_mrp/i18n/es_CR.po +++ b/addons/sale_mrp/i18n/es_CR.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/sale_mrp/i18n/et.po b/addons/sale_mrp/i18n/et.po index 12a05dc24b4..9dc71ed1a95 100644 --- a/addons/sale_mrp/i18n/et.po +++ b/addons/sale_mrp/i18n/et.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/fi.po b/addons/sale_mrp/i18n/fi.po index 99fea512254..089b0e99589 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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/fr.po b/addons/sale_mrp/i18n/fr.po index 86170f05223..dc187d539b2 100644 --- a/addons/sale_mrp/i18n/fr.po +++ b/addons/sale_mrp/i18n/fr.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/gl.po b/addons/sale_mrp/i18n/gl.po index 1435d8f54cd..f8ffec9df3d 100644 --- a/addons/sale_mrp/i18n/gl.po +++ b/addons/sale_mrp/i18n/gl.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/hr.po b/addons/sale_mrp/i18n/hr.po index 65f89cba854..faa0874e2b4 100644 --- a/addons/sale_mrp/i18n/hr.po +++ b/addons/sale_mrp/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/hu.po b/addons/sale_mrp/i18n/hu.po index 3cec3c78b9d..38a5b152a7a 100644 --- a/addons/sale_mrp/i18n/hu.po +++ b/addons/sale_mrp/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/it.po b/addons/sale_mrp/i18n/it.po index 1e97c952e0d..e98dfbe5575 100644 --- a/addons/sale_mrp/i18n/it.po +++ b/addons/sale_mrp/i18n/it.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/ja.po b/addons/sale_mrp/i18n/ja.po index df8bfa17b23..91f8f745851 100644 --- a/addons/sale_mrp/i18n/ja.po +++ b/addons/sale_mrp/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/mk.po b/addons/sale_mrp/i18n/mk.po index 39ddf0122f8..8e490b5ebf6 100644 --- a/addons/sale_mrp/i18n/mk.po +++ b/addons/sale_mrp/i18n/mk.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/mn.po b/addons/sale_mrp/i18n/mn.po index 9f9d67ccb25..a575f8c34b0 100644 --- a/addons/sale_mrp/i18n/mn.po +++ b/addons/sale_mrp/i18n/mn.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/nb.po b/addons/sale_mrp/i18n/nb.po index f2ef8c9dc8f..7d8c95c804a 100644 --- a/addons/sale_mrp/i18n/nb.po +++ b/addons/sale_mrp/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/nl.po b/addons/sale_mrp/i18n/nl.po index adb049df925..b8d0b3c21a1 100644 --- a/addons/sale_mrp/i18n/nl.po +++ b/addons/sale_mrp/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/nl_BE.po b/addons/sale_mrp/i18n/nl_BE.po index 58bf31ea85f..c9349ad082a 100644 --- a/addons/sale_mrp/i18n/nl_BE.po +++ b/addons/sale_mrp/i18n/nl_BE.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/pl.po b/addons/sale_mrp/i18n/pl.po index b46f0e08a24..17e7c2b6bc0 100644 --- a/addons/sale_mrp/i18n/pl.po +++ b/addons/sale_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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/pt.po b/addons/sale_mrp/i18n/pt.po index 843a0a532d2..674fad7c47f 100644 --- a/addons/sale_mrp/i18n/pt.po +++ b/addons/sale_mrp/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/pt_BR.po b/addons/sale_mrp/i18n/pt_BR.po index 9fa27d10728..910efcfe7d3 100644 --- a/addons/sale_mrp/i18n/pt_BR.po +++ b/addons/sale_mrp/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/ro.po b/addons/sale_mrp/i18n/ro.po index be7cc224ce0..ac9d46bb411 100644 --- a/addons/sale_mrp/i18n/ro.po +++ b/addons/sale_mrp/i18n/ro.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/ru.po b/addons/sale_mrp/i18n/ru.po index 7a4aacf5ed7..38c3b6bced7 100644 --- a/addons/sale_mrp/i18n/ru.po +++ b/addons/sale_mrp/i18n/ru.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/sl.po b/addons/sale_mrp/i18n/sl.po index 1c77827bb66..e7307d518b0 100644 --- a/addons/sale_mrp/i18n/sl.po +++ b/addons/sale_mrp/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/sr@latin.po b/addons/sale_mrp/i18n/sr@latin.po index bb833f0603f..21ccc5aacf0 100644 --- a/addons/sale_mrp/i18n/sr@latin.po +++ b/addons/sale_mrp/i18n/sr@latin.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/sv.po b/addons/sale_mrp/i18n/sv.po index e5467719611..e058839e3ee 100644 --- a/addons/sale_mrp/i18n/sv.po +++ b/addons/sale_mrp/i18n/sv.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/tr.po b/addons/sale_mrp/i18n/tr.po index f2a803d4d1a..de05b248b03 100644 --- a/addons/sale_mrp/i18n/tr.po +++ b/addons/sale_mrp/i18n/tr.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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/zh_CN.po b/addons/sale_mrp/i18n/zh_CN.po index 98bb1508f95..57361a27566 100644 --- a/addons/sale_mrp/i18n/zh_CN.po +++ b/addons/sale_mrp/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-03-15 05:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_mrp diff --git a/addons/sale_order_dates/i18n/ar.po b/addons/sale_order_dates/i18n/ar.po index bbc09b4fda1..e2a1abcb815 100644 --- a/addons/sale_order_dates/i18n/ar.po +++ b/addons/sale_order_dates/i18n/ar.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/bg.po b/addons/sale_order_dates/i18n/bg.po index c638d80abd5..4b357e61212 100644 --- a/addons/sale_order_dates/i18n/bg.po +++ b/addons/sale_order_dates/i18n/bg.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/ca.po b/addons/sale_order_dates/i18n/ca.po index 99e65283adb..6ddff49c47e 100644 --- a/addons/sale_order_dates/i18n/ca.po +++ b/addons/sale_order_dates/i18n/ca.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/da.po b/addons/sale_order_dates/i18n/da.po index b671fce8a18..cba341f2781 100644 --- a/addons/sale_order_dates/i18n/da.po +++ b/addons/sale_order_dates/i18n/da.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/de.po b/addons/sale_order_dates/i18n/de.po index 0174054f11e..152678ae013 100644 --- a/addons/sale_order_dates/i18n/de.po +++ b/addons/sale_order_dates/i18n/de.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/el.po b/addons/sale_order_dates/i18n/el.po index ca321bd56cb..ec9bdf8104a 100644 --- a/addons/sale_order_dates/i18n/el.po +++ b/addons/sale_order_dates/i18n/el.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/es.po b/addons/sale_order_dates/i18n/es.po index 30b318b4d93..080f80a8d18 100644 --- a/addons/sale_order_dates/i18n/es.po +++ b/addons/sale_order_dates/i18n/es.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/es_CL.po b/addons/sale_order_dates/i18n/es_CL.po index dcd383f8ecf..fda9de6bced 100644 --- a/addons/sale_order_dates/i18n/es_CL.po +++ b/addons/sale_order_dates/i18n/es_CL.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/es_CR.po b/addons/sale_order_dates/i18n/es_CR.po index 4f61fba4154..933c0cc37fd 100644 --- a/addons/sale_order_dates/i18n/es_CR.po +++ b/addons/sale_order_dates/i18n/es_CR.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/sale_order_dates/i18n/fi.po b/addons/sale_order_dates/i18n/fi.po index d1400637e9a..81b4c0d5ff3 100644 --- a/addons/sale_order_dates/i18n/fi.po +++ b/addons/sale_order_dates/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/fr.po b/addons/sale_order_dates/i18n/fr.po index 82b75f0280e..dc4d686ff9c 100644 --- a/addons/sale_order_dates/i18n/fr.po +++ b/addons/sale_order_dates/i18n/fr.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/gl.po b/addons/sale_order_dates/i18n/gl.po index 3f24cccefb5..b0ff924a0fc 100644 --- a/addons/sale_order_dates/i18n/gl.po +++ b/addons/sale_order_dates/i18n/gl.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/hr.po b/addons/sale_order_dates/i18n/hr.po index b9ae529d8d8..44e44c4b0d0 100644 --- a/addons/sale_order_dates/i18n/hr.po +++ b/addons/sale_order_dates/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/hu.po b/addons/sale_order_dates/i18n/hu.po index 3e3aef0c188..ea8454ed5af 100644 --- a/addons/sale_order_dates/i18n/hu.po +++ b/addons/sale_order_dates/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/id.po b/addons/sale_order_dates/i18n/id.po index b8fbc39f7d6..9ac71d802c6 100644 --- a/addons/sale_order_dates/i18n/id.po +++ b/addons/sale_order_dates/i18n/id.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/it.po b/addons/sale_order_dates/i18n/it.po index 8221cbe501e..52234c6eb7d 100644 --- a/addons/sale_order_dates/i18n/it.po +++ b/addons/sale_order_dates/i18n/it.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/ja.po b/addons/sale_order_dates/i18n/ja.po index 0ded820d433..8a613e11a7a 100644 --- a/addons/sale_order_dates/i18n/ja.po +++ b/addons/sale_order_dates/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/mk.po b/addons/sale_order_dates/i18n/mk.po index 860d4bdcbe3..c1a1d3f1d78 100644 --- a/addons/sale_order_dates/i18n/mk.po +++ b/addons/sale_order_dates/i18n/mk.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/mn.po b/addons/sale_order_dates/i18n/mn.po index a47baffad41..b83a71b38bd 100644 --- a/addons/sale_order_dates/i18n/mn.po +++ b/addons/sale_order_dates/i18n/mn.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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/nb.po b/addons/sale_order_dates/i18n/nb.po index 669e1e4ffde..839bec50457 100644 --- a/addons/sale_order_dates/i18n/nb.po +++ b/addons/sale_order_dates/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/nl.po b/addons/sale_order_dates/i18n/nl.po index 90bb875bc34..209f616477f 100644 --- a/addons/sale_order_dates/i18n/nl.po +++ b/addons/sale_order_dates/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/pl.po b/addons/sale_order_dates/i18n/pl.po index 271ff960680..50aff8aba4f 100644 --- a/addons/sale_order_dates/i18n/pl.po +++ b/addons/sale_order_dates/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/pt.po b/addons/sale_order_dates/i18n/pt.po index 3d244d163be..2b899b77f46 100644 --- a/addons/sale_order_dates/i18n/pt.po +++ b/addons/sale_order_dates/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-03-15 05:47+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/pt_BR.po b/addons/sale_order_dates/i18n/pt_BR.po index bec25140648..d1da6bfde09 100644 --- a/addons/sale_order_dates/i18n/pt_BR.po +++ b/addons/sale_order_dates/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/ro.po b/addons/sale_order_dates/i18n/ro.po index fc7739c4c4c..8cbeda47a65 100644 --- a/addons/sale_order_dates/i18n/ro.po +++ b/addons/sale_order_dates/i18n/ro.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/ru.po b/addons/sale_order_dates/i18n/ru.po index 966186a1b98..ff1f24b7667 100644 --- a/addons/sale_order_dates/i18n/ru.po +++ b/addons/sale_order_dates/i18n/ru.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/sk.po b/addons/sale_order_dates/i18n/sk.po index 8b18cd77fb9..0231f55ee6b 100644 --- a/addons/sale_order_dates/i18n/sk.po +++ b/addons/sale_order_dates/i18n/sk.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/sl.po b/addons/sale_order_dates/i18n/sl.po index a66d3ea7d57..3619137c818 100644 --- a/addons/sale_order_dates/i18n/sl.po +++ b/addons/sale_order_dates/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/sr@latin.po b/addons/sale_order_dates/i18n/sr@latin.po index 627e49a7a1c..2055db36637 100644 --- a/addons/sale_order_dates/i18n/sr@latin.po +++ b/addons/sale_order_dates/i18n/sr@latin.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/sv.po b/addons/sale_order_dates/i18n/sv.po index 9444658f792..9186494cd4e 100644 --- a/addons/sale_order_dates/i18n/sv.po +++ b/addons/sale_order_dates/i18n/sv.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/tr.po b/addons/sale_order_dates/i18n/tr.po index a0e2c1e3e1b..559b6857371 100644 --- a/addons/sale_order_dates/i18n/tr.po +++ b/addons/sale_order_dates/i18n/tr.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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/zh_CN.po b/addons/sale_order_dates/i18n/zh_CN.po index 8201e816a97..13e2c45b258 100644 --- a/addons/sale_order_dates/i18n/zh_CN.po +++ b/addons/sale_order_dates/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-03-15 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_order_dates diff --git a/addons/sale_stock/i18n/ar.po b/addons/sale_stock/i18n/ar.po index aadd18f8a9c..49197dd2ec6 100644 --- a/addons/sale_stock/i18n/ar.po +++ b/addons/sale_stock/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/bg.po b/addons/sale_stock/i18n/bg.po index af14599e525..b08fe38eb3b 100644 --- a/addons/sale_stock/i18n/bg.po +++ b/addons/sale_stock/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/bs.po b/addons/sale_stock/i18n/bs.po index dacbe02537d..1df61d4742f 100644 --- a/addons/sale_stock/i18n/bs.po +++ b/addons/sale_stock/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/ca.po b/addons/sale_stock/i18n/ca.po index 2cefbbe34f4..db47de3a2f8 100644 --- a/addons/sale_stock/i18n/ca.po +++ b/addons/sale_stock/i18n/ca.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/cs.po b/addons/sale_stock/i18n/cs.po index 16a1c9a011d..54ff8e19a41 100644 --- a/addons/sale_stock/i18n/cs.po +++ b/addons/sale_stock/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/sale_stock/i18n/da.po b/addons/sale_stock/i18n/da.po index 130a35f9d47..d776f5249bd 100644 --- a/addons/sale_stock/i18n/da.po +++ b/addons/sale_stock/i18n/da.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/de.po b/addons/sale_stock/i18n/de.po index 3ab6666bcde..717c6a95b2a 100644 --- a/addons/sale_stock/i18n/de.po +++ b/addons/sale_stock/i18n/de.po @@ -15,7 +15,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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/el.po b/addons/sale_stock/i18n/el.po index b2f868fc7bc..6d8f08505ea 100644 --- a/addons/sale_stock/i18n/el.po +++ b/addons/sale_stock/i18n/el.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/es.po b/addons/sale_stock/i18n/es.po index 15e4f5994f9..50afcfaa059 100644 --- a/addons/sale_stock/i18n/es.po +++ b/addons/sale_stock/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/et.po b/addons/sale_stock/i18n/et.po index 1d27f5e671b..51110d8869d 100644 --- a/addons/sale_stock/i18n/et.po +++ b/addons/sale_stock/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/fi.po b/addons/sale_stock/i18n/fi.po index 64528e4ab90..fb1aac52417 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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/fr.po b/addons/sale_stock/i18n/fr.po index fa5fc05e2cc..37b5ab2d41c 100644 --- a/addons/sale_stock/i18n/fr.po +++ b/addons/sale_stock/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/gl.po b/addons/sale_stock/i18n/gl.po index 7370f387509..a22f393ad26 100644 --- a/addons/sale_stock/i18n/gl.po +++ b/addons/sale_stock/i18n/gl.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/hr.po b/addons/sale_stock/i18n/hr.po index 0cf339b69f7..7dc2da8e5ff 100644 --- a/addons/sale_stock/i18n/hr.po +++ b/addons/sale_stock/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/sale_stock/i18n/hu.po b/addons/sale_stock/i18n/hu.po index 201c89fc1a9..7a8254d9f89 100644 --- a/addons/sale_stock/i18n/hu.po +++ b/addons/sale_stock/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/id.po b/addons/sale_stock/i18n/id.po index d63d9d72936..29f5e64dcc1 100644 --- a/addons/sale_stock/i18n/id.po +++ b/addons/sale_stock/i18n/id.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/is.po b/addons/sale_stock/i18n/is.po index 132c4be5f89..c1886b63efa 100644 --- a/addons/sale_stock/i18n/is.po +++ b/addons/sale_stock/i18n/is.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/it.po b/addons/sale_stock/i18n/it.po index 6f15c82de07..c87d2e92754 100644 --- a/addons/sale_stock/i18n/it.po +++ b/addons/sale_stock/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/ja.po b/addons/sale_stock/i18n/ja.po index 9d24a9d6b1f..2040c0fd65e 100644 --- a/addons/sale_stock/i18n/ja.po +++ b/addons/sale_stock/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/ko.po b/addons/sale_stock/i18n/ko.po index 9d3f7547ae5..ba9357b3b70 100644 --- a/addons/sale_stock/i18n/ko.po +++ b/addons/sale_stock/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/lo.po b/addons/sale_stock/i18n/lo.po index db690bfa261..fd106e5b6d7 100644 --- a/addons/sale_stock/i18n/lo.po +++ b/addons/sale_stock/i18n/lo.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/lt.po b/addons/sale_stock/i18n/lt.po index 49e80b3985a..f4d48606ead 100644 --- a/addons/sale_stock/i18n/lt.po +++ b/addons/sale_stock/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/lv.po b/addons/sale_stock/i18n/lv.po index 7f44be92d09..a07c067d336 100644 --- a/addons/sale_stock/i18n/lv.po +++ b/addons/sale_stock/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/mk.po b/addons/sale_stock/i18n/mk.po index 5767620253d..0ec6ff02558 100644 --- a/addons/sale_stock/i18n/mk.po +++ b/addons/sale_stock/i18n/mk.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/mn.po b/addons/sale_stock/i18n/mn.po index 64f030f3997..36a21977428 100644 --- a/addons/sale_stock/i18n/mn.po +++ b/addons/sale_stock/i18n/mn.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/nb.po b/addons/sale_stock/i18n/nb.po index e4c2d21ba15..2326479a199 100644 --- a/addons/sale_stock/i18n/nb.po +++ b/addons/sale_stock/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/nl.po b/addons/sale_stock/i18n/nl.po index 5a0d04d0082..475a2f433a5 100644 --- a/addons/sale_stock/i18n/nl.po +++ b/addons/sale_stock/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/oc.po b/addons/sale_stock/i18n/oc.po index d5023da2c7a..5c0ec0f3c13 100644 --- a/addons/sale_stock/i18n/oc.po +++ b/addons/sale_stock/i18n/oc.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/pl.po b/addons/sale_stock/i18n/pl.po index 1d0671d3b28..633c1d78f99 100644 --- a/addons/sale_stock/i18n/pl.po +++ b/addons/sale_stock/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/pt.po b/addons/sale_stock/i18n/pt.po index f36f921b5ac..d3859167eda 100644 --- a/addons/sale_stock/i18n/pt.po +++ b/addons/sale_stock/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/pt_BR.po b/addons/sale_stock/i18n/pt_BR.po index be96481412d..efc254a8500 100644 --- a/addons/sale_stock/i18n/pt_BR.po +++ b/addons/sale_stock/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/ro.po b/addons/sale_stock/i18n/ro.po index 425166380c6..3fe6e02310c 100644 --- a/addons/sale_stock/i18n/ro.po +++ b/addons/sale_stock/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/ru.po b/addons/sale_stock/i18n/ru.po index c42e2a94b4f..f5c54417077 100644 --- a/addons/sale_stock/i18n/ru.po +++ b/addons/sale_stock/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/sk.po b/addons/sale_stock/i18n/sk.po index adcd88c5477..ced1fc41ca3 100644 --- a/addons/sale_stock/i18n/sk.po +++ b/addons/sale_stock/i18n/sk.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/sl.po b/addons/sale_stock/i18n/sl.po index 43822e47213..8116b678f18 100644 --- a/addons/sale_stock/i18n/sl.po +++ b/addons/sale_stock/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/sq.po b/addons/sale_stock/i18n/sq.po index bfaf427e72f..2c7ca6ec9a9 100644 --- a/addons/sale_stock/i18n/sq.po +++ b/addons/sale_stock/i18n/sq.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/sr.po b/addons/sale_stock/i18n/sr.po index a182f9575cd..b20fe1114d4 100644 --- a/addons/sale_stock/i18n/sr.po +++ b/addons/sale_stock/i18n/sr.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/sr@latin.po b/addons/sale_stock/i18n/sr@latin.po index c05406dff15..7202bc31f86 100644 --- a/addons/sale_stock/i18n/sr@latin.po +++ b/addons/sale_stock/i18n/sr@latin.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/sv.po b/addons/sale_stock/i18n/sv.po index e2c0d9e8b9d..12ba3e5cabd 100644 --- a/addons/sale_stock/i18n/sv.po +++ b/addons/sale_stock/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/th.po b/addons/sale_stock/i18n/th.po index dfd94db0eb0..23e2ac7d53d 100644 --- a/addons/sale_stock/i18n/th.po +++ b/addons/sale_stock/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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/tlh.po b/addons/sale_stock/i18n/tlh.po index b6bf376cdce..86654996df9 100644 --- a/addons/sale_stock/i18n/tlh.po +++ b/addons/sale_stock/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/tr.po b/addons/sale_stock/i18n/tr.po index 210b437f257..4bc921bf381 100644 --- a/addons/sale_stock/i18n/tr.po +++ b/addons/sale_stock/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/uk.po b/addons/sale_stock/i18n/uk.po index 202bb5e0c9b..04674375088 100644 --- a/addons/sale_stock/i18n/uk.po +++ b/addons/sale_stock/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/vi.po b/addons/sale_stock/i18n/vi.po index 2370a833534..ba06469d829 100644 --- a/addons/sale_stock/i18n/vi.po +++ b/addons/sale_stock/i18n/vi.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-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/zh_CN.po b/addons/sale_stock/i18n/zh_CN.po index 8b52d5f03d1..eea8fd88fb7 100644 --- a/addons/sale_stock/i18n/zh_CN.po +++ b/addons/sale_stock/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/zh_TW.po b/addons/sale_stock/i18n/zh_TW.po index 1e3f6327078..9a1fab8ac92 100644 --- a/addons/sale_stock/i18n/zh_TW.po +++ b/addons/sale_stock/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: sale_stock diff --git a/addons/share/i18n/ar.po b/addons/share/i18n/ar.po index 05bec0112a9..14164d83373 100644 --- a/addons/share/i18n/ar.po +++ b/addons/share/i18n/ar.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/bg.po b/addons/share/i18n/bg.po index bf09e8fe7c5..20f6c9ffc9c 100644 --- a/addons/share/i18n/bg.po +++ b/addons/share/i18n/bg.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/ca.po b/addons/share/i18n/ca.po index dc8b6483ae1..cbe3a1bed31 100644 --- a/addons/share/i18n/ca.po +++ b/addons/share/i18n/ca.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/cs.po b/addons/share/i18n/cs.po index b22995292d3..ac1a67e728f 100644 --- a/addons/share/i18n/cs.po +++ b/addons/share/i18n/cs.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/share/i18n/da.po b/addons/share/i18n/da.po index e9860a16c56..811c1978a06 100644 --- a/addons/share/i18n/da.po +++ b/addons/share/i18n/da.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/de.po b/addons/share/i18n/de.po index 8b2ddcdb744..3a4d897c838 100644 --- a/addons/share/i18n/de.po +++ b/addons/share/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/es.po b/addons/share/i18n/es.po index 55588b97587..c325b64b6bc 100644 --- a/addons/share/i18n/es.po +++ b/addons/share/i18n/es.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/es_CR.po b/addons/share/i18n/es_CR.po index 4aab2a184d7..71b2c6d6174 100644 --- a/addons/share/i18n/es_CR.po +++ b/addons/share/i18n/es_CR.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/share/i18n/et.po b/addons/share/i18n/et.po index 307b2663851..5f296b10439 100644 --- a/addons/share/i18n/et.po +++ b/addons/share/i18n/et.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/fi.po b/addons/share/i18n/fi.po index c0ad9571e3b..8788157fb80 100644 --- a/addons/share/i18n/fi.po +++ b/addons/share/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/fr.po b/addons/share/i18n/fr.po index a84d7f54953..4cb55b6e358 100644 --- a/addons/share/i18n/fr.po +++ b/addons/share/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/gl.po b/addons/share/i18n/gl.po index 9a7a48fddfe..b7616c9ded8 100644 --- a/addons/share/i18n/gl.po +++ b/addons/share/i18n/gl.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/hr.po b/addons/share/i18n/hr.po index 789f1a9fbec..9f23f0c60d4 100644 --- a/addons/share/i18n/hr.po +++ b/addons/share/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/hu.po b/addons/share/i18n/hu.po index e45a545f840..9585ca5e6eb 100644 --- a/addons/share/i18n/hu.po +++ b/addons/share/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/it.po b/addons/share/i18n/it.po index 058be240400..010cf84a587 100644 --- a/addons/share/i18n/it.po +++ b/addons/share/i18n/it.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/ja.po b/addons/share/i18n/ja.po index 15785ba28ab..cc7144a0c8e 100644 --- a/addons/share/i18n/ja.po +++ b/addons/share/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/mk.po b/addons/share/i18n/mk.po index 4dff5d45af9..5d58cb8e643 100644 --- a/addons/share/i18n/mk.po +++ b/addons/share/i18n/mk.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/mn.po b/addons/share/i18n/mn.po index 4ff922e0b44..39a8fa0421c 100644 --- a/addons/share/i18n/mn.po +++ b/addons/share/i18n/mn.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/nl.po b/addons/share/i18n/nl.po index f80b419b184..3b6fc25a1d4 100644 --- a/addons/share/i18n/nl.po +++ b/addons/share/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/pl.po b/addons/share/i18n/pl.po index 30325edc9ad..80a81e3a7e9 100644 --- a/addons/share/i18n/pl.po +++ b/addons/share/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/pt.po b/addons/share/i18n/pt.po index 34f3caa656e..716cf6539f2 100644 --- a/addons/share/i18n/pt.po +++ b/addons/share/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/pt_BR.po b/addons/share/i18n/pt_BR.po index ef7f99ca03a..d26b068a3a4 100644 --- a/addons/share/i18n/pt_BR.po +++ b/addons/share/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/ro.po b/addons/share/i18n/ro.po index 6ec668dda84..499661d7593 100644 --- a/addons/share/i18n/ro.po +++ b/addons/share/i18n/ro.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/ru.po b/addons/share/i18n/ru.po index 5bc17e2a78c..0c16c0b9a67 100644 --- a/addons/share/i18n/ru.po +++ b/addons/share/i18n/ru.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/sl.po b/addons/share/i18n/sl.po index 07bab75502a..68d6310d7a6 100644 --- a/addons/share/i18n/sl.po +++ b/addons/share/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/sv.po b/addons/share/i18n/sv.po index 64ae8fc69dc..64ce7013757 100644 --- a/addons/share/i18n/sv.po +++ b/addons/share/i18n/sv.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/tr.po b/addons/share/i18n/tr.po index 3e993de34ba..7aea6fa491b 100644 --- a/addons/share/i18n/tr.po +++ b/addons/share/i18n/tr.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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/share/i18n/zh_CN.po b/addons/share/i18n/zh_CN.po index 0aaa0308c65..ede2045d34c 100644 --- a/addons/share/i18n/zh_CN.po +++ b/addons/share/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-03-15 05:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: share diff --git a/addons/stock/i18n/ar.po b/addons/stock/i18n/ar.po index 5e53b91734b..ae8f1b7134e 100644 --- a/addons/stock/i18n/ar.po +++ b/addons/stock/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/bg.po b/addons/stock/i18n/bg.po index 38f8621c451..8dd4ecd5ba9 100644 --- a/addons/stock/i18n/bg.po +++ b/addons/stock/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/bs.po b/addons/stock/i18n/bs.po index 4bba98247e7..6890ab53af8 100644 --- a/addons/stock/i18n/bs.po +++ b/addons/stock/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/ca.po b/addons/stock/i18n/ca.po index e46b3cf5e04..513c6be2c13 100644 --- a/addons/stock/i18n/ca.po +++ b/addons/stock/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/cs.po b/addons/stock/i18n/cs.po index 765445779ec..01feed44d7a 100644 --- a/addons/stock/i18n/cs.po +++ b/addons/stock/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Language: Czech\n" diff --git a/addons/stock/i18n/da.po b/addons/stock/i18n/da.po index 10c2d1d7792..2c88aa254a2 100644 --- a/addons/stock/i18n/da.po +++ b/addons/stock/i18n/da.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/de.po b/addons/stock/i18n/de.po index 57e0d0d4107..5517d1642d9 100644 --- a/addons/stock/i18n/de.po +++ b/addons/stock/i18n/de.po @@ -15,7 +15,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-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/el.po b/addons/stock/i18n/el.po index cbd7a5147d4..3f6c5c7d014 100644 --- a/addons/stock/i18n/el.po +++ b/addons/stock/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/stock/i18n/es.po b/addons/stock/i18n/es.po index c498bc63982..1beea571e2d 100644 --- a/addons/stock/i18n/es.po +++ b/addons/stock/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #~ msgid "Stock Management" diff --git a/addons/stock/i18n/es_AR.po b/addons/stock/i18n/es_AR.po index f71c66b3fd2..a80787afbe5 100644 --- a/addons/stock/i18n/es_AR.po +++ b/addons/stock/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/es_CL.po b/addons/stock/i18n/es_CL.po index 6a1ab7d5c79..a5f10501203 100644 --- a/addons/stock/i18n/es_CL.po +++ b/addons/stock/i18n/es_CL.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/es_CR.po b/addons/stock/i18n/es_CR.po index 7bf59b2825d..581142446a7 100644 --- a/addons/stock/i18n/es_CR.po +++ b/addons/stock/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/stock/i18n/es_DO.po b/addons/stock/i18n/es_DO.po index 12d6fd0a5a9..be8b89e8b88 100644 --- a/addons/stock/i18n/es_DO.po +++ b/addons/stock/i18n/es_DO.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/es_EC.po b/addons/stock/i18n/es_EC.po index 42dab49b8e1..78ae67b2e67 100644 --- a/addons/stock/i18n/es_EC.po +++ b/addons/stock/i18n/es_EC.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/es_MX.po b/addons/stock/i18n/es_MX.po index 722b5f5a1f5..598b1400da4 100644 --- a/addons/stock/i18n/es_MX.po +++ b/addons/stock/i18n/es_MX.po @@ -15,7 +15,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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/es_VE.po b/addons/stock/i18n/es_VE.po index 7bae8e98e77..8fded71dbfe 100644 --- a/addons/stock/i18n/es_VE.po +++ b/addons/stock/i18n/es_VE.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-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/et.po b/addons/stock/i18n/et.po index 64046a8f45c..b03e80d2da1 100644 --- a/addons/stock/i18n/et.po +++ b/addons/stock/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/fi.po b/addons/stock/i18n/fi.po index 84b72e750e2..04b63403a60 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-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/fr.po b/addons/stock/i18n/fr.po index a79a4a7873b..bf94f281d2f 100644 --- a/addons/stock/i18n/fr.po +++ b/addons/stock/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/gl.po b/addons/stock/i18n/gl.po index c6ccc3d1a8d..8258069c59a 100644 --- a/addons/stock/i18n/gl.po +++ b/addons/stock/i18n/gl.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-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/hr.po b/addons/stock/i18n/hr.po index 6be298e7483..30a11eb972e 100644 --- a/addons/stock/i18n/hr.po +++ b/addons/stock/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/hu.po b/addons/stock/i18n/hu.po index c44cab185d3..7601bf4f50a 100644 --- a/addons/stock/i18n/hu.po +++ b/addons/stock/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/id.po b/addons/stock/i18n/id.po index c3898e9cd21..6cd669fa12e 100644 --- a/addons/stock/i18n/id.po +++ b/addons/stock/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/it.po b/addons/stock/i18n/it.po index 02074c203b2..c8e6a5b93ff 100644 --- a/addons/stock/i18n/it.po +++ b/addons/stock/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/ja.po b/addons/stock/i18n/ja.po index 875e5c858d5..52e097c3d1b 100644 --- a/addons/stock/i18n/ja.po +++ b/addons/stock/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-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/ko.po b/addons/stock/i18n/ko.po index 648f8fd8593..d734e061dca 100644 --- a/addons/stock/i18n/ko.po +++ b/addons/stock/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/lt.po b/addons/stock/i18n/lt.po index 20960ced867..b569477a94c 100644 --- a/addons/stock/i18n/lt.po +++ b/addons/stock/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: lt\n" diff --git a/addons/stock/i18n/lv.po b/addons/stock/i18n/lv.po index 4091e99b7f3..6462224c9b8 100644 --- a/addons/stock/i18n/lv.po +++ b/addons/stock/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/mk.po b/addons/stock/i18n/mk.po index 12dc608d1e3..f7b18b36a24 100644 --- a/addons/stock/i18n/mk.po +++ b/addons/stock/i18n/mk.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-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/mn.po b/addons/stock/i18n/mn.po index 9867c49c11e..b092767e941 100644 --- a/addons/stock/i18n/mn.po +++ b/addons/stock/i18n/mn.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-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/nb.po b/addons/stock/i18n/nb.po index 6e687d1782f..9e45d0018eb 100644 --- a/addons/stock/i18n/nb.po +++ b/addons/stock/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/nl.po b/addons/stock/i18n/nl.po index 1fa599a7dd9..ebf85e93ceb 100644 --- a/addons/stock/i18n/nl.po +++ b/addons/stock/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock @@ -290,7 +290,7 @@ msgstr "Oorsprong" #: view:board.board:0 #: model:ir.actions.act_window,name:stock.action_stock_incoming_product_delay msgid "Incoming Products" -msgstr "Binnenkomende leveringen" +msgstr "Inkomende leveringen" #. module: stock #: view:report.stock.lines.date:0 @@ -3033,7 +3033,7 @@ msgid "" "need this report in order to ensure that the stock of each product is " "controlled at least once a year." msgstr "" -"Geef de laatste voorraadtellingen gedaan op uw producten weer sorteer ze " +"Geeft de laatste voorraadtellingen gedaan op uw producten weer sorteer ze " "eenvoudig met specifieke filtercriteria. Als u vaak en gedeeltelijke " "voorraadtelling doet, heeft u dit rapport nodig om ervoor te zorgen dat de " "voorraad van elk product ten minste eenmaal per jaar wordt geteld." diff --git a/addons/stock/i18n/nl_BE.po b/addons/stock/i18n/nl_BE.po index 0a10608530d..b78506ee846 100644 --- a/addons/stock/i18n/nl_BE.po +++ b/addons/stock/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/pl.po b/addons/stock/i18n/pl.po index e40f939f91e..9ed02933305 100644 --- a/addons/stock/i18n/pl.po +++ b/addons/stock/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/pt.po b/addons/stock/i18n/pt.po index 9b1bf0cf99f..c5d07a0401e 100644 --- a/addons/stock/i18n/pt.po +++ b/addons/stock/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/pt_BR.po b/addons/stock/i18n/pt_BR.po index 367ce40933f..95d8d036053 100644 --- a/addons/stock/i18n/pt_BR.po +++ b/addons/stock/i18n/pt_BR.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-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/ro.po b/addons/stock/i18n/ro.po index 2756a8a2d75..83f216e0633 100644 --- a/addons/stock/i18n/ro.po +++ b/addons/stock/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/ru.po b/addons/stock/i18n/ru.po index 41f98339d3d..4a79cec4b89 100644 --- a/addons/stock/i18n/ru.po +++ b/addons/stock/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:58+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/sl.po b/addons/stock/i18n/sl.po index b67e623e748..9975e5156e5 100644 --- a/addons/stock/i18n/sl.po +++ b/addons/stock/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/sq.po b/addons/stock/i18n/sq.po index 577ff796706..d91608f5deb 100644 --- a/addons/stock/i18n/sq.po +++ b/addons/stock/i18n/sq.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-03-15 04:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:57+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/sr.po b/addons/stock/i18n/sr.po index ad5e70250e5..8f0c95f08d5 100644 --- a/addons/stock/i18n/sr.po +++ b/addons/stock/i18n/sr.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-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/sr@latin.po b/addons/stock/i18n/sr@latin.po index e5ca03ec322..c3bea54bf57 100644 --- a/addons/stock/i18n/sr@latin.po +++ b/addons/stock/i18n/sr@latin.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/sv.po b/addons/stock/i18n/sv.po index cca4002b5c3..3a08855493f 100644 --- a/addons/stock/i18n/sv.po +++ b/addons/stock/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/th.po b/addons/stock/i18n/th.po index 5350e64d8db..664be4ba3a6 100644 --- a/addons/stock/i18n/th.po +++ b/addons/stock/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-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/tlh.po b/addons/stock/i18n/tlh.po index 6cbdaad1c3d..a8b561cae88 100644 --- a/addons/stock/i18n/tlh.po +++ b/addons/stock/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/tr.po b/addons/stock/i18n/tr.po index 571a4adaaef..7975ae02205 100644 --- a/addons/stock/i18n/tr.po +++ b/addons/stock/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/uk.po b/addons/stock/i18n/uk.po index c1cd566ab4a..3fdfe7a7033 100644 --- a/addons/stock/i18n/uk.po +++ b/addons/stock/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/vi.po b/addons/stock/i18n/vi.po index 1b90a7f3a7e..7283be5e7ff 100644 --- a/addons/stock/i18n/vi.po +++ b/addons/stock/i18n/vi.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-03-15 05:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 04:59+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/zh_CN.po b/addons/stock/i18n/zh_CN.po index 61be6b70096..407a76e63b7 100644 --- a/addons/stock/i18n/zh_CN.po +++ b/addons/stock/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock/i18n/zh_TW.po b/addons/stock/i18n/zh_TW.po index d5911dc0c0e..d8f4e115f1f 100644 --- a/addons/stock/i18n/zh_TW.po +++ b/addons/stock/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock diff --git a/addons/stock_invoice_directly/i18n/ar.po b/addons/stock_invoice_directly/i18n/ar.po index 7de98a19f18..1ea30e49bce 100644 --- a/addons/stock_invoice_directly/i18n/ar.po +++ b/addons/stock_invoice_directly/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/bg.po b/addons/stock_invoice_directly/i18n/bg.po index 66361fc7367..87165201d82 100644 --- a/addons/stock_invoice_directly/i18n/bg.po +++ b/addons/stock_invoice_directly/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/bs.po b/addons/stock_invoice_directly/i18n/bs.po index d6bd1fa90c6..410004e104d 100644 --- a/addons/stock_invoice_directly/i18n/bs.po +++ b/addons/stock_invoice_directly/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/ca.po b/addons/stock_invoice_directly/i18n/ca.po index 2aca5526faf..4d12ca3588b 100644 --- a/addons/stock_invoice_directly/i18n/ca.po +++ b/addons/stock_invoice_directly/i18n/ca.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/cs.po b/addons/stock_invoice_directly/i18n/cs.po index 8c4c82738e9..0183f43d6fe 100644 --- a/addons/stock_invoice_directly/i18n/cs.po +++ b/addons/stock_invoice_directly/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/da.po b/addons/stock_invoice_directly/i18n/da.po index aee971161e2..6f2b13734db 100644 --- a/addons/stock_invoice_directly/i18n/da.po +++ b/addons/stock_invoice_directly/i18n/da.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/de.po b/addons/stock_invoice_directly/i18n/de.po index fff38221b75..5cbf7a3777d 100644 --- a/addons/stock_invoice_directly/i18n/de.po +++ b/addons/stock_invoice_directly/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/el.po b/addons/stock_invoice_directly/i18n/el.po index d5357febca1..1b60495a6a0 100644 --- a/addons/stock_invoice_directly/i18n/el.po +++ b/addons/stock_invoice_directly/i18n/el.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/es.po b/addons/stock_invoice_directly/i18n/es.po index fa57681e3d7..079b6379fe0 100644 --- a/addons/stock_invoice_directly/i18n/es.po +++ b/addons/stock_invoice_directly/i18n/es.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/es_AR.po b/addons/stock_invoice_directly/i18n/es_AR.po index c7ec1b876c6..b8bd4317c6e 100644 --- a/addons/stock_invoice_directly/i18n/es_AR.po +++ b/addons/stock_invoice_directly/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/es_CL.po b/addons/stock_invoice_directly/i18n/es_CL.po index ede720e2adb..568b0549afe 100644 --- a/addons/stock_invoice_directly/i18n/es_CL.po +++ b/addons/stock_invoice_directly/i18n/es_CL.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/es_CR.po b/addons/stock_invoice_directly/i18n/es_CR.po index e74c8365e5b..9c0383b058f 100644 --- a/addons/stock_invoice_directly/i18n/es_CR.po +++ b/addons/stock_invoice_directly/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/stock_invoice_directly/i18n/et.po b/addons/stock_invoice_directly/i18n/et.po index e6e5561151e..c2403ecca24 100644 --- a/addons/stock_invoice_directly/i18n/et.po +++ b/addons/stock_invoice_directly/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/fi.po b/addons/stock_invoice_directly/i18n/fi.po index 175cbca742b..a9291ccc842 100644 --- a/addons/stock_invoice_directly/i18n/fi.po +++ b/addons/stock_invoice_directly/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/fr.po b/addons/stock_invoice_directly/i18n/fr.po index e6d891dff91..924ef76aeda 100644 --- a/addons/stock_invoice_directly/i18n/fr.po +++ b/addons/stock_invoice_directly/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/gl.po b/addons/stock_invoice_directly/i18n/gl.po index b6b264b1c23..8283a578b16 100644 --- a/addons/stock_invoice_directly/i18n/gl.po +++ b/addons/stock_invoice_directly/i18n/gl.po @@ -15,7 +15,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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/hr.po b/addons/stock_invoice_directly/i18n/hr.po index e0e5b7548e5..8154909d635 100644 --- a/addons/stock_invoice_directly/i18n/hr.po +++ b/addons/stock_invoice_directly/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/hu.po b/addons/stock_invoice_directly/i18n/hu.po index bb862a3d47f..c3e4ffab832 100644 --- a/addons/stock_invoice_directly/i18n/hu.po +++ b/addons/stock_invoice_directly/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/id.po b/addons/stock_invoice_directly/i18n/id.po index c8c8691d776..b6642f59a8a 100644 --- a/addons/stock_invoice_directly/i18n/id.po +++ b/addons/stock_invoice_directly/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/it.po b/addons/stock_invoice_directly/i18n/it.po index 3ef1f34fb46..ba4d2231d57 100644 --- a/addons/stock_invoice_directly/i18n/it.po +++ b/addons/stock_invoice_directly/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/ja.po b/addons/stock_invoice_directly/i18n/ja.po index 6d4e1c60d5e..40531552e61 100644 --- a/addons/stock_invoice_directly/i18n/ja.po +++ b/addons/stock_invoice_directly/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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/ko.po b/addons/stock_invoice_directly/i18n/ko.po index c868d63e3ef..4a57a27ea32 100644 --- a/addons/stock_invoice_directly/i18n/ko.po +++ b/addons/stock_invoice_directly/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/lt.po b/addons/stock_invoice_directly/i18n/lt.po index 86a9170fe80..02772abe2d6 100644 --- a/addons/stock_invoice_directly/i18n/lt.po +++ b/addons/stock_invoice_directly/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/lv.po b/addons/stock_invoice_directly/i18n/lv.po index d4c88ee196e..ca1d7e5e43e 100644 --- a/addons/stock_invoice_directly/i18n/lv.po +++ b/addons/stock_invoice_directly/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/mk.po b/addons/stock_invoice_directly/i18n/mk.po index 3db9592e14d..92347fc589b 100644 --- a/addons/stock_invoice_directly/i18n/mk.po +++ b/addons/stock_invoice_directly/i18n/mk.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/mn.po b/addons/stock_invoice_directly/i18n/mn.po index 4c66df886f6..6cf98738218 100644 --- a/addons/stock_invoice_directly/i18n/mn.po +++ b/addons/stock_invoice_directly/i18n/mn.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/nb.po b/addons/stock_invoice_directly/i18n/nb.po index cba257c5e01..3c5199be927 100644 --- a/addons/stock_invoice_directly/i18n/nb.po +++ b/addons/stock_invoice_directly/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/nl.po b/addons/stock_invoice_directly/i18n/nl.po index cb54709921a..8546559351f 100644 --- a/addons/stock_invoice_directly/i18n/nl.po +++ b/addons/stock_invoice_directly/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/nl_BE.po b/addons/stock_invoice_directly/i18n/nl_BE.po index 47476f03557..124d4cf5e82 100644 --- a/addons/stock_invoice_directly/i18n/nl_BE.po +++ b/addons/stock_invoice_directly/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/oc.po b/addons/stock_invoice_directly/i18n/oc.po index 13da7142f5e..481f8da9674 100644 --- a/addons/stock_invoice_directly/i18n/oc.po +++ b/addons/stock_invoice_directly/i18n/oc.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/pl.po b/addons/stock_invoice_directly/i18n/pl.po index 2c50a6a6692..b5d43ffa175 100644 --- a/addons/stock_invoice_directly/i18n/pl.po +++ b/addons/stock_invoice_directly/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/pt.po b/addons/stock_invoice_directly/i18n/pt.po index 4cffa2a2264..52a9704b261 100644 --- a/addons/stock_invoice_directly/i18n/pt.po +++ b/addons/stock_invoice_directly/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/pt_BR.po b/addons/stock_invoice_directly/i18n/pt_BR.po index 8f6f966445a..8eb26db5ac4 100644 --- a/addons/stock_invoice_directly/i18n/pt_BR.po +++ b/addons/stock_invoice_directly/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/ro.po b/addons/stock_invoice_directly/i18n/ro.po index c9f037bc215..df79c75812c 100644 --- a/addons/stock_invoice_directly/i18n/ro.po +++ b/addons/stock_invoice_directly/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/ru.po b/addons/stock_invoice_directly/i18n/ru.po index a3da8f97b12..055fe13d30f 100644 --- a/addons/stock_invoice_directly/i18n/ru.po +++ b/addons/stock_invoice_directly/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/sl.po b/addons/stock_invoice_directly/i18n/sl.po index ab4ae4fc97f..606ae436370 100644 --- a/addons/stock_invoice_directly/i18n/sl.po +++ b/addons/stock_invoice_directly/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/sq.po b/addons/stock_invoice_directly/i18n/sq.po index 8a8f013ab86..4ec490b7447 100644 --- a/addons/stock_invoice_directly/i18n/sq.po +++ b/addons/stock_invoice_directly/i18n/sq.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/sr.po b/addons/stock_invoice_directly/i18n/sr.po index d255f80e7e7..9ffb2ad9709 100644 --- a/addons/stock_invoice_directly/i18n/sr.po +++ b/addons/stock_invoice_directly/i18n/sr.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/sr@latin.po b/addons/stock_invoice_directly/i18n/sr@latin.po index fdf552ae390..beb98a7fd43 100644 --- a/addons/stock_invoice_directly/i18n/sr@latin.po +++ b/addons/stock_invoice_directly/i18n/sr@latin.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/sv.po b/addons/stock_invoice_directly/i18n/sv.po index d01230d95eb..6622a620ae2 100644 --- a/addons/stock_invoice_directly/i18n/sv.po +++ b/addons/stock_invoice_directly/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/tr.po b/addons/stock_invoice_directly/i18n/tr.po index 3da0e1d4af3..627961ce50d 100644 --- a/addons/stock_invoice_directly/i18n/tr.po +++ b/addons/stock_invoice_directly/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/uk.po b/addons/stock_invoice_directly/i18n/uk.po index 28813d48fc8..82cf386b4c8 100644 --- a/addons/stock_invoice_directly/i18n/uk.po +++ b/addons/stock_invoice_directly/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/vi.po b/addons/stock_invoice_directly/i18n/vi.po index 40b4a4462f9..029f0133910 100644 --- a/addons/stock_invoice_directly/i18n/vi.po +++ b/addons/stock_invoice_directly/i18n/vi.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-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/zh_CN.po b/addons/stock_invoice_directly/i18n/zh_CN.po index 6d8c6dc08fd..8027a281124 100644 --- a/addons/stock_invoice_directly/i18n/zh_CN.po +++ b/addons/stock_invoice_directly/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_invoice_directly/i18n/zh_TW.po b/addons/stock_invoice_directly/i18n/zh_TW.po index 86a9170fe80..02772abe2d6 100644 --- a/addons/stock_invoice_directly/i18n/zh_TW.po +++ b/addons/stock_invoice_directly/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:36+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_invoice_directly diff --git a/addons/stock_location/i18n/ar.po b/addons/stock_location/i18n/ar.po index 813126f6a9f..ba1b2c88eff 100644 --- a/addons/stock_location/i18n/ar.po +++ b/addons/stock_location/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/bg.po b/addons/stock_location/i18n/bg.po index 24f734758a3..d5d892903c8 100644 --- a/addons/stock_location/i18n/bg.po +++ b/addons/stock_location/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/bs.po b/addons/stock_location/i18n/bs.po index e5ee47a5aad..2f65dfdd8ef 100644 --- a/addons/stock_location/i18n/bs.po +++ b/addons/stock_location/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/ca.po b/addons/stock_location/i18n/ca.po index 4f259295c9f..52c616f1113 100644 --- a/addons/stock_location/i18n/ca.po +++ b/addons/stock_location/i18n/ca.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/cs.po b/addons/stock_location/i18n/cs.po index 13eb27b3ec3..b537d843ea6 100644 --- a/addons/stock_location/i18n/cs.po +++ b/addons/stock_location/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/da.po b/addons/stock_location/i18n/da.po index 8cd9997e29c..fd0973383fc 100644 --- a/addons/stock_location/i18n/da.po +++ b/addons/stock_location/i18n/da.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/de.po b/addons/stock_location/i18n/de.po index 25cb2652d82..501804f1d78 100644 --- a/addons/stock_location/i18n/de.po +++ b/addons/stock_location/i18n/de.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/el.po b/addons/stock_location/i18n/el.po index 192b94573b9..c46125af2bf 100644 --- a/addons/stock_location/i18n/el.po +++ b/addons/stock_location/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/stock_location/i18n/es.po b/addons/stock_location/i18n/es.po index 05e87387f40..c9008e3f203 100644 --- a/addons/stock_location/i18n/es.po +++ b/addons/stock_location/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/es_AR.po b/addons/stock_location/i18n/es_AR.po index de9940c7bac..699cab73700 100644 --- a/addons/stock_location/i18n/es_AR.po +++ b/addons/stock_location/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/es_CL.po b/addons/stock_location/i18n/es_CL.po index af5df652218..f9d7fc3ff10 100644 --- a/addons/stock_location/i18n/es_CL.po +++ b/addons/stock_location/i18n/es_CL.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/es_CR.po b/addons/stock_location/i18n/es_CR.po index b782f0e2810..249f78af5ee 100644 --- a/addons/stock_location/i18n/es_CR.po +++ b/addons/stock_location/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/stock_location/i18n/et.po b/addons/stock_location/i18n/et.po index ce7ff4b2c26..8dc16bd4591 100644 --- a/addons/stock_location/i18n/et.po +++ b/addons/stock_location/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/fi.po b/addons/stock_location/i18n/fi.po index 7b995ba89a3..e6e62475879 100644 --- a/addons/stock_location/i18n/fi.po +++ b/addons/stock_location/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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/fr.po b/addons/stock_location/i18n/fr.po index f945aab6191..46f3b5b2579 100644 --- a/addons/stock_location/i18n/fr.po +++ b/addons/stock_location/i18n/fr.po @@ -7,19 +7,21 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-11-29 14:10+0000\n" -"Last-Translator: Numérigraphe \n" +"PO-Revision-Date: 2013-03-15 07:56+0000\n" +"Last-Translator: WANTELLET Sylvain \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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 msgid "Is used to know to which company the pickings and moves belong." msgstr "" +"Est utilisé pour savoir à quelle société appartiennent les opérations de " +"manutention et les mouvements." #. module: stock_location #: selection:product.pulled.flow,picking_type:0 @@ -194,7 +196,7 @@ msgstr "Production sur stock" #: code:addons/stock_location/procurement_pull.py:118 #, python-format msgid "Pulled from another location." -msgstr "" +msgstr "Tiré à partir d'un autre emplacement." #. module: stock_location #: field:product.pulled.flow,partner_address_id:0 @@ -320,12 +322,12 @@ msgstr "" #. module: stock_location #: view:product.product:0 msgid "Push Flow" -msgstr "" +msgstr "Flux poussé" #. module: stock_location #: view:product.product:0 msgid "Pull Flow" -msgstr "" +msgstr "Flux tiré" #. module: stock_location #: model:ir.model,name:stock_location.model_procurement_order diff --git a/addons/stock_location/i18n/gl.po b/addons/stock_location/i18n/gl.po index 19c4e3f0f22..1a847b366af 100644 --- a/addons/stock_location/i18n/gl.po +++ b/addons/stock_location/i18n/gl.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/hr.po b/addons/stock_location/i18n/hr.po index a1b6e46bc5d..4aeee771540 100644 --- a/addons/stock_location/i18n/hr.po +++ b/addons/stock_location/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/hu.po b/addons/stock_location/i18n/hu.po index af967caf09c..ec96c211de7 100644 --- a/addons/stock_location/i18n/hu.po +++ b/addons/stock_location/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/id.po b/addons/stock_location/i18n/id.po index 55734c59408..f738b02815f 100644 --- a/addons/stock_location/i18n/id.po +++ b/addons/stock_location/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/it.po b/addons/stock_location/i18n/it.po index 1f109ae1d3d..289b9da2604 100644 --- a/addons/stock_location/i18n/it.po +++ b/addons/stock_location/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/ja.po b/addons/stock_location/i18n/ja.po index f7592f58810..992ffc96923 100644 --- a/addons/stock_location/i18n/ja.po +++ b/addons/stock_location/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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/ko.po b/addons/stock_location/i18n/ko.po index 83f0267add5..371cb6bb319 100644 --- a/addons/stock_location/i18n/ko.po +++ b/addons/stock_location/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/lt.po b/addons/stock_location/i18n/lt.po index 901ca3ffcc4..14d26815716 100644 --- a/addons/stock_location/i18n/lt.po +++ b/addons/stock_location/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/lv.po b/addons/stock_location/i18n/lv.po index 471e073baec..2e4d4e4407b 100644 --- a/addons/stock_location/i18n/lv.po +++ b/addons/stock_location/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/mk.po b/addons/stock_location/i18n/mk.po index b1484269eb9..33f10a640c9 100644 --- a/addons/stock_location/i18n/mk.po +++ b/addons/stock_location/i18n/mk.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/mn.po b/addons/stock_location/i18n/mn.po index 69163fe8f35..6abe5906e18 100644 --- a/addons/stock_location/i18n/mn.po +++ b/addons/stock_location/i18n/mn.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/nb.po b/addons/stock_location/i18n/nb.po index bde281be24d..48132172066 100644 --- a/addons/stock_location/i18n/nb.po +++ b/addons/stock_location/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/nl.po b/addons/stock_location/i18n/nl.po index 294b15d59c1..a3f43c252e4 100644 --- a/addons/stock_location/i18n/nl.po +++ b/addons/stock_location/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/nl_BE.po b/addons/stock_location/i18n/nl_BE.po index a1cbf148bc5..186eec74c3f 100644 --- a/addons/stock_location/i18n/nl_BE.po +++ b/addons/stock_location/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/pl.po b/addons/stock_location/i18n/pl.po index f424211cb9b..43406ff68c3 100644 --- a/addons/stock_location/i18n/pl.po +++ b/addons/stock_location/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/pt.po b/addons/stock_location/i18n/pt.po index 46e9ac102da..3e430a1d590 100644 --- a/addons/stock_location/i18n/pt.po +++ b/addons/stock_location/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/pt_BR.po b/addons/stock_location/i18n/pt_BR.po index ead25676578..c8995c31fcd 100644 --- a/addons/stock_location/i18n/pt_BR.po +++ b/addons/stock_location/i18n/pt_BR.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/ro.po b/addons/stock_location/i18n/ro.po index 41c34d2f684..a6075b5fc0e 100644 --- a/addons/stock_location/i18n/ro.po +++ b/addons/stock_location/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/ru.po b/addons/stock_location/i18n/ru.po index 33d387538dd..3a1a7cc792c 100644 --- a/addons/stock_location/i18n/ru.po +++ b/addons/stock_location/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/sl.po b/addons/stock_location/i18n/sl.po index 8b6b4567d29..5856b6b8118 100644 --- a/addons/stock_location/i18n/sl.po +++ b/addons/stock_location/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/sq.po b/addons/stock_location/i18n/sq.po index 4e4a5b84964..f2f135b5a16 100644 --- a/addons/stock_location/i18n/sq.po +++ b/addons/stock_location/i18n/sq.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:34+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/sv.po b/addons/stock_location/i18n/sv.po index 9a0efc1a5b7..bba46cf8040 100644 --- a/addons/stock_location/i18n/sv.po +++ b/addons/stock_location/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/tlh.po b/addons/stock_location/i18n/tlh.po index cb23e42e15c..4e60be8f67b 100644 --- a/addons/stock_location/i18n/tlh.po +++ b/addons/stock_location/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/tr.po b/addons/stock_location/i18n/tr.po index 31af5e6d01f..ac4db22fdf2 100644 --- a/addons/stock_location/i18n/tr.po +++ b/addons/stock_location/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/uk.po b/addons/stock_location/i18n/uk.po index c34fd0cfd97..1c07537af7f 100644 --- a/addons/stock_location/i18n/uk.po +++ b/addons/stock_location/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/vi.po b/addons/stock_location/i18n/vi.po index f1986b038db..eea2707d874 100644 --- a/addons/stock_location/i18n/vi.po +++ b/addons/stock_location/i18n/vi.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-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/zh_CN.po b/addons/stock_location/i18n/zh_CN.po index f4f84c4979a..8212be35bf8 100644 --- a/addons/stock_location/i18n/zh_CN.po +++ b/addons/stock_location/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_location/i18n/zh_TW.po b/addons/stock_location/i18n/zh_TW.po index e54cde60c13..fcb644d0242 100644 --- a/addons/stock_location/i18n/zh_TW.po +++ b/addons/stock_location/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_location diff --git a/addons/stock_no_autopicking/i18n/ar.po b/addons/stock_no_autopicking/i18n/ar.po index 57def435883..a11fc197f88 100644 --- a/addons/stock_no_autopicking/i18n/ar.po +++ b/addons/stock_no_autopicking/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/bg.po b/addons/stock_no_autopicking/i18n/bg.po index 6053a23d228..0f9ae12e1e8 100644 --- a/addons/stock_no_autopicking/i18n/bg.po +++ b/addons/stock_no_autopicking/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/bs.po b/addons/stock_no_autopicking/i18n/bs.po index 5457c777ce5..34f1ea577c3 100644 --- a/addons/stock_no_autopicking/i18n/bs.po +++ b/addons/stock_no_autopicking/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/ca.po b/addons/stock_no_autopicking/i18n/ca.po index 558a02f3294..423a569a3a8 100644 --- a/addons/stock_no_autopicking/i18n/ca.po +++ b/addons/stock_no_autopicking/i18n/ca.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/cs.po b/addons/stock_no_autopicking/i18n/cs.po index ff14e7cb0e3..f716bdea001 100644 --- a/addons/stock_no_autopicking/i18n/cs.po +++ b/addons/stock_no_autopicking/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/da.po b/addons/stock_no_autopicking/i18n/da.po index 63dc0392931..080aaa883a7 100644 --- a/addons/stock_no_autopicking/i18n/da.po +++ b/addons/stock_no_autopicking/i18n/da.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/de.po b/addons/stock_no_autopicking/i18n/de.po index 52cd486fea8..569af3c8440 100644 --- a/addons/stock_no_autopicking/i18n/de.po +++ b/addons/stock_no_autopicking/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/el.po b/addons/stock_no_autopicking/i18n/el.po index ac10f682aee..8dcf8484699 100644 --- a/addons/stock_no_autopicking/i18n/el.po +++ b/addons/stock_no_autopicking/i18n/el.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" diff --git a/addons/stock_no_autopicking/i18n/es.po b/addons/stock_no_autopicking/i18n/es.po index ad9a629e6c1..9754f4235ae 100644 --- a/addons/stock_no_autopicking/i18n/es.po +++ b/addons/stock_no_autopicking/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/es_AR.po b/addons/stock_no_autopicking/i18n/es_AR.po index 56654affe4e..0ab07a0902f 100644 --- a/addons/stock_no_autopicking/i18n/es_AR.po +++ b/addons/stock_no_autopicking/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/es_CL.po b/addons/stock_no_autopicking/i18n/es_CL.po index f27ae7318f2..49d23c7806d 100644 --- a/addons/stock_no_autopicking/i18n/es_CL.po +++ b/addons/stock_no_autopicking/i18n/es_CL.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/es_CR.po b/addons/stock_no_autopicking/i18n/es_CR.po index eba92f28f33..e9583126911 100644 --- a/addons/stock_no_autopicking/i18n/es_CR.po +++ b/addons/stock_no_autopicking/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/stock_no_autopicking/i18n/et.po b/addons/stock_no_autopicking/i18n/et.po index 41ec67fb6e9..0d98dcfc5ff 100644 --- a/addons/stock_no_autopicking/i18n/et.po +++ b/addons/stock_no_autopicking/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/fi.po b/addons/stock_no_autopicking/i18n/fi.po index 9e0817034b5..251ca19401d 100644 --- a/addons/stock_no_autopicking/i18n/fi.po +++ b/addons/stock_no_autopicking/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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/fr.po b/addons/stock_no_autopicking/i18n/fr.po index b0fc74b62c0..b034adbb0d2 100644 --- a/addons/stock_no_autopicking/i18n/fr.po +++ b/addons/stock_no_autopicking/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/gl.po b/addons/stock_no_autopicking/i18n/gl.po index 632184aee7f..a507bcf94f1 100644 --- a/addons/stock_no_autopicking/i18n/gl.po +++ b/addons/stock_no_autopicking/i18n/gl.po @@ -15,7 +15,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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/hr.po b/addons/stock_no_autopicking/i18n/hr.po index 32182814912..6a2eb87d173 100644 --- a/addons/stock_no_autopicking/i18n/hr.po +++ b/addons/stock_no_autopicking/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/hu.po b/addons/stock_no_autopicking/i18n/hu.po index ea1860b5356..fa6aa0e5ba7 100644 --- a/addons/stock_no_autopicking/i18n/hu.po +++ b/addons/stock_no_autopicking/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/id.po b/addons/stock_no_autopicking/i18n/id.po index c93013c33a7..32e42fe3fa5 100644 --- a/addons/stock_no_autopicking/i18n/id.po +++ b/addons/stock_no_autopicking/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/it.po b/addons/stock_no_autopicking/i18n/it.po index 30910089769..432709f4ff0 100644 --- a/addons/stock_no_autopicking/i18n/it.po +++ b/addons/stock_no_autopicking/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/ja.po b/addons/stock_no_autopicking/i18n/ja.po index 05ef53b1d32..e8ab73fe32b 100644 --- a/addons/stock_no_autopicking/i18n/ja.po +++ b/addons/stock_no_autopicking/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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/ko.po b/addons/stock_no_autopicking/i18n/ko.po index a6d325851e9..6fc3a106d4a 100644 --- a/addons/stock_no_autopicking/i18n/ko.po +++ b/addons/stock_no_autopicking/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/lt.po b/addons/stock_no_autopicking/i18n/lt.po index c01d40b439b..0faa77d75ea 100644 --- a/addons/stock_no_autopicking/i18n/lt.po +++ b/addons/stock_no_autopicking/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/lv.po b/addons/stock_no_autopicking/i18n/lv.po index 442f653e765..78990f64e55 100644 --- a/addons/stock_no_autopicking/i18n/lv.po +++ b/addons/stock_no_autopicking/i18n/lv.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/mk.po b/addons/stock_no_autopicking/i18n/mk.po index fea834deb55..13edd57b9cf 100644 --- a/addons/stock_no_autopicking/i18n/mk.po +++ b/addons/stock_no_autopicking/i18n/mk.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/mn.po b/addons/stock_no_autopicking/i18n/mn.po index c17d88d8358..169ee51bda3 100644 --- a/addons/stock_no_autopicking/i18n/mn.po +++ b/addons/stock_no_autopicking/i18n/mn.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/nl.po b/addons/stock_no_autopicking/i18n/nl.po index e2d33ff743b..63e16a4074a 100644 --- a/addons/stock_no_autopicking/i18n/nl.po +++ b/addons/stock_no_autopicking/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/nl_BE.po b/addons/stock_no_autopicking/i18n/nl_BE.po index b6e39c56d04..5ddffdbc0d1 100644 --- a/addons/stock_no_autopicking/i18n/nl_BE.po +++ b/addons/stock_no_autopicking/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/oc.po b/addons/stock_no_autopicking/i18n/oc.po index b32c6ec23a1..e9d937e70e0 100644 --- a/addons/stock_no_autopicking/i18n/oc.po +++ b/addons/stock_no_autopicking/i18n/oc.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/pl.po b/addons/stock_no_autopicking/i18n/pl.po index 656a74e2774..1a37c00b0c5 100644 --- a/addons/stock_no_autopicking/i18n/pl.po +++ b/addons/stock_no_autopicking/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/pt.po b/addons/stock_no_autopicking/i18n/pt.po index 0064d922b33..9866f6b881e 100644 --- a/addons/stock_no_autopicking/i18n/pt.po +++ b/addons/stock_no_autopicking/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/pt_BR.po b/addons/stock_no_autopicking/i18n/pt_BR.po index 5f046b0a325..c80e50af717 100644 --- a/addons/stock_no_autopicking/i18n/pt_BR.po +++ b/addons/stock_no_autopicking/i18n/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/ro.po b/addons/stock_no_autopicking/i18n/ro.po index 216dfff6398..77c8f00a879 100644 --- a/addons/stock_no_autopicking/i18n/ro.po +++ b/addons/stock_no_autopicking/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/ru.po b/addons/stock_no_autopicking/i18n/ru.po index 3a675b832b1..419a56c2af1 100644 --- a/addons/stock_no_autopicking/i18n/ru.po +++ b/addons/stock_no_autopicking/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/sl.po b/addons/stock_no_autopicking/i18n/sl.po index 96f6bb104b0..82e4934836b 100644 --- a/addons/stock_no_autopicking/i18n/sl.po +++ b/addons/stock_no_autopicking/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/sq.po b/addons/stock_no_autopicking/i18n/sq.po index aa0d2f0c537..484c3993a70 100644 --- a/addons/stock_no_autopicking/i18n/sq.po +++ b/addons/stock_no_autopicking/i18n/sq.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/sr@latin.po b/addons/stock_no_autopicking/i18n/sr@latin.po index eabad61de01..c18da0e7421 100644 --- a/addons/stock_no_autopicking/i18n/sr@latin.po +++ b/addons/stock_no_autopicking/i18n/sr@latin.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/sv.po b/addons/stock_no_autopicking/i18n/sv.po index 56c41849d88..72c8f37afe6 100644 --- a/addons/stock_no_autopicking/i18n/sv.po +++ b/addons/stock_no_autopicking/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/tlh.po b/addons/stock_no_autopicking/i18n/tlh.po index 78bccfa270f..0d10c30c41c 100644 --- a/addons/stock_no_autopicking/i18n/tlh.po +++ b/addons/stock_no_autopicking/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/tr.po b/addons/stock_no_autopicking/i18n/tr.po index 12f239f4687..f279751a8c7 100644 --- a/addons/stock_no_autopicking/i18n/tr.po +++ b/addons/stock_no_autopicking/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/uk.po b/addons/stock_no_autopicking/i18n/uk.po index cdf5439856b..d07b0c239ce 100644 --- a/addons/stock_no_autopicking/i18n/uk.po +++ b/addons/stock_no_autopicking/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/vi.po b/addons/stock_no_autopicking/i18n/vi.po index 5a73f311751..16334facd40 100644 --- a/addons/stock_no_autopicking/i18n/vi.po +++ b/addons/stock_no_autopicking/i18n/vi.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-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/zh_CN.po b/addons/stock_no_autopicking/i18n/zh_CN.po index 094d8c972b1..6525d763d12 100644 --- a/addons/stock_no_autopicking/i18n/zh_CN.po +++ b/addons/stock_no_autopicking/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/stock_no_autopicking/i18n/zh_TW.po b/addons/stock_no_autopicking/i18n/zh_TW.po index 814afbc7eb6..976fcbf6f79 100644 --- a/addons/stock_no_autopicking/i18n/zh_TW.po +++ b/addons/stock_no_autopicking/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:33+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: stock_no_autopicking diff --git a/addons/subscription/i18n/ar.po b/addons/subscription/i18n/ar.po index 9f6d47630be..5cc412c0f6f 100644 --- a/addons/subscription/i18n/ar.po +++ b/addons/subscription/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/bg.po b/addons/subscription/i18n/bg.po index 1d2e6af53e9..4c6045c195d 100644 --- a/addons/subscription/i18n/bg.po +++ b/addons/subscription/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/bs.po b/addons/subscription/i18n/bs.po index 7a494d0cd1b..ea17d67e97d 100644 --- a/addons/subscription/i18n/bs.po +++ b/addons/subscription/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/ca.po b/addons/subscription/i18n/ca.po index 16f2dcf6a57..a5e772f6d53 100644 --- a/addons/subscription/i18n/ca.po +++ b/addons/subscription/i18n/ca.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/cs.po b/addons/subscription/i18n/cs.po index 7d935b1f0ee..3eeaac78a2a 100644 --- a/addons/subscription/i18n/cs.po +++ b/addons/subscription/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/da.po b/addons/subscription/i18n/da.po index 4b78e908851..d4ee8180c58 100644 --- a/addons/subscription/i18n/da.po +++ b/addons/subscription/i18n/da.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/de.po b/addons/subscription/i18n/de.po index 6fd59e57b5f..f908e695c51 100644 --- a/addons/subscription/i18n/de.po +++ b/addons/subscription/i18n/de.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/es.po b/addons/subscription/i18n/es.po index aac994c9d24..59099133ae3 100644 --- a/addons/subscription/i18n/es.po +++ b/addons/subscription/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/es_AR.po b/addons/subscription/i18n/es_AR.po index 75b82ddda1c..1ba2494b2d2 100644 --- a/addons/subscription/i18n/es_AR.po +++ b/addons/subscription/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/es_CR.po b/addons/subscription/i18n/es_CR.po index 6baec74bfea..0308bdc95be 100644 --- a/addons/subscription/i18n/es_CR.po +++ b/addons/subscription/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/subscription/i18n/et.po b/addons/subscription/i18n/et.po index b6001e71f39..77a20f8b0ca 100644 --- a/addons/subscription/i18n/et.po +++ b/addons/subscription/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/fi.po b/addons/subscription/i18n/fi.po index 34ffa125793..bc7f2d7de8f 100644 --- a/addons/subscription/i18n/fi.po +++ b/addons/subscription/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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/fr.po b/addons/subscription/i18n/fr.po index a90e5a5b651..fc53550db7c 100644 --- a/addons/subscription/i18n/fr.po +++ b/addons/subscription/i18n/fr.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/gl.po b/addons/subscription/i18n/gl.po index 2dee5b9afd9..3d23f317e94 100644 --- a/addons/subscription/i18n/gl.po +++ b/addons/subscription/i18n/gl.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/hr.po b/addons/subscription/i18n/hr.po index 0da07faa02e..eed050c52ec 100644 --- a/addons/subscription/i18n/hr.po +++ b/addons/subscription/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/hu.po b/addons/subscription/i18n/hu.po index 6ed653c6194..1bee8725787 100644 --- a/addons/subscription/i18n/hu.po +++ b/addons/subscription/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/id.po b/addons/subscription/i18n/id.po index 92da65f36ba..1cd4c405a6a 100644 --- a/addons/subscription/i18n/id.po +++ b/addons/subscription/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/it.po b/addons/subscription/i18n/it.po index 700ceeb4d59..210cb56bd52 100644 --- a/addons/subscription/i18n/it.po +++ b/addons/subscription/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/ja.po b/addons/subscription/i18n/ja.po index fce60fcf3c4..dd4b0af0fe5 100644 --- a/addons/subscription/i18n/ja.po +++ b/addons/subscription/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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/ko.po b/addons/subscription/i18n/ko.po index 7f90bfe533e..2455f7e2ff4 100644 --- a/addons/subscription/i18n/ko.po +++ b/addons/subscription/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/lt.po b/addons/subscription/i18n/lt.po index 4b51251849a..f67aceaa4c7 100644 --- a/addons/subscription/i18n/lt.po +++ b/addons/subscription/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/mk.po b/addons/subscription/i18n/mk.po index e9a61fb9689..b18b3a4284a 100644 --- a/addons/subscription/i18n/mk.po +++ b/addons/subscription/i18n/mk.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/nl.po b/addons/subscription/i18n/nl.po index ee9c3b2c141..9f30c13d37e 100644 --- a/addons/subscription/i18n/nl.po +++ b/addons/subscription/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/nl_BE.po b/addons/subscription/i18n/nl_BE.po index 8edeb272675..08e6233394a 100644 --- a/addons/subscription/i18n/nl_BE.po +++ b/addons/subscription/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/pl.po b/addons/subscription/i18n/pl.po index 7b07928ab07..81da62c4bec 100644 --- a/addons/subscription/i18n/pl.po +++ b/addons/subscription/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/pt.po b/addons/subscription/i18n/pt.po index d5514c11ff9..926d30365e9 100644 --- a/addons/subscription/i18n/pt.po +++ b/addons/subscription/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/pt_BR.po b/addons/subscription/i18n/pt_BR.po index 85685256938..1f6d3508a1d 100644 --- a/addons/subscription/i18n/pt_BR.po +++ b/addons/subscription/i18n/pt_BR.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/ro.po b/addons/subscription/i18n/ro.po index 7136594e090..5677071db10 100644 --- a/addons/subscription/i18n/ro.po +++ b/addons/subscription/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/ru.po b/addons/subscription/i18n/ru.po index ff84b14975b..ce0bcfac7ec 100644 --- a/addons/subscription/i18n/ru.po +++ b/addons/subscription/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/sl.po b/addons/subscription/i18n/sl.po index 61b8cfd4fb2..d7d6511c1ac 100644 --- a/addons/subscription/i18n/sl.po +++ b/addons/subscription/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/sq.po b/addons/subscription/i18n/sq.po index a0479c4b6c6..21c8805f664 100644 --- a/addons/subscription/i18n/sq.po +++ b/addons/subscription/i18n/sq.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/sv.po b/addons/subscription/i18n/sv.po index c3395cfceb7..e867d6d0942 100644 --- a/addons/subscription/i18n/sv.po +++ b/addons/subscription/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/tlh.po b/addons/subscription/i18n/tlh.po index 8d93918e962..17449376f99 100644 --- a/addons/subscription/i18n/tlh.po +++ b/addons/subscription/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/tr.po b/addons/subscription/i18n/tr.po index 7b440aa3381..dc840f22de7 100644 --- a/addons/subscription/i18n/tr.po +++ b/addons/subscription/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/uk.po b/addons/subscription/i18n/uk.po index e883cda2d6c..61ec136b0ee 100644 --- a/addons/subscription/i18n/uk.po +++ b/addons/subscription/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/vi.po b/addons/subscription/i18n/vi.po index f4f26f6c7a7..c12f82f957b 100644 --- a/addons/subscription/i18n/vi.po +++ b/addons/subscription/i18n/vi.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-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/zh_CN.po b/addons/subscription/i18n/zh_CN.po index d0c9930de7f..f2e666e3aca 100644 --- a/addons/subscription/i18n/zh_CN.po +++ b/addons/subscription/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/subscription/i18n/zh_TW.po b/addons/subscription/i18n/zh_TW.po index d7d9cd6c665..7c07e7e8d2c 100644 --- a/addons/subscription/i18n/zh_TW.po +++ b/addons/subscription/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:00+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: subscription diff --git a/addons/survey/i18n/ar.po b/addons/survey/i18n/ar.po index 5b51f8f2826..6c2b4fa0cee 100644 --- a/addons/survey/i18n/ar.po +++ b/addons/survey/i18n/ar.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/bg.po b/addons/survey/i18n/bg.po index fde58474d51..be5eb4040e4 100644 --- a/addons/survey/i18n/bg.po +++ b/addons/survey/i18n/bg.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/ca.po b/addons/survey/i18n/ca.po index ef2cd35a986..97987490777 100644 --- a/addons/survey/i18n/ca.po +++ b/addons/survey/i18n/ca.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/cs.po b/addons/survey/i18n/cs.po index 92f2f73d76b..58a80d5afe6 100644 --- a/addons/survey/i18n/cs.po +++ b/addons/survey/i18n/cs.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/da.po b/addons/survey/i18n/da.po index c19acc865f8..5df495276e8 100644 --- a/addons/survey/i18n/da.po +++ b/addons/survey/i18n/da.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/de.po b/addons/survey/i18n/de.po index 91aa6991b3d..c4ec2134f4e 100644 --- a/addons/survey/i18n/de.po +++ b/addons/survey/i18n/de.po @@ -15,7 +15,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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/es.po b/addons/survey/i18n/es.po index e352479bd7b..8509e664e66 100644 --- a/addons/survey/i18n/es.po +++ b/addons/survey/i18n/es.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/es_CR.po b/addons/survey/i18n/es_CR.po index c61b6cc046e..dab5ff92012 100644 --- a/addons/survey/i18n/es_CR.po +++ b/addons/survey/i18n/es_CR.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: es\n" diff --git a/addons/survey/i18n/et.po b/addons/survey/i18n/et.po index 63c8e7061af..3024e00c6c6 100644 --- a/addons/survey/i18n/et.po +++ b/addons/survey/i18n/et.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/fi.po b/addons/survey/i18n/fi.po index f9be5c83b8b..eb7faf7ad73 100644 --- a/addons/survey/i18n/fi.po +++ b/addons/survey/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/fr.po b/addons/survey/i18n/fr.po index c7b6c6058c9..17939115b82 100644 --- a/addons/survey/i18n/fr.po +++ b/addons/survey/i18n/fr.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-04 10:56+0000\n" -"Last-Translator: WANTELLET Sylvain \n" +"PO-Revision-Date: 2013-03-15 07:51+0000\n" +"Last-Translator: Quentin THEURET \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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey @@ -601,7 +601,7 @@ msgstr "" #. module: survey #: model:ir.ui.menu,name:survey.menu_reporting msgid "Reporting" -msgstr "" +msgstr "Rapports" #. module: survey #: model:ir.actions.act_window,name:survey.act_survey_answer diff --git a/addons/survey/i18n/gl.po b/addons/survey/i18n/gl.po index e91e2151d9f..b8045672f9a 100644 --- a/addons/survey/i18n/gl.po +++ b/addons/survey/i18n/gl.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/hr.po b/addons/survey/i18n/hr.po index d872d23dfdc..ca9b6c49014 100644 --- a/addons/survey/i18n/hr.po +++ b/addons/survey/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/survey/i18n/hu.po b/addons/survey/i18n/hu.po index 3b4386ffc91..03cf5a968e6 100644 --- a/addons/survey/i18n/hu.po +++ b/addons/survey/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/it.po b/addons/survey/i18n/it.po index c2d94c8026b..6b90ddfd0bf 100644 --- a/addons/survey/i18n/it.po +++ b/addons/survey/i18n/it.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/ja.po b/addons/survey/i18n/ja.po index 0e642366c40..20a2b66ccc8 100644 --- a/addons/survey/i18n/ja.po +++ b/addons/survey/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/mk.po b/addons/survey/i18n/mk.po index 429c4880a4c..03a2998b192 100644 --- a/addons/survey/i18n/mk.po +++ b/addons/survey/i18n/mk.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/mn.po b/addons/survey/i18n/mn.po index 21a5fc56dcc..a5c2f027cad 100644 --- a/addons/survey/i18n/mn.po +++ b/addons/survey/i18n/mn.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/nl.po b/addons/survey/i18n/nl.po index 4b3b71c89dc..7517d05fc87 100644 --- a/addons/survey/i18n/nl.po +++ b/addons/survey/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/pl.po b/addons/survey/i18n/pl.po index f0bc8330536..9183c300678 100644 --- a/addons/survey/i18n/pl.po +++ b/addons/survey/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/pt.po b/addons/survey/i18n/pt.po index e7e52d87482..3217dfb0143 100644 --- a/addons/survey/i18n/pt.po +++ b/addons/survey/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/pt_BR.po b/addons/survey/i18n/pt_BR.po index a0cb6457310..678f46a9b95 100644 --- a/addons/survey/i18n/pt_BR.po +++ b/addons/survey/i18n/pt_BR.po @@ -15,7 +15,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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/ro.po b/addons/survey/i18n/ro.po index df46d7799a9..51079c80b0e 100644 --- a/addons/survey/i18n/ro.po +++ b/addons/survey/i18n/ro.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/ru.po b/addons/survey/i18n/ru.po index 172c1e49b60..3af9a14f39b 100644 --- a/addons/survey/i18n/ru.po +++ b/addons/survey/i18n/ru.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/sl.po b/addons/survey/i18n/sl.po index 1e9bb6c0cd2..d6d86ec9440 100644 --- a/addons/survey/i18n/sl.po +++ b/addons/survey/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/sr.po b/addons/survey/i18n/sr.po index f8f2dbab5f9..ea68b6e9c13 100644 --- a/addons/survey/i18n/sr.po +++ b/addons/survey/i18n/sr.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/sr@latin.po b/addons/survey/i18n/sr@latin.po index bfaa05e09ac..bc13a08c27d 100644 --- a/addons/survey/i18n/sr@latin.po +++ b/addons/survey/i18n/sr@latin.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/sv.po b/addons/survey/i18n/sv.po index 7625a940554..c78dfe72348 100644 --- a/addons/survey/i18n/sv.po +++ b/addons/survey/i18n/sv.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/tr.po b/addons/survey/i18n/tr.po index 416d7a2377e..c917a0135ae 100644 --- a/addons/survey/i18n/tr.po +++ b/addons/survey/i18n/tr.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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/survey/i18n/zh_CN.po b/addons/survey/i18n/zh_CN.po index 0b309f811c5..008c3ca8187 100644 --- a/addons/survey/i18n/zh_CN.po +++ b/addons/survey/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-03-15 05:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:37+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: survey diff --git a/addons/warning/i18n/ar.po b/addons/warning/i18n/ar.po index 146b01d16b5..6b1ab168a1d 100644 --- a/addons/warning/i18n/ar.po +++ b/addons/warning/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/bg.po b/addons/warning/i18n/bg.po index 0a82bfae9d1..fba5beaef33 100644 --- a/addons/warning/i18n/bg.po +++ b/addons/warning/i18n/bg.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/bs.po b/addons/warning/i18n/bs.po index d20b67f4182..f10d8541159 100644 --- a/addons/warning/i18n/bs.po +++ b/addons/warning/i18n/bs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/ca.po b/addons/warning/i18n/ca.po index 90586f1a3d0..056bb00e1dc 100644 --- a/addons/warning/i18n/ca.po +++ b/addons/warning/i18n/ca.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/cs.po b/addons/warning/i18n/cs.po index 1bc7bdd6c96..de171f5074a 100644 --- a/addons/warning/i18n/cs.po +++ b/addons/warning/i18n/cs.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/da.po b/addons/warning/i18n/da.po index 88226f94ba2..978aa7ccda7 100644 --- a/addons/warning/i18n/da.po +++ b/addons/warning/i18n/da.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/de.po b/addons/warning/i18n/de.po index 2a3922f1898..4c0df2a3b26 100644 --- a/addons/warning/i18n/de.po +++ b/addons/warning/i18n/de.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/el.po b/addons/warning/i18n/el.po index 98c25b7c0ef..4ca6192d153 100644 --- a/addons/warning/i18n/el.po +++ b/addons/warning/i18n/el.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/es.po b/addons/warning/i18n/es.po index f7aea1bcfa8..cd20245a931 100644 --- a/addons/warning/i18n/es.po +++ b/addons/warning/i18n/es.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/es_AR.po b/addons/warning/i18n/es_AR.po index a846860ad19..eb17f184d69 100644 --- a/addons/warning/i18n/es_AR.po +++ b/addons/warning/i18n/es_AR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/es_CR.po b/addons/warning/i18n/es_CR.po index 6987cef3e27..f8e95a5f776 100644 --- a/addons/warning/i18n/es_CR.po +++ b/addons/warning/i18n/es_CR.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: \n" diff --git a/addons/warning/i18n/et.po b/addons/warning/i18n/et.po index 320f489c483..96a4f39016b 100644 --- a/addons/warning/i18n/et.po +++ b/addons/warning/i18n/et.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/fi.po b/addons/warning/i18n/fi.po index 621d6877e67..16a302fe4e0 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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/fr.po b/addons/warning/i18n/fr.po index 83cffdcac7e..64a42c58c33 100644 --- a/addons/warning/i18n/fr.po +++ b/addons/warning/i18n/fr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/gl.po b/addons/warning/i18n/gl.po index 00297d2f870..7b8cde688ce 100644 --- a/addons/warning/i18n/gl.po +++ b/addons/warning/i18n/gl.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/hr.po b/addons/warning/i18n/hr.po index 26ea6068e46..341489d2fb4 100644 --- a/addons/warning/i18n/hr.po +++ b/addons/warning/i18n/hr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" "Language: hr\n" diff --git a/addons/warning/i18n/hu.po b/addons/warning/i18n/hu.po index 17187e0163f..c841ae984ed 100644 --- a/addons/warning/i18n/hu.po +++ b/addons/warning/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/id.po b/addons/warning/i18n/id.po index dc70f4282f9..6a5d5ec37cc 100644 --- a/addons/warning/i18n/id.po +++ b/addons/warning/i18n/id.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/it.po b/addons/warning/i18n/it.po index dbdd32b7f88..0f040b07bb9 100644 --- a/addons/warning/i18n/it.po +++ b/addons/warning/i18n/it.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/ja.po b/addons/warning/i18n/ja.po index 9652636ab21..610b4a201f7 100644 --- a/addons/warning/i18n/ja.po +++ b/addons/warning/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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/ko.po b/addons/warning/i18n/ko.po index aefe5ad4432..76e38a82811 100644 --- a/addons/warning/i18n/ko.po +++ b/addons/warning/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/lt.po b/addons/warning/i18n/lt.po index 51a65887afb..70cc0306a3a 100644 --- a/addons/warning/i18n/lt.po +++ b/addons/warning/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/mk.po b/addons/warning/i18n/mk.po index 35a934bb7f1..d0cbb7d32c7 100644 --- a/addons/warning/i18n/mk.po +++ b/addons/warning/i18n/mk.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/mn.po b/addons/warning/i18n/mn.po index 5792a4a8227..9766b74f993 100644 --- a/addons/warning/i18n/mn.po +++ b/addons/warning/i18n/mn.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/nb.po b/addons/warning/i18n/nb.po index 37174e8cb34..388ac97ab23 100644 --- a/addons/warning/i18n/nb.po +++ b/addons/warning/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/nl.po b/addons/warning/i18n/nl.po index fdf45d6f289..7e5c611f1ee 100644 --- a/addons/warning/i18n/nl.po +++ b/addons/warning/i18n/nl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/nl_BE.po b/addons/warning/i18n/nl_BE.po index 0eb69d4d23a..2498851a128 100644 --- a/addons/warning/i18n/nl_BE.po +++ b/addons/warning/i18n/nl_BE.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/pl.po b/addons/warning/i18n/pl.po index 95d16f87e22..f652736cd96 100644 --- a/addons/warning/i18n/pl.po +++ b/addons/warning/i18n/pl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/pt.po b/addons/warning/i18n/pt.po index 4449a145761..d2c69d280f8 100644 --- a/addons/warning/i18n/pt.po +++ b/addons/warning/i18n/pt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/pt_BR.po b/addons/warning/i18n/pt_BR.po index bdb31ec7675..e32300587c0 100644 --- a/addons/warning/i18n/pt_BR.po +++ b/addons/warning/i18n/pt_BR.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/ro.po b/addons/warning/i18n/ro.po index a383f16debf..363925ba142 100644 --- a/addons/warning/i18n/ro.po +++ b/addons/warning/i18n/ro.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/ru.po b/addons/warning/i18n/ru.po index 45d71ae0144..7bb504d6c55 100644 --- a/addons/warning/i18n/ru.po +++ b/addons/warning/i18n/ru.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/sl.po b/addons/warning/i18n/sl.po index 6c62799ca61..050f5087f55 100644 --- a/addons/warning/i18n/sl.po +++ b/addons/warning/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/sq.po b/addons/warning/i18n/sq.po index 7fb62ef9483..eeec86a7751 100644 --- a/addons/warning/i18n/sq.po +++ b/addons/warning/i18n/sq.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/sr.po b/addons/warning/i18n/sr.po index 0ba0f30f05c..8cfb58c0114 100644 --- a/addons/warning/i18n/sr.po +++ b/addons/warning/i18n/sr.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/sr@latin.po b/addons/warning/i18n/sr@latin.po index 65814e075d4..ec67aca9f41 100644 --- a/addons/warning/i18n/sr@latin.po +++ b/addons/warning/i18n/sr@latin.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/sv.po b/addons/warning/i18n/sv.po index e4bcc70057b..f4f4d2d3de3 100644 --- a/addons/warning/i18n/sv.po +++ b/addons/warning/i18n/sv.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/tlh.po b/addons/warning/i18n/tlh.po index 3b6040e251a..fc4570ab2c9 100644 --- a/addons/warning/i18n/tlh.po +++ b/addons/warning/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/tr.po b/addons/warning/i18n/tr.po index 0f631405f01..22573bb4956 100644 --- a/addons/warning/i18n/tr.po +++ b/addons/warning/i18n/tr.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/uk.po b/addons/warning/i18n/uk.po index 580485e489f..35861218a4c 100644 --- a/addons/warning/i18n/uk.po +++ b/addons/warning/i18n/uk.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/vi.po b/addons/warning/i18n/vi.po index 9bde94142a3..3eca144e5a9 100644 --- a/addons/warning/i18n/vi.po +++ b/addons/warning/i18n/vi.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-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/zh_CN.po b/addons/warning/i18n/zh_CN.po index 2b99488ec9a..0c244b9c873 100644 --- a/addons/warning/i18n/zh_CN.po +++ b/addons/warning/i18n/zh_CN.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/warning/i18n/zh_TW.po b/addons/warning/i18n/zh_TW.po index 0d3b4405b84..749f44538e1 100644 --- a/addons/warning/i18n/zh_TW.po +++ b/addons/warning/i18n/zh_TW.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 05:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:35+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: warning diff --git a/addons/web_linkedin/i18n/de.po b/addons/web_linkedin/i18n/de.po index a24e8f67f06..b9a792aab09 100644 --- a/addons/web_linkedin/i18n/de.po +++ b/addons/web_linkedin/i18n/de.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/es.po b/addons/web_linkedin/i18n/es.po index 2de167a916f..eb000bf5131 100644 --- a/addons/web_linkedin/i18n/es.po +++ b/addons/web_linkedin/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/fr.po b/addons/web_linkedin/i18n/fr.po index 17f52e3d2bd..242a24c2dcf 100644 --- a/addons/web_linkedin/i18n/fr.po +++ b/addons/web_linkedin/i18n/fr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/hr.po b/addons/web_linkedin/i18n/hr.po index 6905739b298..25c3c321278 100644 --- a/addons/web_linkedin/i18n/hr.po +++ b/addons/web_linkedin/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/hu.po b/addons/web_linkedin/i18n/hu.po index d4bedb7dbdf..8a28009dcd5 100644 --- a/addons/web_linkedin/i18n/hu.po +++ b/addons/web_linkedin/i18n/hu.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/it.po b/addons/web_linkedin/i18n/it.po index a8771c3d440..971c9169647 100644 --- a/addons/web_linkedin/i18n/it.po +++ b/addons/web_linkedin/i18n/it.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/mk.po b/addons/web_linkedin/i18n/mk.po index dc9a80b10b1..0ee793ff4cc 100644 --- a/addons/web_linkedin/i18n/mk.po +++ b/addons/web_linkedin/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/mn.po b/addons/web_linkedin/i18n/mn.po index 6dc695e5784..67e3e63bf02 100644 --- a/addons/web_linkedin/i18n/mn.po +++ b/addons/web_linkedin/i18n/mn.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/nl.po b/addons/web_linkedin/i18n/nl.po index 0626ef20b7a..b15525f96cd 100644 --- a/addons/web_linkedin/i18n/nl.po +++ b/addons/web_linkedin/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/pl.po b/addons/web_linkedin/i18n/pl.po index 7d042ad019f..0f57c750942 100644 --- a/addons/web_linkedin/i18n/pl.po +++ b/addons/web_linkedin/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/pt.po b/addons/web_linkedin/i18n/pt.po index c0e76c952ec..afdb834fbc1 100644 --- a/addons/web_linkedin/i18n/pt.po +++ b/addons/web_linkedin/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/pt_BR.po b/addons/web_linkedin/i18n/pt_BR.po index 2f9d9cab5f8..f15c5ca2673 100644 --- a/addons/web_linkedin/i18n/pt_BR.po +++ b/addons/web_linkedin/i18n/pt_BR.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/ro.po b/addons/web_linkedin/i18n/ro.po index f444d88ea0e..b34f30fa099 100644 --- a/addons/web_linkedin/i18n/ro.po +++ b/addons/web_linkedin/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/sl.po b/addons/web_linkedin/i18n/sl.po index d236fdc391e..572b0efb544 100644 --- a/addons/web_linkedin/i18n/sl.po +++ b/addons/web_linkedin/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/tr.po b/addons/web_linkedin/i18n/tr.po index a96158ef45b..0ad199833f5 100644 --- a/addons/web_linkedin/i18n/tr.po +++ b/addons/web_linkedin/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_linkedin/i18n/zh_CN.po b/addons/web_linkedin/i18n/zh_CN.po index 092fde1071f..9eb5481c0d9 100644 --- a/addons/web_linkedin/i18n/zh_CN.po +++ b/addons/web_linkedin/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_linkedin diff --git a/addons/web_shortcuts/i18n/cs.po b/addons/web_shortcuts/i18n/cs.po index b6b1b77e3a7..82202a10ac0 100644 --- a/addons/web_shortcuts/i18n/cs.po +++ b/addons/web_shortcuts/i18n/cs.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/de.po b/addons/web_shortcuts/i18n/de.po index 649a78c0dc6..754fcd61f59 100644 --- a/addons/web_shortcuts/i18n/de.po +++ b/addons/web_shortcuts/i18n/de.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/es.po b/addons/web_shortcuts/i18n/es.po index f44b28e0c5d..c4b34e9dbca 100644 --- a/addons/web_shortcuts/i18n/es.po +++ b/addons/web_shortcuts/i18n/es.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/fr.po b/addons/web_shortcuts/i18n/fr.po index 9485e6bc0f0..0386d87f641 100644 --- a/addons/web_shortcuts/i18n/fr.po +++ b/addons/web_shortcuts/i18n/fr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/hr.po b/addons/web_shortcuts/i18n/hr.po index e2a0a4bfb0b..b770389267d 100644 --- a/addons/web_shortcuts/i18n/hr.po +++ b/addons/web_shortcuts/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/hu.po b/addons/web_shortcuts/i18n/hu.po index e99ce588b04..67f51590bce 100644 --- a/addons/web_shortcuts/i18n/hu.po +++ b/addons/web_shortcuts/i18n/hu.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/it.po b/addons/web_shortcuts/i18n/it.po index fca4e8456b3..80b0b27aa06 100644 --- a/addons/web_shortcuts/i18n/it.po +++ b/addons/web_shortcuts/i18n/it.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/mk.po b/addons/web_shortcuts/i18n/mk.po index 238d41f66f2..4d90f505fc9 100644 --- a/addons/web_shortcuts/i18n/mk.po +++ b/addons/web_shortcuts/i18n/mk.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/mn.po b/addons/web_shortcuts/i18n/mn.po index 47de7bb9517..547920b2b37 100644 --- a/addons/web_shortcuts/i18n/mn.po +++ b/addons/web_shortcuts/i18n/mn.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/nl.po b/addons/web_shortcuts/i18n/nl.po index 63846dd9cb0..23a98dc4214 100644 --- a/addons/web_shortcuts/i18n/nl.po +++ b/addons/web_shortcuts/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/pl.po b/addons/web_shortcuts/i18n/pl.po index 6a06cb0184e..b580f78b179 100644 --- a/addons/web_shortcuts/i18n/pl.po +++ b/addons/web_shortcuts/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/pt.po b/addons/web_shortcuts/i18n/pt.po index 911f0acb33b..03899799821 100644 --- a/addons/web_shortcuts/i18n/pt.po +++ b/addons/web_shortcuts/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/pt_BR.po b/addons/web_shortcuts/i18n/pt_BR.po index 17f7dbd2743..f2eb867f5ef 100644 --- a/addons/web_shortcuts/i18n/pt_BR.po +++ b/addons/web_shortcuts/i18n/pt_BR.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/ro.po b/addons/web_shortcuts/i18n/ro.po index 31cc42eb913..f8f39ecbb5b 100644 --- a/addons/web_shortcuts/i18n/ro.po +++ b/addons/web_shortcuts/i18n/ro.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/ru.po b/addons/web_shortcuts/i18n/ru.po index 5dfcd9c54ff..7e88c800419 100644 --- a/addons/web_shortcuts/i18n/ru.po +++ b/addons/web_shortcuts/i18n/ru.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/sl.po b/addons/web_shortcuts/i18n/sl.po index f5faa4c4b3d..61053271490 100644 --- a/addons/web_shortcuts/i18n/sl.po +++ b/addons/web_shortcuts/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/sv.po b/addons/web_shortcuts/i18n/sv.po index 3fdb4671aa7..c8e90534353 100644 --- a/addons/web_shortcuts/i18n/sv.po +++ b/addons/web_shortcuts/i18n/sv.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/tr.po b/addons/web_shortcuts/i18n/tr.po index 96c99eb8a14..5febf7a1bc6 100644 --- a/addons/web_shortcuts/i18n/tr.po +++ b/addons/web_shortcuts/i18n/tr.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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/zh_CN.po b/addons/web_shortcuts/i18n/zh_CN.po index 23396783eb1..de1bef90235 100644 --- a/addons/web_shortcuts/i18n/zh_CN.po +++ b/addons/web_shortcuts/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts diff --git a/addons/web_shortcuts/i18n/zh_TW.po b/addons/web_shortcuts/i18n/zh_TW.po index 79891711e5e..99680924f8e 100644 --- a/addons/web_shortcuts/i18n/zh_TW.po +++ b/addons/web_shortcuts/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-03-15 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" "X-Generator: Launchpad (build 16532)\n" #. module: web_shortcuts